/*
    RULES
    ----------------------
    -> When you define a class or ID use kebab case instead of camel case. heroSection -> hero_section.
    -> CSS code will go the sequentially like: hero section, about section;
    -> Use comment in every section.
    -> Don't add image in css file, use inline css for image.
    -> Try to use 2 or 3 colors and use variable
*/


/* BASIC SETUP*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Roboto', sans-serif;
    background: #F7F8FC;
}
th{
    font-size: 14px;
}
.container{
    width: 80%!important;
}
hr{

}
p{

}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

h3{

}
.navbar{
    padding: 0!important;
}
.navbar-brand{
    display: inline-block;
    margin-left: -10px!important;
}
h4{

}
.form-control{
    border-color: #111!important;
}
.btn-link{
    text-decoration: none;
}
.bg_red{
    background: red;
}
.bg_green{
    background: green;
}
.btn_blue{
    color: #fff;
    background: #185DA8;
    display: inline-block;
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 2px;
    transition: .6s;
    outline: none;
    border: none;
}
.btn_blue:hover{
    color: #fff;
    background: #1d6ec5;
}
.auth_link_btn{
    color: #185DA8;
    background: #F4F7FF;
    display: inline-block;
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 2px;
}
.btn_pink{
    color: #fff;
    text-transform: uppercase;
    background: #E6007E;
    display: inline-block;
    font-size: 12px;
    padding: 17px 50px;
    border-radius: 2px;
    transition: .6s;
    font-weight: bold;
}
.btn_pink:hover{
    color: #bad8f7;
}
.text_white{
    color: #fff;
}
.text_black{
    color: #111;
}
a{
    text-decoration: none;
}
.bg_blue {
    background-color: #1b6690;
}

.auth_box_middle,.payment_box_middle{
    width: 25%;
    margin: 0 auto;
    background: #fff;
    padding: 15px 30px;
    border-radius: 15px;
    border: 1px solid #111;
    margin-top: 45px;
    margin-bottom: 45px;
}

.payment_box_middle{
    width: 35%;
}
.form_top h5{
    font-weight: bold;
}

footer{
    padding: 5px 0;
    color: #fff;
}
footer a{
    color: #fff;
}

footer .copy{
    font-size: 13px;
}
footer .copy:hover{
    color: #fff;
}
footer a img{
    height: 37px;
}
.footer_links {
    list-style-type: circle;
}
.footer_links,.social_icons{
    display: flex;
    justify-content: center;
    align-content: end;
    margin-top: 30px;
    justify-content: space-around;
    transition: .6s;
}
.social_icons{
    margin-top: 20px;
}
.footer_links a:hover{
    color: #fff;
    text-decoration: underline;
}
.social_icons{
    justify-content: space-evenly;
}
.social_icons a{
    padding: 5px;
    display: inline-block;
}
.social_icons a:hover{
    color: #fff;
}
.social_icons li:nth-child(1),.social_icons li:nth-child(2),.social_icons li:nth-child(3),.social_icons li:nth-child(4),.social_icons li:nth-child(5),.social_icons li:nth-child(6){
    border-radius: 50%;
    height: 35px;
    width: 35px;
    line-height: 1.5;
    text-align: center;
}
.social_icons li:nth-child(1){
    background: #1877F2;
}
.social_icons li:nth-child(2) {
    background: #E4405F;
}
.social_icons li:nth-child(3) {
    background: #F57D00;
}
.social_icons li:nth-child(4) {
    background: #1DA1F2;
}
.social_icons li:nth-child(5) {
    background: #25D366;
}
.social_icons li:nth-child(6) {
    background: #1877F2;
}


/* registration */

.reg_box_middle{
    width: 70%;
    margin: 0 auto;
    background: #fff;
    padding: 10px 20px;
    border-radius: 15px;
    border: 1px solid #111;
    margin-top: 25px;
    margin-bottom: 20px;
}

.reg_box_middle h6{
    font-size: 22px;
}
.reg_box_middle .form-control{
    border-color: #636e72!important;
}
.customFileInput::-webkit-file-upload-button {
    visibility: hidden;
}

