/*!
Template Name: Toletplease
Author:  
Author URI: 
Version: 1.0.0
*/

/* ============ COMMON CSS START ============= */
body {
    margin: 0;
    padding: 0;
    outline: 0;
    font-family: "Oswald", sans-serif;
}
:root {
    --primary_color : #3B82F6;
    --font_color: #64748B; 
    --secondary_color: #F97316;
    --white_color: #fff;
    --title_color: #1E293B;
    --bg-color: #F8FAFC;
}
a {
    text-decoration: none;
}
p, span, li {
    color: var(--secondary_font_color);
}
p, ul {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
.mb-40 {
    margin-bottom: 40px;
}
.mt-40 {
    margin-top: 40px;
}
.pt-40 {
    padding-top: 40px;
}
.pb-40 {
    padding-bottom: 40px;
}

.common_btn a {
    padding: 15px 32px;
    display: inline-block;
    border-radius: 4px;
    color: var(--white_color);
    font-size: 18px;
    font-weight: 400;
    background: var(--primary_color);
}
/* common title */
.common-title {
    margin-bottom: 40px;
}
.common-title__left {
    display: flex;
    align-items: center;
}
.common-title__left img {
    margin-right: 10px;
}
.common-title__left span {
    font-size: 36px;
    font-weight: 600;
    color: var(--title_color);
}
.common-title__right {}
/* common title */

.cart-item:hover .cart-item__body a{
    transition: all .3s ease-in-out;
}
/* ============ COMMON CSS END =============== */

/* ===========================================  
     GENERAL STYLE
/* =========================================== */

/* HEADER SECTION CSS START HERE */
.header_inner .header_menu ul li {
    position: relative;
    margin-left: 40px; 
}
.header_inner .header_menu ul li a {
    text-decoration: none;
    color: #94A3B8;
    padding: 30px 0px;
    font-size: 18px;
}
.header_inner .header_menu .menu > ul > li.active > a {
    color: var(--primary_color) !important;
}

.header_inner .header_menu ul li.active:after {
    transform: translateY(10px);  
    opacity: 1;
}

.header_inner .header_menu ul li a i {
    padding-left: 5px;
}
.menu_section {
    padding: 20px 0px; 
}
a.sub_menu_active {
    color: #fff !important;
    background: var(--primary_color);
}
a.mb_active {
    color: var(--primary_color)!important;
}
.sticky-menu {
    background-color: var(--white_color);
    padding: 20px 0px; 
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999999999 !important;
    box-shadow: 25px 4px 6px 0px rgba(248,250,252,1);
}
.header_inner .header_menu ul li:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -25px;
    background-color: var(--primary_color);
    width: 100%;
    height: 2px;
    transform: translateY(0px); 
    transition: all .3s ease-in-out; 
    opacity: 0; 
}  
.header_inner .header_menu  ul li:hover:after {
    transform: translateY(10px);  
    opacity: 1;
}  
.header_inner .header_menu  ul li:last-child::after {
    height: 0px;
}
.header_inner .header_menu ul li .sub_menu ul {
    position: absolute;
    width: 251px;
    background: var(--bg-color);
    top: 50px;
    left: 0;
    transform: translateY(20px);
    transition: all .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    border-radius: 3px;
    border: 1px solid #E2E8F0;
}
.header_inner .header_menu ul li:hover .sub_menu ul {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}
.header_inner .header_menu ul li .sub_menu ul li {
    padding: 0;
    margin-left: 0;
    border-bottom: 1px solid #fff;
}
.header_inner .header_menu ul li .sub_menu ul li:last-child{
    border-bottom: none;
}
.header_inner .header_menu ul li .sub_menu > ul > li > a {
    display: inline-block;
    width: 100%;
    padding: 10px 8px 10px 15px;
    height: 100%;
    transition: all .3s ease-in-out;
    color: #94A3B8;
}
.header_inner .header_menu ul li .sub_menu ul li a:hover{
    background: var(--primary_color);
    color: #fff;
}
.header_inner .header_menu ul li .sub_menu ul li::after {
    background-color: transparent;
}
.add_property a {
    padding: 15px 32px !important;
    display: inline-block;
    border-radius: 4px;
    color: var(--secondary_color) !important;
    font-size: 18px;
    font-weight: 400; 
    background: #FFF7ED; 
}
.notification {
    padding: 0px 16px;
}
.favorite a,
.notification a {
    width: 56px;
    height: 56px;
    line-height: 52px;
    border: 1px solid #CBD5E1;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    color: var(--font_color);
    font-size: 20px;
}
.favorite {
    position: relative;
}
.favorite a {
    background-color: #475569;
    color: var(--white_color);
}
.fav_dot {
    position: absolute;
    top: 0;
    right: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary_color);
    border-radius: 100%;
}
.add_property span {
    padding-left: 10px;
}
/* HEADER SECTION CSS ENDING HERE */

