/* Fonts */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&family=Ubuntu:wght@300;700&display=swap");

/* Document settings */

*{
    
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}

/* Body settings */

body{

    line-height: 2;
    font-family: "Ubuntu", sans-serif;

}

.bg-squared-metal{
    
    background: url("../img/squared-metal.png");
    background-repeat: repeat;
    
}

.tooltip-hover{
    
    cursor: pointer;
    
}

/* Title settings */

h1,
h2,
h3{
    
    font-family: "Roboto", sans-serif !important;
    font-weight: 900;
    
}

/* Form and Input settings */

textarea{
    
    resize: none;
    
}

label:hover{
    
    cursor: pointer;
    
}

/* Loader */

#loader{
    
    z-index: 99999;
    
}

/* Resset links */

.link-eye{

    cursor: pointer;
    
}

/* Accordion */

.uk-accordion-title{
    
    font-size: 16px !important;
    
}

/* Additional media queries */

@media screen and (max-width:640px){
    
    .remove-top-sm{
        
        padding-top: 0 !important;
        
    }
    
    .remove-left-sm{
        
        padding-left: 0 !important;
        
    }
    
}

/* Logo and images - Homepage */

.logo-homepage{
    
    height: 150px;
    width: 150px;
    
}

@media screen and (min-width:640px){
    
    .logo-homepage{

        height: 200px;
        width: 200px;

    }
    
}

/* No display */

.uk-display-none{
    
    display: none;
    
}