@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 /*font-family: "Poppins", serif;*/

.mainWrapper{
    background: #EFF3FD;
    display: flex; 

     font-family: "Poppins", serif;
     min-height: calc(100vh - 54px);
}
.sidebar{
    width: 230px;
    padding: 40px 20px;
    background: #fff;
    position: relative;
}
.menubar{
    display: none;
    width: 35px;
    height: 35px;
    position: absolute;
    left: 100%;
    background: #ffff;
    color: #000;
    top: 5px;
    border-radius: 0 5px 5px 0;
    padding: 5px;
}
.menubar img{width: 100%;}
.logo1{
    display: inline-block; margin: 0 0 30px;
}
.sidebarlist{
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebarlist li {margin: 0 0 5px;}
.sidebarlist li a{
    display: flex; 
    color: rgba(0,0,0,.5);
    padding: 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    align-items: center;
    gap:10px;
}
.sidebarlist li a .ico{
    display: inline-block;
}
.sidebarlist li.active a,
.sidebarlist li a:hover{
    background: #dffdfb;
    color: #13A89E;
}

.mainWrapperRight{
    width: calc(100% - 230px);
    padding: 40px;
}
.topBar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px;
}
.topBar .title span{display: block;}
.topBar .title span.titleName{
    font-size: 30px;
    font-weight: 600;
}