/* MOBILE MENU SECTION CSS START HERE */
.mobile-menu .header-top {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999999999;
}
.header-logo a img {
    width: 130px;
    height: auto;
}
.mobile-menu .header-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 18px;
}
.mobile-menu .header-item .header-item-right span i {
    font-size: 30px;
    color: var(--primary_font_color);
}
.mobile-menu .header-item .header-item-right span i.fa-solid.fa-xmark {
    display: none;
}
.mobile-menu .header-item .header-item-right.hhhh span i {
    display: none;
}
.mobile-menu .header-item .header-item-right.hhhh span i.fa-solid.fa-xmark {
    display: block;
}
.mobile-menu .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    background: #fff;
    width: 100%;
    transform: scaleY(0);
    transform-origin: top;
    height: 100%;
    overflow-y: scroll;
    padding: 0 20px;
    padding-bottom: 60px;
    transition: all 0.3s ease;
}
.mobile-menu .header-bottom.open {
    transform: scaleY(1);
}
.mobile-menu .header-bottom .header-menu > ul {
    padding: 0;
    padding-top: 120px;
}
.mobile-menu .header-bottom .header-menu ul li{
    list-style: none;
    border-bottom: 1px solid #3b82f612;
    padding: 18px 0px;
    margin: 0px 25px;
}
.mobile-menu .header-bottom .header-menu ul li:last-child {
    margin-bottom: 20px;
}
.mobile-menu .header-bottom .header-menu ul li.m  a {
    position: relative; 
}
.mobile-menu .header-bottom .header-menu ul li.m > a::after {
    top: 0;
    right: 0;
    font-weight: 700;
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    transition:  all .3s ease-in-out;
    position: absolute;
}
.mobile-menu .header-bottom .header-menu ul li ul {
    display: none;
    margin: 15px 0;
}
.mobile-menu .header-bottom .header-menu ul li.m > a {
    position: relative;
}
.mobile-menu .header-bottom .header-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #94A3B8;
    text-decoration: none;
    display: block;
}
.mobile-menu .header-bottom .header-menu ul li span i {
    position: absolute;
    right: 25px;
    font-size: 15px;
}
 
/* MOBILE MENU SECTION CSS END HERE */


/* HERO SECTION CSS END HERE */
.hero__section {
    background-color: var(--bg-color);
    padding: 92px 0px;
}
.hero__area {}
.hero__content {}
.hero__content h2 {
    font-size: 64px;
    font-weight: 600;
    color: var(--title_color);
    text-transform: uppercase;
    line-height: 78px;
    margin-bottom: 25px;
}
.hero__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.hero__content--sm_title {}
.hero__content--sm_title h3 {
    font-size: 28px;
    font-weight: 300;
    color: var(--secondary_color);
    margin-right: 10px;
}
.hero__content--sm_title {}

.hero__image img {
    width: 100%;
}
/* HERO SECTION CSS END HERE */
 
/* SEARCH BOX SECTION START HERE */
.search__box {
   
}
.searchbox_row {
    width: 23% !important;
}
.searchbox_last_row {
    width: 31% !important;
}
.search__box__area {
    background-color: var(--bg-color);
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    padding: 20px; 
    margin-top: -50px;
}

