@import url("./font/akrobat.css");

@font-face {
    font-family: Icon Font;
    src: url(./Icon_Font.ttf);
}

@font-face {
    font-family: Font Awesome;
    src: url(./fontawesome_webfont.woff2);
}

@font-face {
    font-family: Icon Font2;
    src: url(./font_icon3.woff2);
}

@font-face {
    font-family: Icon Font3;
    src: url(./font_icon2.woff2);
}

/**{
    outline: 1px solid red;
}*/

body{
    margin: 0px;
    font-family: Akrobat;
    background-color: #F8F8F8;
    line-height: 1.5;
}

.clear{
    clear: both;
}

a{
    text-decoration:none;
    color:#000;
}

input,textarea:focus{
    outline:none;
}

input[type='file']{
    display: none;
}

.no-select{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.button{
    display: inline-block;
    
    text-transform: uppercase;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-select: none;
    
    box-sizing: border-box;
    padding: 11px 42px;
/*    padding: 16px 32px;*/
    font-size: 20px;
    font-weight: 600;
    transition: background-color 0.3s;
    color: #000;
    border:2px solid #0B52A0;
    
    border-radius: 5px;
}

    .button:hover{
        background-color: #FF9B26;
/*        border:2px solid #FF9B26;*/
        color: #fff;
    }

.no-scroll{
    overflow: hidden;
    position: fixed;
    width: 100vw;
    max-height: 100vh;
    background-color: rgba(0,0,0,0.6);
}
        
        
::-webkit-scrollbar{ /* 1 */ 
    width: 6px;
    height: 6px;
    background:rgba(255,255,255,0.0);
}
::-webkit-scrollbar-button{  /* 2 */
    height: 0px;
}
::-webkit-scrollbar-track{  /* 3 */  
}
::-webkit-scrollbar-track-piece{  /* 4 */   
}
::-webkit-scrollbar-thumb{  /* 5 */ 
/*    background-color: rgb(35,35,35);*/
/*    border-radius:4px;*/
    background-color: rgb(0, 0, 0);
    
}
::-webkit-scrollbar-corner{  /* 6 */
    background-color: rgba(0,0,0,0);
}
::-webkit-resizer{  /* 7 */  
}

@media only screen and (max-width: 1920px){
    .button{
        padding: 9px 35px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 768px){

    
}