/* @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/*====================== common start ==========================*/
h1,h2,h3,h4,h5,h6,p{
    padding: 0;
    margin: 0;
}
ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

:root{
    --theme-purple: #025b99;

}
button{
    outline: none !important;
}
*{
    /* font-family: 'Barlow Condensed', sans-serif; */
    font-family: 'Roboto', sans-serif;
}
input,textarea:focus{
    box-shadow: none !important;
    border: 1px solid #E6E7E9 !important;
}
/* html{
    margin: 0;
    padding: 0;
} */

a:hover{
    text-decoration: none !important;
}

/*====================== common end ============================*/
.font-36{
    font-size: 26px !important;
}
.font-18{
    font-size: 18px;
}
.font-thin{
    font-weight: 100;
}
.font-light{
    font-weight: 300;
}
.font-regular{
    font-weight: 400;
}
.font-medium{
    font-weight: 500 !important;
}
.font-semibold{
    font-weight: 600;
}
.font-bold{
    font-weight: 700;
}
.font-extrabold{
    font-weight: 800;
}
.font-black{
    font-weight: 900;
}
/*====================== Login page start =====================*/
.login-page{
    padding: 0px 70px;
    min-height: 100vh;
    /*background-image: url(../img/bg.png);*/
    background-size: cover;
    color: #fff;
    /* background-color:#025b99; */
    background-color:#181a1c;
}
.login-left-side{
    padding: 63px 105px 93px 105px;
    background-image: url(../img/login-left-side-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 34px;
}
.login-page h1{
    margin-bottom: 7px;
    color: var(--theme-purple);
}
.login_vctr{
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}
.login-left-side p{
    color: #292930;
    margin-bottom: 110px;
}
.login-right-side{
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-right-side input{
    background-color: #FCFCFC;
    border: 1px solid #D6D8E7;
    font-size: 14px;
    height: 50px;
}
.login-right-side input:focus{
    box-shadow: none;
    border: 1px solid #D6D8E7;
}
.logo-box{
    margin-bottom: 45px;
}
.common-btn button{
    background-color: var(--theme-purple);
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
}
.login-right-side .form-group-container .form-group:last-child{
    margin-bottom: 26px;
}
/*====================== Login page end =====================*/

/*====================== sidebar start ======================*/
.ddash-board{
    overflow: hidden;
}
.dash-board-logo{
    margin-bottom:30%;
}
.side-bar{
    /* background-color: var(--theme-purple); */
    background-color: #181a1c;
    padding: 30px 23px 80px 23px;
    height: 100vh;
    overflow: auto;
    position: fixed;
    width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}
/* .side-bar .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: #fff;
    color: var(--theme-purple);
    font-size: 14px;
    font-weight: 600;
}
.side-bar .nav-pills .nav-link.active svg{
    stroke: var(--theme-purple);
}
.side-bar a span{
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.side-bar a.nav-link{
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding: 10px 22px;
    margin-bottom: 15px;
}
.side-bar svg{
    stroke: #fff;
} */
.side-bar ul li a{
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    align-items: center;
    padding: 10px 22px;
}
.side-bar ul li i{
    font-size: 15px;
}

.side-bar ul li.active{
    background-color:#e47c38;
    color: var(--theme-purple);
    border-radius: 8px;
    box-shadow: 0px 4px 4px rgb(51 51 51 / 4%), 0px 4px 16px rgb(51 51 51 / 8%) !important;
}
.side-bar ul li:hover{
    background-color:#e47c38;
    color: var(--theme-purple);
    border-radius: 8px; 
}
.side-bar ul li.active a{
    color:#fff;
    font-size: 13px;
    font-weight: 600;
}
.side-bar ul li:hover a{
    color: #fff;  
}
.side-bar ul li.active svg{
    stroke: var(--theme-purple);
}
.side-bar a span{
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.side-bar ul li{
    margin-bottom: 15px;
}
.side-bar ul li:last-child{
    margin-bottom: 0;
}
.bottom-short-cut-nav{
    border-top: 1px solid rgba(230, 231, 233, 0.2);
    padding-top: 30px;
}
.bottom-short-cut-nav h4{
    font-size: 12px !important;
    font-weight: 500;
    color: #fff;
    padding-left: 22px;
    margin-bottom: 20px;
}
.dashboard-right-section{
    padding-top:0px;
    padding-bottom: 70px;
    position: absolute;
    width: 85%;
    height: auto;
    background-color:#fff ;/*#E5E5E5*/
    right: 0;
    z-index: -1;
    padding-left: 15px;
    padding-right: 40px;
    overflow: hidden;
}
.dashboard-right-wrap{
    padding-top: 115px !important;
}
.dashboard-main-lft{
    border-right: 0.5px solid #e8e8e8;
    padding-right: 30px;
    height: 100%;
}
.dashboard-main-lft h1{
    padding-bottom: 21px !important;
    border-bottom: 0.5px solid #e8e8e8;
    margin-bottom: 46px !important;
}
.head-card {
    padding: 20px 30px 20px 15px;
    border-radius: 4px;
    box-shadow: 0px 4px 4px rgb(0 0 0 / 8%) !important;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}
.head-card h4{
    color: #8e8e8e;
}
.each-btn-box{
    width: auto !important;
}
.each-btn-box span{
    display: flex;
    align-items: center;
}
.each-btn-box button{
    padding:8px 18px;
    background-color: #fff;
    color: #111111;
    border-radius: 4px;
    outline: none;
    border: 2px solid #111111;
    display: flex;
    align-items: center;
}
.each-btn-box a.active button{
    /* padding:8px 18px; */
    background-color: var(--theme-purple);
    color: #fff;
    border-radius: 4px;
    outline: none;
    border: 2px solid var(--theme-purple);
}
.each-btn-box span.label{
    font-size: 14px;
    color: #828282;
    display: inline-block;
    margin-bottom: 43px;
}
.each-btn-box.icon button,.each-btn-box.icon a.active button {
    padding: 12px 14px;
    display: flex;
    align-items: center;
}

.each-btn-box.icon-circle button{
    /* height: 44px;
    width: 44px; */
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;padding: 0;
    border-radius: 50%;
}
.icon-circle svg{
    width: 14px;
}
.each-btn-box.icon-circle a.active button{
    border-radius: 50%;
}
.dashboard-btn-wrapper .each-btn-box:nth-child(2){
    width: 25%;
}
.dashboard-btn-wrapper .each-btn-box:nth-child(3){
    width: 10%;
}
.dashboard-btn-wrapper .each-btn-box:nth-child(4){
    width: 17%;
}
.dashboard-chkbox-wrapper{
    padding: 50px 0 50px 0;
}
.chk-box-icon{
    height: 24px;
    width: 24px;
    border-radius: 4px;
    border: 1px solid #D4D4D4;
}
.select-status{
    font-size: 16px;
    color: #111111;
    opacity: 0.4;
    font-weight: 400;
    margin-left: 75px !important;
}
.chk-box-icon.hover{
    background-color: #FAFAFA;
    border: 1px solid #D4D4D4;
}
.chk-box-icon.active{
    background-color: #F1F1F1;
    border: 1px solid #D4D4D4;
}
.chk-box-icon.focus{
    background-color: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.48);
}
.chk-box{
    margin-bottom: 15px;
}
.form-group.chk-box input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
  }
  
  .form-group.chk-box label {
    position: relative;
    cursor: pointer;
    font-size: 16px;
  }
.form-group.chk-box label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 0px solid #025b99;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 4px;
    background-color:rgb(2 91 153 / 63%);
}
.form-group.chk-box label:hover:before { 
    background-color: rgb(2 91 153 / 63%);
}
.form-group.chk-box input:checked + label:before{
    background-color:#025b99;
}
.form-group.chk-box input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.form-group.chk-box input:disabled + label:before {
    background-color: #dcdcdc;
}
.form-group.chk-box input:disabled + label:after {
    content:none; 
}
.form-group.chk-box input:disabled + label{
    color: #b5b5b5;
}