.search__box__inner {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; */
}
.search__box__inner--item {

}
.search_btn {
    background: var(--primary_color);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 24px;
    border: none;
    outline: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.search_btn i {
    rotate: 90deg;
}
.search_btn span {
    padding-right: 10px;
}
.search__box__inner--item .nice-select {
    width: 100%;
    border: none;
    border-radius: 0;
    border-radius: 0;
    border-right: 1px solid #ddd;
    height: 52px;
    line-height: 50px;
}
.search__box__inner--item .nice-select ul.list {
    width: 100%;
   
}
.nice-select.open .list {
    z-index: 99999 !important;
}
.search__box__inner--item .nice-select ul.list li,
.search__box__inner--item .nice-select .current {
    color: var(--font_color) !important; 
    font-weight: 400;
}
 
/* SEARCH BOX SECTION END HERE */

/* TRENDING PROPERTY SECTION START HERE */
.trending-property {
    margin: 50px 0px 100px;
}
.category_select_box .nice-select {
    background-color: var(--bg-color);
    border-radius: 4px;
    color: var(--font_color);
    width: 140px;
    border: none;
    height: 47px;
    line-height: 45px;
}
.category_select_box .nice-select .list {
    width: 100%;
}
.cart-item {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #E1E7EF;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.cart-item__label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%; 
}
.heart {
    background: #fff;
    padding: 10px;
    border-radius: 100%;
    display: inline-block;
    width: 40px;
    height: 40px;
}
.heart i {
    color: #CBD5E1;
    font-size: 20px;
}
.active_heart i {
    color: var(--secondary_color);
}
.cart-item__label--inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 0px 0px;
}
.cart-item__label--inner .popular {
    margin-left: -4px;
}


.cart-item:hover .cart-item__body a {
    color: var(--primary_color); 
}
.cart-item__image-thubmnail .swiper-slide img {
    width: 100%; 
}
.cart-item__body {
    background: var(--bg-color);
    padding: 16px 16px 4px;
}
.cart-item__body a {
    font-size: 20px;
    font-weight: 600;
    color: var(--title_color);
}
.cart-item__body p, 
.cart-item__room-facility ul li span,
.cart-item__footer-list ul li .date-time {
    font-size: 14px;
    font-weight: 400;
    color: #334155;
}
.cart-item__room-facility ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
}
.cart-item__footer {
    border-top: 1px solid #E2E8F0;
}
.cart-item__footer-list {
    background: var(--bg-color);
}
.cart-item__footer-list ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
}
.cart-item__footer-list ul li .date-time {
    font-weight: 500;
    color: var(--title_color) !important;
}

span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 1;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--secondary_color);
}
.trending_slider .swiper {
    width: 100%;
    height: 100%;
  }

.trending_slider .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* TRENDING PROPERTY SECTION END HERE */

/* RECENT PROPERTY SECTION END HERE */
.recent-property {
    background: var(--bg-color);
    padding: 100px 0px 60px;
}
.common-title__right p {
    font-size: 14px;
    font-weight: 400;
    color: var(--font_color);
}
.category span {
    background: #F97316;
    color: #fff;
    padding: 8px 24px;
    display: inline-block;
    border-radius: 32px;
    font-size: 16px;
    font-weight: 400;
    margin: 0px 0px 10px 50px;
}
.property_btn {
    margin-top: 40px;
    text-align: center;
}
.property_btn i {
    padding-left: 10px;
}
/* RECENT PROPERTY SECTION END HERE */

/* BACHELOR PROPERTY SECTION END HERE */
.bachelor-recent-property {
    padding: 60px 0px;
}
/* BACHELOR PROPERTY SECTION END HERE */


/* REVIEW SECTION START HERE */
.review-section {
    background: var(--title_color);
    padding: 40px 0px; 
}
.review-inner__item {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 22px;
}
.review_title {
    color: var(--white_color) !important;
}
.review_category_select_box .nice-select {
    background: #334155;
    border: none;
    height: 50px;
    line-height: 48px;
    width: 140px;
    border: none;
}
.review_category_select_box .nice-select .current {
    color: var(--white_color);
}
.review_inner__item--top {
    background: var(--white_color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
}
p.review_first_para {
    margin-bottom: 20px;
}
.review_inner__item--bottom {
    background: var(--bg-color);
    padding: 16px;
}
.review_inner__item--top_left {
    display: flex;
    align-items: center;
}
.review_inner__item--top_right i {
    color: var(--secondary_color);
}
.review_person_info span {
    font-size: 16px;
    font-weight: 400;
    color: var(--title_color);
}
.review_person_info p {
    color: var(--font_color);
}
.review_img {
    margin-right: 10px;
}
.review_img img {
    width: 100%;
}
.review_inner__item--top_right span {
    color: var(--font_color);
}
.review_inner__item--top_right .stars {
    color: var(--secondary_color);
}
.review_inner__item--bottom p {
    font-size: 14px;
    font-weight: 400;
    color: #334155;
}
/* REVIEW SECTION END HERE */


/* FOOTER SECTION START HERE */
.footer-section {
    background: var(--bg-color);
}
.footer-area {
    max-width: 770px;
    margin: auto;
}
.footer-area__top {}
.footer-area__top-content {}
.footer-area__top-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--title_color);
}
.footer-area__top-content p {
    max-width: 645px;
    margin: auto;
    margin-top: 12px;
    color: var(--font_color);
}
.footer-area__top-content .download_link {
    margin-top: 15px;
}
.footer-area__top-content .download_link img {}
.footer-area__top-content .download_link span {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary_color);
} 

