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

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

body{
    margin: 0px;
    font-family: Montserrat;
}

.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 !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.button{
    display: inline-block;
    cursor: pointer;
    -moz-user-select: none !important;
    -webkit-user-select: none !important;
    box-sizing: border-box;
    padding: 15px 25px;
    font-size: 16px;
    transition: background-color 0.3s;
    color: #fff;
    border-radius: 50px;
    background-color: rgb(13,123,201);
    border: 2px solid rgb(13,123,201);
    font-weight: bold;
}

    .button:hover{
        background-color: rgba(245,245,245,0.1);
        color: rgb(13,123,201);
    }

.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: 768px){

    
}