.customFileInput::before {
    content: 'Logo *';
    color: #636e72;
}
input::placeholder{
    color: #636e72;
}

.payment_box_middle ::placeholder{
    font-size: 14px;
}

/* admin panel */

.main_section{
    padding: 10px 0;
}
/* .row.admin_row{
    padding: 0!important;
} */
.row.admin_row >div{
    padding-left: 0!important;
}
.admin_panel{
    background: #fff;
}
.bg_gray{
    background: #F2F5F9;
}
.notice_section{
    background: #d63031;
    padding: 5px 0;
    margin-top: 15px;
}

.admin_sidebar li{
    background: #F2F5F9;
    text-transform: uppercase;
    border: 1px solid #111;
    padding: 5px 0;
    margin-bottom: 10px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-left: none;
    transition: .6s;
    position: relative;
    padding-left: 10px;
    font-size: 15px;
}
/* .admin_sidebar li::before{
    display: table;
    position: absolute;
    border-top: 1px solid red;
    content: "";
    top: 0;
    left: -10px;
} */
.admin_sidebar li:hover{
    background: #C5DAF0;
}
.admin_sidebar li a{
    color: #111;
}
.admin_sidebar li a span{
    font-size: 14px!important;
}
.admin_sidebar li.active{
    background: #C5DAF0;
}
.admin_sidebar li a span{
    display: inline-block;
    margin-left: 10px;
}

.admin_content{
    border: 1px solid #111;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 0 20px;
    background: #fff;
}
.middle_table> tr{
    background: red;
    margin: 13px 0;
}

.has_middle_content{
    position: relative;
    /* width: 100%; */
    height: 100%;
}
.has_middle_content_box h4{
    background: #1b6690;
    text-align: center;
    padding: 0 50px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 0 10px 0;
}
.has_middle_content_box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 55%;
    border: 1px solid #111;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-color: transparent;
}
.has_middle_content_box_without_border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
    border: 1px solid #111;
    border-radius: 10px;
    padding: 20px;
}
.form-box{
    padding: 0 20px 20px 20px;
}
.form-box label{
    font-size: 14px;
}
.form-box .form-control{
    padding: 2px 5px;
    background: #c5daf04b;
}

#color-calendar{
    border-radius: 5px;
    margin-left: 0px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.color-calendar.basic .calendar__body{
    padding: 5px!important;
}
.color-calendar.basic .calendar__days .calendar__day{
    font-weight: 100!important;
    font-size: 13px;
}
.color-calendar.basic .calendar__days .calendar__day-other{
    display: none;
}

.color-calendar .calendar__days {
    grid-template-columns: repeat(7, minmax(20px, 50px));
    grid-template-rows: repeat(5, minmax(30px, 40px))!important;
}
.color-calendar .calendar__monthyear .calendar__month{
    font-size: 16px;
}
.color-calendar .calendar__monthyear .calendar__year{
    font-size: 18px;
}
.menu_icon{
    width: 20px;
    height: 20px;
}