.footer-area__middle {
    margin: 40px 0px;
}
.footer-area__middle .qr_code_image {
    border-right: 1px solid #E2E8F0;
    padding-right: 40px;
}
.footer-area__middle .qr_code_image img {
    background: #E2E8F0;
    padding: 20px;
    border-radius: 8px;
}
.footer-area__middle .google_playstore_img {
    padding-left: 40px;
}
.footer-area__middle .google_playstore_img .googel_image {
    margin-bottom: 12px;
} 
.footer-area__or {
    margin-bottom: 40px;
    text-align: center;
    position: relative; 
}
.footer-area__or span {
    color: var(--font_color);
}
.footer-area__or::after { 
    position: absolute;
    content: "";
    top: 60%;
    background-color: #E2E8F0;
    height: 1px;
    width: 47%;
    right: 0px;
}

.footer-area__or::before { 
    position: absolute;
    content: "";
    top: 60%;
    background-color: #E2E8F0;
    height: 1px;
    width: 47%;
    left: 0px;
}

.footer-area__email .input_group {
    position: relative;
}
.footer-area__email .input_group input {
    width: 100%;
    background: #E2E8F0;
    border: none;
    padding: 18px 20px;
    border-radius: 8px;
    outline: none;
}
.footer-area__email .input_group input::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #94A3B8;
}

.footer-area__email .input_group .download_btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary_color);
    color: var(--white_color);
    padding: 13px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
}

/* FOOTER SECTION END HERE */



/* ALL LISTING PAGE */
.listing_search__box {
    background-color: var(--bg-color);
}
.listing_search__box__area {
    /* border: 1px solid #E2E8F0; */
    padding: 20px 0px;
}

.breadcrumb_section {
    padding: 20px 0px;
}
.breadcrumb_area {}
.breadcrumb_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.breadcrumb_left {}
.breadcrumb_list {}
.breadcrumb_list ul {
    display: flex;
    align-items: center;
}
.breadcrumb_arrow { 
    padding: 0px 10px;
    font-size: 12px;
    color: var(--font_color);
    font-weight: 600;
}
.breadcrumb_list ul li {}
.breadcrumb_list ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--font_color);
}
a.active_breadcrumb {
    color: var(--primary_color) !important;
}
.breadcrumb_right h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--title_color);
}
.breadcrumb_right {}


.listing_body_section {
    background-color: var(--bg-color);
    padding: 55px 0px; 
}


/* accordion start */
.sidebar {
    background: var(--white_color);
    padding: 10px;
    border-radius: 8px;
}
.sidebar_title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.sidebar_left_title {
    width: 210px;
}
.sidebar_left_title p,
.accordion-item-title-left p {
    font-size: 12px;
    font-weight: 400;
    color: var(--font_color);
    padding-top: 5px;
}
.sidebar_left_title h5 {
    font-size: 16px;
    font-weight: 400;
    color: var(--title_color);
    margin: 0;
}
.sidebar_left_title span {
    width: 16px;
    height: 16px;
    background: var(--font_color);
    display: inline-block;
    font-size: 8px;
    color: #fff;
    text-align: center;
    border-radius: 100%;
    line-height: 17px;
    margin: -10px 8px -10px 0px;
}
.accordion_item {
    background: var(--bg-color);
    border-radius: 8px;
    margin-top: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
}
.accordion-item-title-left {
    width: 170px;
}
.accordion-select-item-left {
  width: 100%;  
}
.accordion-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F1F5F9;
    padding: 12px;
    cursor: pointer;
}
.accordion-item-title-left h4 {
    color: var(--title_color);
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}
 
