:root{
    --leadLogoColor: #a2c400;
}
@font-face {
    font-family: "Poppins";
    src: url('../fonts/PoppinsRegular.ttf');
}
@font-face {
    font-family: "PoppinsLight";
    src: url('../fonts/PoppinsLight.ttf');
}
@font-face {
    font-family: "PoppinsMedium";
    src: url('../fonts/PoppinsMedium.ttf');
}

body{
    margin: 0;
    scroll-behavior: smooth;
}

*{
    box-sizing: border-box;
}


.fw{
    /* full width */
    width: 100%;   
}
.fwwc,
.fwwc *{
    /* full width */
    width: 100%;   
}
.ffw{
    /* forced full width */
    width: 100%!important;   
}
.mcw span{
    width: max-content!important;
}

.normalizedInput,
.normalizedInputSlim,
.normalizedInput{
    background: #FFFFFF 0% 0% no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
    .normalizedInputSlim{
        padding: 16px 23px;
    }
    .normalizedInput{
        padding: 19px 22px;
    }
.normalizedBlackInput{
    color: #fff;
    background: #000;
    border-radius: 5px;
    font-size: 15px;
    border: 0;
    font-family: 'PoppinsMedium';
    cursor: pointer;
}

.full-width{
    width: 100%;
}
.text-center{
    text-align: center;
}
.end-padding{
    padding-bottom: 40px;
}
.bold{
    font-weight: bold;
}
.medium{
    font-family: 'PoppinsMedium';
    font-weight: 600;
}

.hidden{
    display: none;
}

#alertList{
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: min-content;
    display: none;
    max-width: 440px;
    z-index: 999999;
}
    .alert{
        
        background: #FFFFFF 0% 0% no-repeat padding-box;
        border: 1px solid #00000033;
        border-radius: 5px;
        padding: 20px 60px;
        opacity: 1;
        box-sizing: border-box;
        width: max-content;
        max-width: 440px;
        font-family: "PoppinsMedium";
    }
    .greenAlert{
        background-image: url("../../admin/views/img/check.svg");
        background-repeat: no-repeat;
        background-size: 20px 20px;
        background-position: center left 25px;
        padding-left: 60px;
        border: 1px solid #66CE62!important;
    }
    .redAlert{
        background-image: url("../../admin/views/img/cross.svg");
        background-repeat: no-repeat;
        background-size: 15px 15px;
        background-position: center left 25px;
        padding-left: 60px;
        border: 1px solid #FF5252!important;
    }
    .yellowAlert{
        background-image: url("../../admin/views/img/cross.svg");
        background-repeat: no-repeat;
        background-size: 15px 15px;
        background-position: center left 25px;
        padding-left: 60px;
        border: 1px solid #FF5252!important;
    }

.table tr{
    transition: 0.3s;
}
.table tr:hover{
    background: rgba(204, 204, 204, 0.2);
}

.table th{
    font-family: 'PoppinsMedium'!important;
    font-weight: 500;
}
.showMobileTc{
    display: none;
}

@media only screen and (max-width: 600px) {
    /* Mobile version */
    .hideMobile{
        display: none!important;
    }
    .showMobileTc{
        display: table-cell;
    }
    .topbar .image{
        margin-left: 30px!important;
        margin-right: 30px!important;
    }
    #printFormButton{
        display: block!important;
    }
    .d-flex{
        display: inherit!important;
        margin-left: auto;
        margin-right: auto;
    }
    .title_img{
        display: none!important;
    }
    h1.navbar img,
    h1.navbar input{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .right{
        margin-left: 0px!important;
    }
    .formRow{
        float: none!important;
    }
    .attachmentCard{
        transform: translate(22px);
    }
}
.title_img{
    margin-left: 20px;
}