@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face{font-family:"Auro Bold";src:url("../fonts/Auro-Bold.woff2");font-weight:700;}
@font-face{font-family:"Futura Medium";src:url("../fonts/Futura-Medium.woff2");font-weight:500;}
/*@font-face{font-family:"Ubuntu Regular";src:url("../fonts/Ubuntu-Regular.woff2");}
@font-face{font-family:"Ubuntu Medium";src:url("../fonts/Ubuntu-Medium.woff2");}
@font-face{font-family:"Ubuntu Bold";src:url("../fonts/Ubuntu-Bold.woff2");}
@font-face{font-family:"Raleway Regular";src:url("../fonts/Raleway-Regular.woff2");}
@font-face{font-family:"Raleway Medium";src:url("../fonts/Raleway-Medium.woff2");}
@font-face{font-family:"Raleway Bold";src:url("../fonts/Raleway-Bold.woff2");}*/
html,body{margin:0;padding:0;}
p,a,li,td,tr,span,div,label,*::placeholder,input{font-family:"Futura Medium";font-size:16px;}
h1,h2,h3,h4,h5,h6{font-family:"Raleway";margin:0;padding:0;line-height:1;}
.sweet-alert h2{padding-top:20px;}
body.overlayed{position:relative;}
body.overlayed:before{
    position:fixed;
    display:block;
    height:100vh;
    width:100vw;
    z-index:2;
    left:0;
    top:0;
    right:0;
    bottom:0;
    background-color:rgba(0,0,0,0.3);
    content:'';
}
.box{
    position:fixed;
    width:700px;
    max-width:calc(100% - 50px);
    min-height:100px;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    padding:25px;
    border-radius:10px;
    box-shadow:2px 2px 5px rgba(0,0,0,0.3);
    z-index:5;
    background-color:#fff;
    >.closebox{
        font-size:12px;
        text-decoration:none;
        position:absolute;
        top:10px;
        right:10px;
        color:#333;
    }
    >.box-container{
        >h4{
            position:relative;
            padding:12px 0;
            margin-bottom:12px;
            font-weight:500;
            text-transform:uppercase;
        }
        >h4:after{
            content:'';
            width:100%;
            position:absolute;
            height:1px;
            background-color:#31943D;
            bottom:0;
            left:0;
            right:0;
            display:block;
        }
    }
}
.box.hidden{
    display:none;
}