.sideabr_right_title button,
.accordion-item-title-right button {
    background: var(--primary_color);
    color: #fff;
    font-size: 12px;
    border: none;
    border-radius: 22px;
    padding: 6px 14px;  
}
.accordion:after {
    content: '\f078';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-family: "Font Awesome 5 Free";
}
.accordion_active:after {
    content: "\f077";
    font-family: "Font Awesome 5 Free";
}
.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.accordion-select-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-top: 1px solid #E2E8F0;
}
.accordion-select-item.active {
    background: #EFF6FF;
}
.accordion-select-item.active .accordion-select-item-left .checkbox_label span {
    color: var(--primary_color);
}
.accordion-select-item.active .accordion-select-item-right span {
    color: #64748B;
    font-weight: 700;
}
.accordion-select-item-left span {
    font-size: 16px;
    font-weight: 400;
    color: var(--font_color);
    margin-left: 7px;
}
.accordion-select-item-right span {
    color: var(--font_color);
    font-size: 12px;
    font-weight: 400;
}
.checkbox_label {
    display: flex;
    position: relative;
    padding-left: 18px; 
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox_label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 5px;
    left: -8px;
    height: 15px;
    width: 15px;
    border: 3px solid #CBD5E1;
    border-radius: 4px;
}
.checkbox_label input:checked ~ .checkmark {
    border: 3px solid #2196F3;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox_label input:checked ~ .checkmark:after {
    display: block;
}
.checkbox_label .checkmark:after {
    left: 2px;
    top: 2px;
    width: 5px;
    height: 5px;
    background: var(--primary_color);
}
/* accordion end */

/* ALL LISTING PAGE */

/* Modal PAGE */
.modal-dialog {
    max-width: 570px;
}
.modal-content {
    border-radius: 10px !important;
}
.auth_body_inner {
    padding: 0px 32px 32px;
}
.auth_body_inner input {
    background: var(--bg-color);
    width: 100%;
    border: none;
    padding: 16px 20px;
    border-radius: 4px;
    font-weight: 400;
    outline: none;
    border: 1px solid var(--bg-color);
}

.auth_body_inner input::placeholder {
    color: #94A3B8;
    font-weight: 400;
}
.auth_body_inner input:focus {
    border: 1px solid #0671E0 !important;
    background-color: #EEF5FC;
}
.auth_title {
    text-align: center;
    margin-bottom: 25px;
}
.auth_title h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--title_color);
}
.auth_title p {
    color: var(--font_color);
}
.close_btn {
    text-align: end;
    margin: 14px 14px 20px;
}
.close_btn button {
    background: #94A3B8;
    color: #fff;
    border: none;
    width: 20px;
    height: 20px;
    display: inline-block;
    font-size: 12px;
    border-radius: 100%;
}
.auth_btn {
    display: block;
    text-align: center;
    margin-top: 30px;
}
.auth_btn button {
    background: var(--primary_color);
    width: 100%;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 400;
    padding: 14px 0px;
}
.input_box_item .iti { 
    width: 100%; 
}
.password_box {
    position: relative;
}
.password_view_icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.view-icon-one i,
.view-icon-two i {
    color: var(--title_color);
    cursor: pointer
}
.input_box_item {
    margin-bottom: 12px;
}
.auth_or {
    position: relative;
    text-align: center; 
    margin: 30px 0px;
}
.auth_or span {
    color: var(--font_color);
}

.auth_or::after {
    position: absolute;
    content: "";
    width: 37%;
    left: 0;
    height: 1px;
    top: 50%;
    background: #CBD5E1;
}
.auth_or::before {
    position: absolute;
    content: "";
    width: 37%;
    right: 0;
    height: 1px;
    top: 50%;
    background: #CBD5E1;
}
.auth_footer {
    text-align: center;
}
.auth_footer p {
    color: var(--title_color);
    font-weight: 300;
    background-color: var(--bg-color);
    padding: 13px 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: 1px solid #E2E8F0;
}
.auth_footer a {
    font-weight: 400;
}
.auth_social_btn {
    text-align: center;
    margin-bottom: 30px;
}
.auth_social_btn button {
    border: 1px solid #E2E8F0;
    background: var(--bg-color); 
    padding: 12px 0px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
input.error {
    background: #FFF1F0;
}
input.warning {
    background: #FFF8EC;
}
.error i {
    margin-right: 7px;
}
.error p, .warning p  {
    font-size: 12px;
    font-weight: 400;
    margin-top: 7px;
}
.error p {
    color: #E02B1D;
}
.warning p {
    color: #E48900;
}
.warning img,
.error i {
    margin-right: 7px;
}
.forget_password {
    text-align: end;
    margin-top: 12px;
}
.forget_password a {
    color: var(--primary_color);
    font-size: 16px;
    font-weight: 400;
}



/* Modal PAGE */