.notice_text{
    font-weight: medium;
    font-size: 18px;
    display: inline-block;
    margin-right: 40px;
}
.notice_container{
    position: relative;
    overflow: hidden;
    padding-left: 60px;
}
.notice_ticker{
    width: 100%;
}
.notice_icon{
    color: #fff;
    background: #d63031;
    font-size: 20px;
    height: 50px;
    width: 40px;
    position: absolute;
    text-align: center;
    padding: 10px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.has_middle_content_box_without_border_{
    width: 50%;
    margin: 0 auto;
    border: 1px solid #111;
    padding: 15px;
    border-radius: 10px;
    margin-top: 50px;
    margin-bottom: 70px;
}

.notice_page .notice_checkbox,.noitce_i{
    color: #cccc;
}

.update_btn{
    padding: 8px 20px;
}

.my_profile_page label,input,span.input{
    color: #111;
}
.my_profile_page .form-control{
    border-color: #a8a8a8!important;
    color: #111;
}


.payment_history_preview_content{
    width: 100%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.payment_header{
    border: 1px solid #111;
    border-top: transparent;

}
.payment_header h5{
    background: #1B668F;
    text-align: center;
    padding: 8px 0;
    color: #fff;
}
.payment_header ul{
    padding: 15px;
}


.payment_header ul li{
    font-size: 15px;
}
.payment_history_preview_content {
    font-size: 13px;
}
.payment_history_preview_content table{
    margin-top: 20px;
}
.payment_history_preview_content table thead{
    background: #1B668F;
    font-weight: bold;
    color: #fff;
}
.payment_history_preview_content table td{
    vertical-align: middle;
}


.news_photo_preview .img_box{
    position: relative;
}

.news_photo_preview .img_box .btn_box{
    position: absolute;
    right: 3%;
    bottom: 3%;
    background: #111;
}
.news_photo_preview .img_box .btn_box a{
    color: #fff;
    padding: 5px 10px;
    display: inline-table;
}

.news_pills {
    display: flex;
}
.news_pills .img_pill{
    display: inline-block;
    border: 1px solid #ccc;
    padding: 2px 10px;
    border-radius: 20px;
    margin-right: 5px;
    font-size: 12px;
}
.news_pills .img_pill i{
    display: inline-block;
    margin-right: 2px;
}
.notice_checkbox{
    margin-top: 6px;
}


.status_page table{
    margin-top: 20px;
}

.status_page table thead,tfoot {
    background: #1B668F;
    font-weight: bold;
    color: #fff;
}

.status_page table h6{
    font-size: 15px;
    text-transform: uppercase;
}
.status_page table .id,.green_dot{
    font-size: 12px;
}
.green_dot{
    color: #25D366;
    font-size: 10px;
}
.red_dot{
    color: #d63031!important;
    font-size: 10px;
}
.yellow_dot{
    color: #ff9f43!important;
    font-size: 10px;
}
.blue_dot{
    color: #1B668F;
    font-size: 10px;
}
.status_page table .dropdown-toggle{
    background: #ff9f43;
    padding: 0px 4px!important;
    color: #fff;
    border-radius: 2px;
}

.status_page table .action_btn{
    padding: 0px 5px !important;
    color: #fff;
    background: #25D366;
    font-size: 12px;
    border-radius: 2px;
}

.va_middle{
    vertical-align: middle;
}


.huicalendar.huicalendar1.huicalendar2{
    width: 94%!important;
    height: 10pc!important;
}

.calendar-wrapper[data-theme='blue'] .calendar-head-card{
    display: none!important;
}

.my-4{
    margin-bottom: 10px!important;
}

.payment_box_middle .form-control::placeholder{
    color: #111;
    font-size: 18px;
}

.admin_dash .form-control::placeholder {
    color: #111;
    font-size: 18px;
}

.forgot_box_middle{
    margin: 0 auto;
    background: #fff;
    padding: 15px 30px;
    border-radius: 15px;
    border: 1px solid #111;
    width: 25%;
    margin-top: 100px;
    margin-bottom: 100px;
}

.admin_add_payment_page .has_middle_content_box_without_border{
    padding: 0px 15px;

}
.admin_add_payment_page .form-control::placeholder{
    color: #111;
}
.dropend button{
    font-size: 12px!important;
}

.img_a_i{
    color: #E4405F;
    display: inline-block;
    margin-right: 5px;
}
.view_btn{
    display: inline-block;
    margin: 0 5px;
    color: darkgreen;
}
.dir_a{
    color: #111;
}
.dir_a:hover{
    color: blue;
    text-decoration: underline;
}
.dir_a_i{
    color: #FFE896!important;
    display: inline-block;
    margin: 0 5px;
}
.download_btn{
    display: inline-block;margin-left: 5px;
}


.bg_info{
    background: #1B668F;
    color: #fff;
}

.nowrap {
    text-wrap: nowrap!important;
    white-space: nowrap!important;
}

marquee{
    width: 100%;
    display: inline-block;
    z-index: -100;
}

.cursor-pointer{
    cursor: pointer!important;
}