/********************************** custom radio *****************************/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 0px solid #ddd;
    border-radius: 100%;
    background:rgb(2 91 153 / 63%);
}
[type="radio"]:checked + label:before {
    background:#025b99;
}
[type="radio"]:not(:checked) + label:hover:before{
    background-color:rgb(2 91 153 / 63%);
} 
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #fff;
    position: absolute;
    top: 6px;
    left: 6px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/* ******************************************************************* */
.dashboard-radio-wrapper .chk-box-icon{
    border-radius: 50%;
    background-color: #FFC1CA;
    border: none;
}
.dashboard-radio-wrapper .chk-box-icon.hover{
    background-color: rgb(229 46 72 / 56%);

}
.dashboard-radio-wrapper .chk-box-icon.active{
    background-color:#025b99;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dashboard-radio-wrapper .chk-box-icon.active::before{
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
}
.each-input-box .form-control{
    font-size: 14px;
    height: calc(3em + .75rem + 2px);
    
}
.each-input-box input{
    border: none !important;
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px rgba(51, 51, 51, 0.08) !important;
    border-radius: 4px;
    width: 100%;
}
.each-input-box{
    margin-bottom: 48px;
}
.each-input-box .form-group{
    width: 67%;
    margin-bottom: 0;
}
.each-input-box input.hover{
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 56px rgba(51, 51, 51, 0.16) !important;
}
.each-input-box.siblings-cls .form-group{
    position: relative;
}
.each-input-box.siblings-cls .form-group input{
    padding-top: 22px;
}
.each-input-box.siblings-cls .form-group input::placeholder{
    color: #000;
}
.each-input-box.siblings-cls .form-group label{
    position: absolute;
    font-size: 13px;
    top: 7px;
    left: 12px;
}
.each-input-box input.disabled{
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px rgba(51, 51, 51, 0.08) !important;
}
.each-input-box input.disabled::placeholder{
    color: rgba(17, 17, 17, 0.3);
}
.each-input-box.siblings-cls.disable input::placeholder,.each-input-box.siblings-cls.disable label{
    color: rgba(17, 17, 17, 0.3);
}
.context-menu-box{
    box-shadow: 0px 4px 4px rgba(51, 51, 51, 0.04), 0px 4px 16px rgba(51, 51, 51, 0.08) !important;
    width: 60%;
}
.context-menu-box ul li{
    padding: 8px 16px;
    color: #000;
    font-size: 16px;
}
.each-contest-box{
    margin-bottom: 48px;
}
.context-menu-box ul li.active{
    background-color: #F1F1F1;
}
.each-input-box textarea{
    border: 1px solid #D6D8E7;
    background-color: #FCFCFC;
    padding: 10px 17px;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
}
.each-input-box textarea::placeholder{
    color: #9499A7;
}
/*====================== sidebar end =========================*/