.userdiv{
    display: flex;
    align-items: center;
    gap:20px;
    padding: 12px 35px 12px 15px;
    border-radius: 10px;
    background: #fff;
    position: relative;
}
.userdiv >.ico{
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
.userdiv >.ico >img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.userdiv .name{font-weight: 600; color:#000;}
.userlist{
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    z-index: 12;
    width: 100%;
    border-radius: 10px;
    transform-origin: center 0;
    transform: rotateX(90deg);
    transition: .5s;
}
.userdiv:after{
    position: absolute;
    content: "";
    right: 10px;
    top: 45%;
    transform: translate(0, -50%) rotate(135deg);
    border-style: solid;
    border-color: #000;
    border-width: 3px 3px 0 0;
    padding: 3px;
}
.userdiv:hover .userlist{
    transform: rotateX(0deg);
}
.userlist li {margin: 0 0 5px;}
.userlist li a{
      display: flex;
    color: rgba(0, 0, 0, .5);
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.userlist li a .ico{
    display: inline-block;
}
.userlist li.active a,
.userlist li a:hover{
    background: #dffdfb;
    color: #13A89E;
}

.site-header{

    padding: 15px 0; 

}

.headerHold{display: flex; align-items: center; justify-content: space-between;}

.logo1{

    font-size: 40px;

    text-transform: uppercase;

    text-decoration: none;

    font-weight: bold;

    color: #000;

}

.logo1:hover{text-decoration: none;}

.logo1 span{color: #54aed7;}

.info{color: #000; font-size: 22px; font-weight: bold;}

.info a{color: #54aed7; text-decoration: none;}

.info a:hover{color: #000;}





.site-footer{background: #000; color: #fff; text-align: center; padding: 15px 0;}

.site-footer p{margin: 0;}



.banner{
    position: relative; 
    height: 250px;
}
.banner:after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    left: 0;
    top: 0;
}

.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner h2{
      position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    margin: 0;
    text-align: center;
    padding: 20px;
    z-index: 1;
    color: #fff;
    text-shadow: 2px 2px 1px #000;
    text-transform: capitalize;
    width: 100%;
    font-weight: bold;
}

.customBanner{
    display: flex;
    border-radius: 20px;
    background: #fff; font-size: 18px;
    padding: 25px 50px;
    align-items: center;
    justify-content: space-between;
}
.bannerLeft{
    width: 60%;
    padding: 25px 0;
}
.bannerLeft span{display: block; color: #7E7E7E; }
.bannerLeft span:first-child{margin: 0 0 15px; color: #000;}
.bannerLeft h1{font-size: 32px; line-height: 48px;
    color: #21A89F; margin: 0;
}
.bannerImg img{}

 
.btnCounterHolder{display: flex; gap:20px;}
.bch{padding: 30px; border-radius: 25px; background: #000; color: #fff;
    transition: .5s;
    font-size: 16px; line-height: 20px; font-weight: 500; text-transform: uppercase; height:100%;
}
.btnCounterHolder a{text-decoration: none;}
.btnCounterHolder a:nth-child(1) .bch{background: #0F75BC;}
.btnCounterHolder a:nth-child(2) .bch{background: #0A588F;}
.btnCounterHolder a:nth-child(3) .bch{background: #43BAB2;}
.btnCounterHolder a:nth-child(4) .bch{background: #1D8780;}

.bch.count{display: flex; align-items: center;}
.bch.count .ico{
    width: 45px; height: 45px; display: inline-flex;
    align-items: center;
    justify-content: center; padding: 5px; background: #fff;
    margin-right: 10px; border-radius: 50%;
}
.bch h3{font-weight: bold; font-size: 25px;}

.bch.plus{text-align: center;}
.bch.plus .ico{display: inline-block; margin: 0 0 10px;}
.bch.plus:hover{background: #000;}

.boxDiv{
    font-size: 16px; 
    line-height: 21px;
    text-transform: capitalize;
    color: #747474;
    background: #fff;
    padding: 0 25px;
    border-radius: 15px;

}
.boxTop{
    padding: 40px 0;
    border-bottom: 1px solid #D9D9D9;
}
.boxTop span{display: block; margin: 0 0 5px;}
.boxTop .name{font-weight: bold; color: #43BAB2; }
.boxBottom{
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.boxBottom a{text-decoration: none;}
.boxBottom a img{
    display: inline-block;
    margin-right: 5px;
}
.boxBottom a.view{ color:#0F75BC;}
.boxBottom a.edit{ color: #43BAB2;}
.boxBottom a:hover{color: #000;}

.boxlist h3{
        font-size: 26px;
    line-height: 30px;
    color: #045b6a;
    margin: 0 0 15px;
    font-weight: 600;
}
.boxlist .row{margin: 0 0 25px;}
.boxlist .page-numbers{
        width: auto;
    height: 40px;
    min-width: 40px;
    background: blue;
    color: #fff;
    display: inline-flex;
    vertical-align: top;
    padding: 5px 10px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    margin:3px 1px;
}
.boxlist .page-numbers.current{background: #000; }
.boxlist .page-numbers.next{width: auto;}

.btn.btn-info{
    color: #fff; 
    background: #5A55D2;
    border: none;
    padding: 10px 25px;
}

.cmnListTopBar{
    display: flex;
    gap:20px;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 25px;
}
.cmnListTopBarLeft{
      display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
}
.cmnListTopBarLeft h4{
    background: none;
    color: #000;
    padding: 0;
    margin: 0;
}

.search{
    display: flex;
    gap:10px;
}
 
.search input{

    background: #fff url(../images/search.svg) no-repeat calc(100% - 10px) center;
    padding: 12px 40px 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    border-radius: 30px;
}
.search input[type="submit"]{
    background: #5F66E9 url(../images/filter.svg) no-repeat 15px center;
    border-radius: 10px;
    padding: 12px 15px 12px 35px;
    border: none;
}
.search input:focus{ outline: none;}

.customModal .modal-content{padding: 20px;}
.customModal .modal-body{padding: 0;}
.customModal .modal-header{padding: 0 0 15px; margin: 0 0 15px;}
.customModal .modal-title{} 
.customModalFrm label{
    margin: 0 0 5px;
    display: block;color: #343C44;
    font-weight: 500;
}
#system_check{margin-bottom: 15px;}
.customModalFrm input[type="radio"]{
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-left: 20px;
        margin-bottom: 0;
}
.customModalFrm input[type="radio"]:first-child{
    margin-left: 0;
}
#system_check{
    /*gap:20px;*/
}
.customModal .modal-header .btn-close:hover,
.customModal .modal-header .btn-close {
     background: url(../images/crs.svg) no-repeat center;
    background-size: 15px;
 
}
.customModalFrm input,
.customModalFrm select,
.customModalFrm textarea{
    width: 100%;
    padding: 10px 15px;
    margin: 0 0 15px;
    border-radius: 5px;
}
.customModalFrm input[type="submit"]{
    display: inline-block;
    background: #5A55D2;
    color: #fff;
    border-radius: 10px;
    text-transform: capitalize;
}
.customModalFrm input[type="submit"]:hover{
    background: #000;
}

h4{

	    padding: 8px 10px;

    margin: 0;

    background: #afd6ff;
    color: #16485c;

    font-size: 20px;

    border-radius: 5px;

    margin: 0 0 10px;

    text-transform: capitalize;

    line-height: 24px;

}

 
li.list-group-item{

    margin: 0;

}

li.list-group-item:nth-child(2n) {

    background: #f5f5f5;

}

#patientTable { 

    border:none;

}

#patientTable  th,

#patientTable  td{
    color: #192A3E;
    padding: 10px;
    
    border:none;
    font-size: 14px;
}
#patientTable  td a.btn:first-child{
    color: #000000;
}
#patientTable  td a.btn,
#patientTable  td button{
    background: none;
    
    color: #5A55D2;
    border:none;
    padding: 0;
    margin: 0 3px;
    font-size: 20px;
}
#patientTable  td button{
    color: #E70000;
}



#patientTable  td,
.patientTableHolder .table-striped>tbody>tr:nth-of-type(odd)>*,
.patientTableHolder .table-striped>tbody>tr >*{
    background: none !important;
    box-shadow: none;
}
.patientTableHolder{
    overflow: auto;
}
.patientTableHolder table{
    background: #fff;
    max-width: 1200px;
}
.patientTableHolder table td:last-child{
    width: 150px;
}

#patientTable  th{

    background: #F7F8FA !important;

    color: #505470 ;
    font-weight: 400;

}
.patientTableHolder,
.recordDetails{
    padding: 20px 25px;
    background: #fff;
    border-radius: 20px;
}

#patientTable  td{}
.recordDetails h4{
    margin: 0;
}
.recordDetails li.list-group-item{
    border:none;
}

li.list-group-item:nth-child(2n) {

    background: #f5f5f5;

}



.loginPage{

  height: 100vh;

    padding: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: url(https://zyrasoftech.com/medical/wp-content/themes/medical/images/medical.jpg) no-repeat 0 0;

    background-size: cover;

}

.loginHolder{

    width: 500px;

    padding: 40px;

    background: rgba(0, 0, 0, .2);

    color: #fff;

    backdrop-filter: blur(5px);

    border-radius: 15px;

    box-shadow: 5px 5px 8px 2px rgba(0, 0, 0, .4);

}

.loginHolder h2{
    margin: 0 0 20px;
}

button[type="submit"]{

    background: #54b9eb;

    border: none;

    padding: 10px 30px;

    font-weight: 600;

    text-transform: uppercase;

}

.loginHolder a{

    color: #fff;

}

.main-nav{

    display: none;

}



.form-container{}

.form-container h2{

        margin: 0;

    padding: 10px 20px;

    background: #3289b1;

    color: #fff;

    border-radius: 5px;

    font-size: 30px;

    text-transform: uppercase;

    font-weight: bold;

}

.form-container .form-holder{

    padding: 20px;

    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);

    border-radius: 0 0 10px 10px;

}

/**prfoile page**/
.profileMain{
    padding: 25px;
    border-radius: 15px;
    background: #fff;
}
.profileMainHead{
    border-bottom: 1px solid #F4F5F7;
    margin: 0 0 30px;
}
.profileMainHead h3{
    display: inline-block;
    position: relative;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1814F3;
    margin: 0;
}
.profileMainHead h3:after{
    position: absolute;
    content: "";
    background: #1814F3;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
}

.profileMainHolder{
    display: flex;
    gap:40px;
}
.profileImg{
    width: 100px;
}
.profileImg .img{width: 100px; height: 100px; display: inline-block; border-radius: 50%;
    position: relative;
}
.profileImg .img img{width: 100%; height: 100%; border-radius: 50%;}
.profileImg .prflEdit{
    position: absolute;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1814F3;
    padding: 2px;
    bottom: 10px;
    right: 0;
}
.profileImg .prflEdit img{
    width: 20px;
}


.profileForm{
    width: calc(100% - 100px);
}
.profileForm .form-inline{display: flex; gap:20px;
    justify-content: space-between;
}
.profileForm .form-inline .form-group{
    width: 48%;
}
.profileForm input{
    width: 100%;
    border-radius: 12px;
    border:1px solid #DFEAF2;
    padding: 10px;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 20px;
}
.profileForm input[type="submit"]{
    float: right;
    display: inline-block;
    padding: 12px 50px;
    background: #1814F3;
    color: #fff;
    border: none;
    width: auto;
    font-size: 18px;
    line-height: 25px;
}
.profileForm input[type="submit"]:hover{
    background: #08a0ff;
}
.profileForm label{
    color: #232323;
    display: block;
    margin: 0 0 5px;
    text-transform: capitalize;
}




.registrationHolder .form-inline{display: flex; gap:20px;
    justify-content: space-between;
}
.registrationHolder .form-inline .form-group{
    width: 48%;
}
.registrationHolder input{
    width: 100%;
    border-radius: 12px;
    border:1px solid #DFEAF2;
    padding: 10px;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
        background: rgba(0, 0, 0, .15);
}
.registrationHolder input[type="submit"]{
    float: right;
    display: inline-block;
    padding: 12px 50px;
    background: #1814F3;
    color: #fff;
    border: none;
    width: auto;
    font-size: 18px;
    line-height: 25px;
}
.registrationHolder input[type="submit"]:hover{
    background: #08a0ff;
}
.registrationHolder label{
    color: #fff;
    display: block;
    margin: 0 0 5px;
    text-transform: capitalize;
}

.registrationPage{
    min-height: 100vh;
    height: auto;
} 
.registrationPage .registrationHolder{
        width: 700px;
}

.registrationPage  input::placeholder {
  color: #fff;
  opacity: 0.8;
}

.loginHolder a.loginbtn,a.loginbtn{
    padding: 8px 22px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    text-decoration:none;
} 
.loginHolder a.loginbtn:hover{
    background: #08a0ff;
    color: #fff;
}


@media (max-width: 1199px){
    .mainWrapperRight{padding: 40px 25px;}
    .search{max-width: 400px;}
    .cmnListTopBar{
        flex-wrap: wrap;
    }
    .topBar .title span.titleName{
        font-size: 24px;
    }
    .customBanner{
        padding: 25px 30px;
    }

    .bannerLeft h1{
        font-size: 25px;
        line-height: 30px;
    }
    .btnCounterHolder{gap:10px;}
    .bch{padding: 20px; font-size: 14px;}
    .boxTop{padding: 25px 0;}
    .boxDiv{padding: 0 18px;}
    .boxBottom a{
        font-size: 13px;
    }
}

@media (max-width: 991px){
    .btnCounterHolder{flex-wrap: wrap;}
   .btnCounterHolder a {width: 48%;}
    .profileMainHolder{
        flex-wrap: wrap;
    }
    .profileForm{
        width: 100%;
    }
}

@media (max-width: 768px){
    .menubar{display: inline-block;}
    .sidebar{transition: .5s;
        margin-left:0;}
    .mainWrapper.on .sidebar{ 
        margin-left: -230px;
    }
    .mainWrapper.on .mainWrapperRight{width: 100%;}
}

@media (max-width: 767px){
    #medical-registration-form .d-flex{
        flex-wrap: wrap;
    }
    .profileForm .form-inline{
        flex-wrap: wrap;
        gap:0;
    }
    .cmnListTopBarLeft{
        flex-wrap: wrap;
    }
    .profileForm .form-inline .form-group{
        width: 100%;
    }
    .bch{
        width: 100%;
    }
    .search input,
    .search input[type="submit"]{
        width: 100%;
        margin: 0 0 10px;
    }
    .search{
        max-width: 300px;
        flex-wrap: wrap;
    }
       .profileMainHead .nav-tabs li{margin:0;}
    .profileMainHead .nav-tabs li h3{padding:0;}
    .profileMainHead .nav-tabs li h3 a{padding:10px;}
}
@media (max-width: 575px){
    .userdiv .name{
        display: none;
    }
    .topBar .title span.titleName {
        font-size: 20px;
    }
    .customBanner{
        flex-wrap: wrap;
    }
    .bannerLeft{width: 100%; padding: 0; margin: 0 0 20px;}
    .btnCounterHolder a   {width: 100%;}
    .sidebar{
        width: 170px;
        padding: 20px 15px;
    }
    .logo1{margin: 0 0 20px;}
    .userlist{
        width: 200px;
    }
    .sidebarlist li a,
    .userlist li a{padding: 10px; gap:5px; font-size: 14px;}
    .sidebarlist li a img,
    .userlist li a img{
        width: 15px;
    }
    .mainWrapperRight{
        width: calc(100% - 170px);
    }
    .mainWrapper.on .sidebar {
        margin-left: -170px;
    }
    .form-container h2{
        font-size: 22px;
    }
    .banner h2{
        font-size: 30px;
    }
    h4{font-size: 18px;}
}

@media (max-width: 479px){
    .form-container h2{
        font-size: 18px;
    }
    .sidebar{
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
        margin-left: -170px;
        z-index: 1;
    }
    .mainWrapper.on .sidebar {
        margin-left: 0;
    }
    .mainWrapperRight{
        width: 100%;
    }
}

@media (max-width: 425px){
 
}