body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: 'Poppins', 'Oleo Script';
    font-weight: 300;
    color: #929292;
}

::selection {
    background-color: #0099da;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #000;
}

.mdtp__wrapper {   
    left: 50%;  
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    bottom: auto !important;
}

a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: #000;
    text-decoration: none;
}

a:hover {
    outline: none;
    color: #1d1d1d;
    text-decoration: none;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

p {
    font-size: 16px;
    color: #666666;
    font-weight: 400;
}

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

body.scroll-off {
    overflow: hidden;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}

.section-heading {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 0;
}

.section {
    margin-top: 50px;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

::-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.3);
}

:-moz-placeholder {
    color: rgba(0, 0, 0, 0.3);
}


/*==================== User Dropdown Start ===================*/

.user_dropdown {
    display: inline-block;
    margin-left: 15px;
}

.user_dropdown>a {
    color: #494949;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.user_dropdown img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.user_dropdown .dropdown-menu.show {
    display: block;
    left: auto;
    right: 0;
    width: 160px;
    overflow-x: hidden;
    padding-bottom: 0;
    box-shadow: 1px 1px 8px 0px rgba(60, 64, 67, 0.3);
    border: none;
    border-radius: 2px;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
}

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: 0;
}

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

.user_dropdown ul li {
    display: block;
}

.user_dropdown ul li a {
    color: #494949;
    text-transform: capitalize;
    font-size: 14px;
    padding: 5px 0;
    padding-left: 20px;
    display: block;
    border-bottom: 1px solid #e9ecef;
}

.user_dropdown ul li a i {
    margin-right: 5px;
}

.user_dropdown ul li a:hover {
    background-color: #e9ecef;
}


/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: rgba(255, 255, 255, 0.84);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */


/*==================== Header Start ===================*/

#header {
    height: 155px;
    display: block;
    align-items: center;
    z-index: 10;
    position: relative;
    box-shadow: none;
    background: 0 0 !important;
    background-color: #fff !important;
}

#header.is-sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    height: 155px;
    border-bottom: 1px solid #ededed;
}

#header.is-sticky.awake {
    transform: translateY(0%);
    -webkit-transition: 0.3s all ease-out;
    -o-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
    z-index: 99;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 65px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    height: auto;
    width: auto;
}

#header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 25px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .navbar-expand-lg .navbar-nav .nav-link {
    color: #000000;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    position: relative;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
    color: #FE9F00;

}

#header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before {
    color: #c72026;
    transform: scaleX(1);
}

#header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #c72026;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
    display: none;
}

#header .dropdown-toggle::after {
    border: none;
    /* height: 8px;
  width: 11px; */
    /* background-image: url(../img/drop_arrow.png); */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 3px;
}

#header .extra_nav {
    margin-left: 30px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 10px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .extra_nav .nav-item:list-child {
    margin-right: 0px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.extra_btn {

    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
}

#header .extra_btn:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

#header .sign_up_btn .extra_btn {
    background-color: #c72026;
    color: #fff !important;
    border: 1px solid #c72026;
}

#header .sign_up_btn .extra_btn:hover {
    background-color: #fff;
    color: #c72026 !important;
}

#header .login_btn .extra_btn {
    background-color: #fff;
    color: #c72026 !important;
    border: 1px solid #c72026;
}

#header .login_btn .extra_btn:hover {
    background-color: #c72026;
    color: #fff !important;
}

#header .extra_btn:before {
    display: none;
}

#header .flag_ico {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding-left: 32px;
    padding-right: 5px;
    width: auto;
    font-weight: 400;
    color: #000;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop:hover {
    background-color: #ebebeb;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
    width: 21px;
    height: auto;
    vertical-align: text-bottom;
}

#header .for_mobile {
    display: none;
}

#header .for_desktop {
    display: block;
}

#header .dropdown-item {
    font-weight: 300;
}


/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
    position: relative;
}

.lang_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    min-width: 80px;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 0;
    box-shadow: 1px 1px 8px 0px rgba(60, 64, 67, 0.3);
    font-size: 14px;
}

.lang_country {
    position: relative;
    cursor: pointer;
}

.lang_country {
    position: relative;
    padding: 5px 0px 5px 34px;
    color: #494949;
    border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
    max-width: 19px;
}

.lang_country:last-child {
    border-bottom: 0;
}

.lang_country:hover {
    color: #c72026;
    background-color: #ececec;
}

.langugae_filter:hover .lang_dropdown {
    display: block;
}

.navbar-brand {
    font-size: 0;
}


/*==================== Header End ===================*/



/*==================== Footer login Signup Section ===================*/

.footer-logsign-link {
    position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
}

.footer-logsign-link:before {
    background-color: #df1f26;
    left: 0;
}

.footer-logsign-link:after {
    background-color: #ec2027;
    right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
    height: 150px;
    align-items: center;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10px;
}

.footer-signup-link a {
    background-color: #df1f26;
    padding-left: 0px;
}

.footer-signin-link a {
    background-color: #ec2027;
}

.footer-signin-link a span,
.footer-signup-link a span {
    color: #fff;
    font-size: 36px;
    width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
    color: #fff;
    font-size: 15px;
    width: 100%;
    margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    background-color: #d42027;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
    background-color: #fff;
    color: #d42027;
}


/*==================== Footer login Signup Section ===================*/


/*==================== Footer ===================*/

.footer-block figure {
    margin: 0 0 30px;
    display: inline-block;
    max-width: 219px;
}

.cts_no {
    font-size: 15px;
    padding: 0 80px 0 0;
}

.cts_no p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.copyright {
    padding: 15px 0;
    color: #737777;
    font-size: 14px;
    margin-top: 45px;
}

.newsletter-form .form-control {
    height: 45px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    background: transparent;
    border: 0;
    border-radius: 3px;
    padding-right: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.relative-box {
    position: relative;
    top: 7px;
}

.relative-box .subscribe-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #827e7e;
    height: 45px;
    font-size: 20px;
    background: no-repeat;
}

.relative-box .subscribe-btn:hover {
    color: #d42027;
}

footer h6 {
    font-size: 17px;
    color: #000;
    margin: 0 0 27px;
    position: relative;
}

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

ul.footer-links li {
    margin: 3px 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}

ul.footer-links li a {
    font-size: 14px;
    font-weight: 400;
    color: #4F4F4F;
    text-decoration: none;
}

ul.footer-links li a:hover {
    color: #FE9F00;
}

ul.footer-links.socialize li a {
    position: relative;
    padding-left: 25px;
}

ul.footer-links.socialize li a i {
    position: absolute;
    left: -9px;
    width: 30px;
    text-align: center;
    top: -4px;
    color: #959595;
    font-size: 17px;
}

.footer_wrapper {
    background: #F2FBFF;
    padding: 55px 0 0;
}

footer h6 {
    font-size: 16px;
    margin: 0 0 27px;
    font-weight: 500;
    color: #4F4F4F;
    margin-top: 50px;
}

.subscribe_text {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}


.navbar {
    padding: 25px 0px;
}


#top-button {
    display: inline-block;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#top-button.show {
    opacity: 1;
    visibility: visible;
}

.back_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #fe9f00;
    display: none;
    border: #fe9f00 1px solid;
    z-index: 1;
    border-radius: 4px
}

.back_top span {
    position: relative;
    display: block;
    color: #fff;
    width: 100%;
    height: 100%;
}

.back_top span svg {
    width: 22px;
    height: 21px;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.back_top:hover {
    border-color: #fe9f00;
    color: #fe9f00;
    background-color: #fff;
}

.back_top:hover span {
    color: #dea366;
}


/*==================== Footer ===================*/

#header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 25px;
}

.mobiledrop {
    position: absolute;
    right: 0px;
    top: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
}

/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
    height: 21px;
    width: 21px;
    min-width: 21px;
    margin: 0;
    padding: 0;
    opacity: 1;
    appearance: none;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    background: transparent;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
    border: 2px solid #1295d6;
    background: #1295d6;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
    content: "\f00c";
    height: 100%;
    color: #fff;
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom_checkbox label {
    color: #555 !important;
}


/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom_radio [type="radio"]:checked+label,
.custom_radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom_radio [type="radio"]:checked+label:before,
.custom_radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #b5b5b5;
    border-radius: 100%;
    background: #fff;
}

.custom_radio [type="radio"]:checked+label::after,
.custom_radio [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom_radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom_radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* top bar css start*/
.top_bar {
    background-color: #0099DA;
}

.call_details {
    padding: 16px 0;
}

.call_details ul {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: end;
    align-items: center;
    column-gap: 70px;
}

.call_details ul li {
    list-style: none;
}

.call_details ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #F4F7FE;
    text-decoration: none;
}

.call_details ul li a svg {
    margin-right: 5px;
}


/* top bar css end */

/* header css start */
.logo_img {
    position: absolute;
    background: white;
    width: 216px;
    text-align: center;
    box-shadow: 0 4px 14px rgb(0 0 0 / 12%);
    padding: 33px 0px;
    top: -60px;
}

.login_signup {
    border: 1px solid #000;
    border-radius: 70px;
    padding: 10px 25px;
}

.login_signup a {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    text-decoration: none;
}

.login_signup a:hover {
    color: #FE9F00;
}

.language_drop .form-select {
    height: 50px;
    border-radius: 70px;
    border: 1px solid #000;
}

.language_drop .form-select:focus {
    box-shadow: none;
}

/* header css end */

/* home page css start */

/* hero banner css  start*/
.hero_banner_section {
    padding: 100px 0px 250px;
    background-color: #D3F2FF;
    overflow: hidden;
}

.hero_banner_section::before {
    content: '';
    background-image: url(../img/hero-bottom.svg);
    display: block;
    bottom: 0;
    line-height: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-position: bottom;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-size: contain;
}

.shape_block {
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
}

.shape_block img {
    width: 100%;
}

.block_up {
    position: relative;
    z-index: 1;
}

.best_quality {
    font-size: 30px;
    color: #0099DA;
    font-weight: 700;
    padding-bottom: 20px;
}

.hero_left_inner h1 {
    font-size: 95px;
    color: #424242;
    font-family: Oleo Script;
    position: relative;
}

.hero_left_inner p {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

.btn-primary {
    background-color: #FE9F00;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 600;
    border: 1px solid #fe9f00;
    border-radius: 70px;
    padding: 10px 30px;
}



.btn-secondary {
    color: #000000;
    border-color: #000000;
    background-color: transparent;

    font-size: 20px;

    font-weight: 600;
    border: 1px solid #000000;
    border-radius: 70px;
    padding: 10px 30px;
}

.btn-secondary:hover {
    background-color: #FE9F00;
    color: #FFFFFF;
    border: 1px solid #FE9F00;
}

.book_new button svg {
    margin-left: 10px;
}

.book_new {
    margin-top: 50px;
}

.hero_left_inner {
    position: relative;
}

.bottom_element {
    position: absolute;
    right: 150px;
    bottom: 0px;
}

.right_line {
    position: absolute;
    right: 0;
    top: 50px;
}

.hero_right_inner {
    position: absolute;
    bottom: -102px;
    z-index: 1;
    right: -130px;
}

/* hero banner css end */

/* <!-- Service Section css start --> */
.services_section {
    padding-top: 0;
}

.services_section::before {
    position: absolute;
    content: "";
    background-image: url(../img/service-left.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    left: 0;
    width: 697px;
    height: 942px;
    top: -370px;
}

.services_section::after {
    position: absolute;
    content: "";
    background-image: url(../img/service-right.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    right: 250px;
    top: -220px;
    width: 368px;
    height: 368px;
    z-index: 2;
}

.section_heading h2,
h3 {
    font-size: 60px;
    color: #424242;
    font-weight: 600;
    font-family: 'Oleo Script';
}

.section_heading p {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
    padding: 0 50px;
}

.heading_block {
    max-width: 610px;
    margin: auto;
}

.featured_inner {
    padding: 0 100px;
    position: relative;
}

.mySwiperfeaturedcourses {
    padding: 0 0;
}

.services_inner .swiper-button-next,
.services_inner .swiper-button-prev {
    color: #ffffff;
    font-size: 20px;
    background: #FE9F00;
    border: 1px solid #FE9F00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}



.services_inner .swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

/* .services_inner_block{
    border-radius: 35px;
    box-shadow: 30px 30px 100px rgba(19, 39, 113, 0.08);
    padding: 30px;
} */
.img_icon_box {
    width: 110px;
    height: 110px;
    padding: 18px;
    background-color: rgb(254 159 0 / 10%);
    border-radius: 22px;
}

.services_inner_block h3 {
    font-size: 25px;
    font-weight: 600;
    color: #424242;
    padding: 25px 0px;
    margin: 0;
    font-family: 'Poppins';
}

.services_inner_block p {
    font-size: 20px;
    color: #6A6464;

}

.swiper-slide-active .services_inner_block {
    border-radius: 35px;
    box-shadow: 30px 30px 100px rgba(19, 39, 113, 0.08);
    padding: 30px;
}

.swiper-slide-active .services_inner_block .img_icon_box {
    width: 130px;
    height: 130px;
    padding: 25px;
    background-color: rgb(0 153 218 / 10%);
    border-radius: 22px;
}

.services_inner {
    padding: 40px 20px;
    position: relative;
}

.swiper-slide-active .services_inner_block .img_icon_box img {
    filter: brightness(0.5);
}

.services_inner .swiper-button-next,
.swiper-button-prev {
    top: auto;
    bottom: 100px;
}

.services_inner .swiper-button-prev {
    top: auto;
    bottom: 100px;
}

.services_inner .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: -30px;
}

.services_inner .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: -50px;
}

/* <!-- Service Section css end --> */

/* how it work section css start*/

.how_it_work_section {
    background-image: url(../img/how-it-work-bg.png);
    background-repeat: no-repeat;
    width: 100%;
    background-size: auto;
    padding-bottom: 100px;
}

.process_wrapper .accordion {
    padding: 50px 0px 50px 50px;
    position: relative;
}

.process_wrapper .accordion::before {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    background: linear-gradient(#ffffff, #FE9F00, white);
    top: 0;
    left: 20px;
}

.process_wrapper .accordion-button:not(.collapsed) {
    color: #303030;
    background-color: transparent;
    box-shadow: none;
}

.process_wrapper .accordion-item {
    margin-bottom: 40px;
    border: 0;
    background-color: transparent;
}

.process_wrapper .accordion-button {
    font-size: 18px;
    font-weight: 500;
    color: #303030;
    font-family: 'Poppins';
    padding: 0;
    background-color: transparent;
}

.process_wrapper .accordion-body {
    padding: 15px 0;
}

.process_wrapper .accordion-body p {
    font-size: 14px;
}

.process_wrapper .accordion-body p:last-child {
    margin: 0;
}

.process_wrapper .accordion-button::after {
    display: none;
}

.process_wrapper .accordion-button span {
    content: "";
    height: 32px;
    width: 32px;
    position: absolute;
    background: white;
    border: 1px solid #FE9F00;
    border-radius: 50%;
    left: -44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FE9F00;
    font-size: 18px;
    font-weight: 400;
}

.process_wrapper .accordion-button:not(.collapsed) span {
    background: #FE9F00;
    color: #fff;
}

.process_wrapper .accordion-button:focus {
    box-shadow: none;
}

.how_it_work_right_img {
    position: absolute;
    right: 0;
    top: 0;
}

.btn_block {
    margin-top: 20px;
}

.btn_block button {
    text-transform: uppercase;
}

/* how it work section css end*/
/* what say section css start */
.what_they_say_section::before {
    position: absolute;
    content: "";
    background-image: url(../img/what-say-left.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    left: 0;
    width: 144px;
    height: 359px;
    top: 0px;
    opacity: 0.4;
}

.what_they_say_section::after {
    position: absolute;
    content: "";
    background-image: url(../img/what-say-right.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    right: 0;
    width: 269px;
    height: 535px;
    top: 0px;

}

.client_review_wrapper {
    position: relative;
}

.client_img {
    width: 408px;
    height: 510px;
    background-color: #FFF5E5;
    border-radius: 20px;
    text-align: center;
    padding: 15px;
    position: relative;
}

.client_details {
    padding: 35px;
    border-radius: 15px;
    box-shadow: 1.46px 2.92px 43px rgba(41, 44, 124, 0.1);
    position: absolute;
    bottom: -100px;
    background: white;
    max-width: 495px;
    right: 0;
    border-left: 10px solid #FE9F00;
}

.client_details p {
    margin: 0;
    padding-left: 22px;
    position: relative;
    border-left: 1px solid #BDBDD1;
    color: #383637;
}

.client_block {
    display: flex;
    align-items: center;
    padding-left: 22px;
    justify-content: space-between;
    margin-top: 20px;
}

.client_block h3 {
    color: #383637;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    font-family: 'Poppins';
}

.client_review_wrapper .swiper {
    padding-bottom: 150px;
}

.star_block i {
    color: #FE9F00;
}

.star_block {
    text-align: right;
}

.client_rating h5 {
    color: #383637;
    font-size: 13px;
    font-weight: 500;
}

.client_review_wrapper .swiper-button-next,
.client_review_wrapper .swiper-button-prev {
    color: #FE9F00;
    font-size: 20px;
    background: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    box-shadow: 0 2.92px 43px rgba(41, 44, 124, 0.15);
}

.client_review_wrapper .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 130px;
}

.client_review_wrapper .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: -20px;
}


.client_review_wrapper .swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.client_review_wrapper .swiper-button-next,
.swiper-button-prev {
    bottom: auto;
    top: 35%;
}

/* what say section css end */
/* house_cleaning_section css start */
.house_cleaning_section {
    background-color: #F5FCFF;
}

.house_clean_inner_right {
    padding-left: 80px;
    position: relative;
    margin-top: 30px;
}

.house_clean_inner_right img {
    position: absolute;
    left: 0;
}

.house_clean_inner_right h4 {
    font-size: 22px;
    font-weight: 600;
    color: #424242;
}

.house_clean_btn {
    padding-left: 80px;
    margin-top: 40px;
}

/*house_cleaning_section  css end */

/* newsletter section css start */
.newsletter_inner_block {
    border-radius: 10px;
    background-color: #FFF5E5;
    position: relative;
    padding: 75px 0px;
}

.plus_icon {
    position: absolute;
    content: "";
    right: -100px;
    width: 153px;
    height: 166px;
    bottom: -30px;
    z-index: -1;
}

.newsletter_section {
    padding-top: 90px;
    padding-bottom: 116px;
    overflow: hidden;
}

.newsletter_inner_block::before {
    position: absolute;
    content: "";
    background-image: url(../img/newsletter-left.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    left: 0;
    width: 374px;
    height: 276px;
    opacity: 0.3;
    bottom: 0;
}

.newsletter_inner_block::after {
    position: absolute;
    content: "";
    background-image: url(../img/newsletter-right.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    right: 0;
    width: 264px;
    height: 352px;
    top: 0px;
}

.newsletter_form_block {
    max-width: 655px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.get_text {
    font-weight: 700;
    font-size: 16px;
    color: #FE9F00;
}

.input_block .form-control {
    height: 64px;
    width: 100%;
    border-radius: 70px;
    border: 0;
    text-align: center;
}

.form-control:focus {
    box-shadow: none;
}

.input_block {
    max-width: 485px;
    margin: auto;
    margin-top: 20px;
}

.send_icon {
    width: 70px;
    height: 70px;
    background: #FE9F00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -25px;
    right: -25px;
}

.app_icon {
    display: flex;
    column-gap: 18px;
    margin-top: 25px;
}

.footer-block {
    padding-right: 40px;
}

/* newsletter section css end */



/* footer css start */
.contact_details ul {
    padding: 0;
    margin: 0;
    width: 100%;
}

.contact_details ul li {
    list-style: none;
    padding-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.contact_details ul li a {
    text-decoration: none;
    color: #4F4F4F;
    font-size: 14px;
    font-weight: 400;
}

.contact_details ul li a:hover {
    color: #FE9F00;
}

.contact_details ul li a svg {
    position: absolute;
    left: 0;
    top: 5px;
}

.social_icon {
    display: flex;
    column-gap: 20px;
}

.social_icon a {
    height: 32px;
    width: 32px;
    border: 1px solid #DADADA;
    color: #DADADA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social_icon a:hover {
    background-color: #0099DA;
    border: 1px solid #0099DA;
    color: #fff;
}

.line_img {
    max-width: 100px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #f2fbff;
}

.line_block {
    position: relative;
}

.line_block::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #F6DFB3;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.line_img img {
    opacity: 0.5;
}

/* footer css end */

/* home page css end */


/* signup page css start */
.signup_section .container-fluid {
    padding: 0;
}

.left_block_bg {
    background-color: #D3F2FF;
    padding: 50px 0px;
    height: 100%;
}

.right_form_wrapper_signup {
    padding: 50px 85px;
}

.right_form_wrapper_signup {
    font-size: 20px;
    color: #494949;
    font-weight: 400;
}

.right_form_wrapper_signup .form-control {
    border: 1px solid #E1E1E1;
    height: 60px;
    border-radius: 70px;
    padding: 18px;
}

.icon_input .form-control {
    padding-left: 50px;
}

.icon_input {
    position: relative;
}

.icon_input svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.input_top_space {
    margin-top: 38px;
}

.bottom_space_block {
    margin-bottom: 30px;
    width: 100%;
}

/* .custom-control-input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }
    .additem_check .custom-control-label {
        position: relative;
        margin-bottom: 0;
        vertical-align: top;
        padding-left: 35px;
    }
    .additem_check {
        display: flex;
        column-gap: 20px;
        align-items: center;
    }
    
    .additem_check .custom-control-label::after {
        position: absolute;
        top: 0px;
        left: 0px;
        display: block;
        width: 21px;
        height: 21px;
        content: "";
        background: no-repeat 50% / 50% 50%;
    }
    
    
    .additem_check .custom-control-label::before {
        position: absolute;
        top: 0px;
        left: 0;
        display: block;
        pointer-events: none;
        content: "\f00c";
        background-color: #fff;
        width: 21px;
        height: 21px;
        border: 1px solid #D5D5D5;
        border-radius: 2px;
    }
    .additem_check .custom-control-label.Allow-permissions {   
        color: #333333;   
    }
    .custom-control-input:checked ~ .custom-control-label::before {
        border-color: #fca3b9;
        background-color: #fca3b9;
    }
    .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
        background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e);
    } */
.additem_check input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 20px;
    height: 20px;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
}

.additem_check .form-control+.form-control {
    margin-top: 1em;
}

.additem_check input[type="checkbox"] {
    /* ...existing styles */
    display: grid;
    place-content: center;
}

.additem_check input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #fe9f00;
    background-color: yellow;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.additem_check input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.additem_check input[type="checkbox"]:focus {
    outline: none;
    outline-offset: max(2px, 0.15em);
    box-shadow: none;
}

.additem_check label {
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-size: 18px;
    color: #808080;
}

.btn_signup button {
    width: 100%;
    padding: 14px 30px;
    margin-top: 35px;
}

.login_link p {
    font-size: 18px;
    color: #4D5959;
    font-weight: 400;
}

.login_link {
    margin-top: 40px;
    text-align: center;
}

.login_link p a {
    color: #0099DA;
    font-weight: 500;
    text-decoration: none;
}

.or_block {
    text-align: center;
    margin-top: 30px;
}

.or_block h4 {
    color: #333333;
    font-size: 26px;
    font-weight: 500;
}

.handyman-app {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
}

.handyman-app .btn_apps {
    margin: 0 0 10px;
}

.handyman-app .btn_apps.apps_frist_btn {
    background-color: #EBEEF4;
    color: #3B5998;
}

.btn_apps {
    display: inline-flex;
    align-items: center;
    color: #FE9F00;
    font-size: 16px;
    padding: 13px 20px;
    border-radius: 70px;
    background-color: #FFF6E8;
    text-decoration: none;
}

.btn_apps svg {
    height: 22px;
}

.textB {
    text-align: left;
    padding-left: 15px;
    line-height: 23px;
}

.text {
    font-size: 23px;
    font-weight: 700;
}

.btn_apps:hover {
    color: #FE9F00;
}

.login_option {
    margin-top: 45px;
}

/* signup page css end */

/* login page css start */
.forgot_link {
    display: flex;
}

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

.forgot_link a {
    font-size: 18px;
    font-weight: 400;
    color: #494949;
    text-decoration: none;
}

.forgot_link a:hover {
    color: #FE9F00;
}

.forgot_heading h2 {
    font-size: 24px;
    color: #424242;
    font-weight: 500;
}

.forgot_heading {
    padding-bottom: 30px;
}

/* verify_modal css start */
.verify_modal .modal-content {
    border: 0;
    border-radius: 15px;
}

.verify_modal .btn-close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    opacity: 1;
    background-image: none;
    font-size: 22px;
    color: #fff;
}

.verify_modal .btn-close:focus {
    box-shadow: none;
}

.verify_modal .modal-body {
    padding: 45px;
}

.modal_inner_block {
    text-align: center;
}

.inner_text h5 {
    font-size: 20px;
    color: #424242;
    font-weight: 700;
}

.inner_text {
    margin-top: 35px;
}

.type_digit {
    display: flex;
    column-gap: 15px;
    align-items: center;
    justify-content: center;
}

.type_digit .form-control {
    width: 50px;
    text-align: center;
    border: 0;
    border-bottom: 1px solid rgb(66 66 66 / 60%);
    border-radius: 0;
    height: 50px;
}

.timer_block {
    margin-top: 40px;
}

.timer_block h4 {
    font-size: 18px;
    color: #FE9F00;
    font-weight: 500;
}

.timer_block p a {
    color: #F3B007;
    text-decoration: none;
}

.btn_top_space {
    margin-top: 40px;
}

/* verify_modal css end */


/* login page css end */


/* Privacy and Policy css start */

.inner-page-banner {
    background-image: url('../img/page-banner.png');
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 40px 0 100px;
    position: relative;
}

.inner-page-banner:before {
    position: absolute;
    content: "";
    background-image: url(../img/image0.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    bottom: 0;
    height: 90px;
}

.page-heading {
    font-weight: 700;
    font-size: 62px;
    line-height: 96px;
    color: #424242;
    text-align: center;
    font-family: 'Oleo Script';
}

.side-menu-profile {
    position: relative;
}

.profile-btn-toggle {
    display: none;
}

.profile-item-container {
    background-color: #F8FDFF;
    padding: 40px 40px 50px;
    border-radius: 10px;
}

.profile-item a {
    text-decoration: none;
}

.profile-list {
    list-style: none;
    padding-left: 0;
}

.profile-item-icon {
    margin-right: 24px;
}

.profile-item-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 80px;
    color: #424242;
}

.profile-item .active .profile-item-title {
    color: #FE9F00;
}

.right-side-box {
    background: #F8FDFF;
    padding: 40px;
    border-radius: 10px;
    position: relative;
}
.bg_right_box::after {
    content: "";
    background-image: url(../img/rewardbg.png);
    width: 331px;
    height: 174px;
    position: absolute;
    top: 20px;
    right: 50px;
    opacity: 0.4;
}
.right-box-heading {
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    position: relative;
    padding: 0 0 15px;
    margin-bottom: 84px;
    font-family: 'Poppins';
}

.right-box-heading:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #ECECEC;
    bottom: 0;
}

.right-box-heading:after {
    position: absolute;
    content: "";
    width: 40%;
    height: 2px;
    background-color: #FE9F00;
    bottom: 0;
    left: 0;
}

.box-content {
    margin-top: 40px;
}

.box-content-group h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #171520;
    margin-bottom: 10px;
    font-family: 'Poppins';
}

.box-content-group p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #424242;
    opacity: 0.7;
    font-family: 'Poppins';
}

.box-content-group {
    margin-bottom: 24px;
}

.privacy-policy-section {
    overflow: hidden;
    margin: 50px 0;
    position: relative;
}

.privacy-policy-section:before {
    position: absolute;
    content: "";
    background-image: url('../img/bg-img01.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    width: 125px;
    height: 197px;
}


/* Privacy and Policy css end */



/* help support page css start */
.category_search_box {
    display: flex;
    padding: 5px;
    border: 1px solid rgb(0 153 218 / 20%);
    border-radius: 10px;
    column-gap: 10px;
    align-items: center;
}

.inuput_and_search {
    background-color: #ffffff;
    padding: 5px;
    display: flex;
    flex: 1;
    align-items: center;
}

.input_block_category {
    flex: 1;
}

.inuput_and_search .form-control {
    border: 0;
    font-size: 16px;
    color: #6C757D;
    font-weight: 500;
}

.inuput_and_search .form-select {
    border: 0;
    font-size: 16px;
    color: #6C757D;
    font-weight: 500;
    position: relative;
}

.form-select:focus {
    box-shadow: none;
}

.search_btn .btn-primary {
    background-color: #0099DA;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 600;
    border: 1px solid #0099DA;
    border-radius: 5px;
    padding: 12px 30px;
}

.search_btn .btn-primary:hover {
    background-color: transparent;
    color: #0099DA;

}

.search_bar {
    position: relative;
}

.search_bar::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    background: #677789;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.helpsupport_section .right-box-heading {
    margin-bottom: 30px
}

.help_optiion_block h3 {
    font-size: 15px;
    color: #424242;
    font-weight: 600;
    font-family: 'Poppins';
}

.help_optiion_block p {
    font-size: 13px;
    margin: 0;
}

.help_optiion_block {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5.26px 26px rgba(31, 51, 115, 0.1);
    padding: 15px;
    height: 100%;
}

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

.top_bottom_space {
    margin: 40px 0;
}

.help_inner_wrapper {
    padding: 30px 0;
    border-top: 1px solid #ECECEC;
}

.help_inner_wrapper h3 {
    font-size: 20px;
    color: #FE9F00;
    font-weight: 500;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

.tabs_wrapper .nav-link {
    background-color: #F2FBFF;
    border: 1px solid rgb(0 153 218 / 20%);
    border-radius: 10px;
    color: #424242;
    font-weight: 500;
    font-size: 15px;
    padding: 13px 12px;
}

.tabs_wrapper .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #0099DA;
    background-color: #f2fbff;
}

.tabs_wrapper .nav-pills {
    gap: 15px;
    margin-top: 30px;
}

.tabs_wrapper .tab-content {
    margin-top: 30px;
}

.tabs_inner_body .accordion-button {
    font-size: 18px;
    color: #424242;
    font-weight: 500;
    border-radius: 10px;
    padding: 22px 18px;
}

.tabs_inner_body .accordion-item {
    margin-bottom: 15px;
    border: 1px solid #EEF1F6;
    border-radius: 10px;
    overflow: hidden;
}

.tabs_inner_body .accordion-button:not(.collapsed) {
    color: #0099DA;
    background-color: #ffffff;
    box-shadow: none;
}

.tabs_inner_body .accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
}

.accordion-button::after {
    background-image: none;
    transform: none;
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
}

.bottom_block_inner_box {
    padding: 18px 25px;
    border-radius: 15px;
    border: 1px solid #0099DA;
    background-color: #F2FBFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.bottom_right_side h5 {
    color: #424242;
    font-size: 20px;
    font-weight: 600;
}

.bottom_block_inner_box .btn-primary {
    font-size: 15px;
    font-weight: 500;
    padding: 6px 20px;
}

.bottom_left_side img {
    height: 75px;
}

/* help support page css end */


/* manage profile page css start */
/* file upload start */
.avatar-upload {
    position: relative;
    margin: 0px auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: auto;
    height: auto;
    margin-bottom: 0;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 103px;
    height: 103px;
    position: relative;
    border-radius: 100%;
    border: 5px solid #FE9F00;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.upload_btn_label label {
    padding: 10px 15px;
    background-color: #FFF5E5;
    border-radius: 8px;
    color: #808080;
    font-weight: 400;
    cursor: pointer;
}

/* file upload end */

.Manage_profile .right-box-heading {
    margin-bottom: 70px;
}

.Manage_profile .upload_img_block {
    padding-bottom: 50px;
}

.form_wrapper_inner .form-label {
    font-size: 16px;
    font-weight: 400;
    color: #494949;
    margin-bottom: 13px;
}

.form_wrapper_inner .form-control {
    height: 60px;
    border-radius: 15px;
    border: 1px solid #FFF5E5;
}

.edit_profile_btn .btn-primary {
    border-radius: 10px;
}

.manage_profile_section {
    overflow: hidden;
}

/* manage profile page css end */

/* Language Settings page css start */

.language_settings_inner_block h4 {
    font-size: 20px;
    font-weight: 500;
    color: #171520;
}

/* Checkbox Switch */

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 16px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E6E6E6;
    transition: 0.4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 23px;
    width: 23px;
    left: 0;
    bottom: -4px;
    background-color: #5F5F5F;
    transition: 0.4s;
}

input:checked+.toggle-slider:before {
    background-color: #FE9F00;
}


input:checked+.toggle-slider {
    background-color: #E6E6E6;
}

input:focus+.toggle-slider {
    /* box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.7); */
    outline: none;
}

input:checked+.toggle-slider:before {
    transform: translateX(25px);
}

.toggle-slider.round {
    border-radius: 36px;
}

.toggle-slider.round:before {
    border-radius: 50%;
}

.change_language {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid rgb(0 153 218 / 20%);
    border-radius: 10px;
    background-color: #F2FBFF;
    margin-bottom: 20px;
}

.change_language h5 {
    font-size: 18px;
    color: #424242;
    font-weight: 500;
    margin: 0;

}

/* Language Settings page css end */



/* contact us page css */
.contact_section {
    padding: 70px 0;
}

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

.getintouch ul li {
    display: flex;
    gap: 30px;
    border: 1px solid #e2e2e2;
    padding: 20px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.icon_box {
    height: 50px;
    width: 50px;
    flex: 0 0 50px;
    background: #fe9f00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_box svg {
    height: 20px;
    width: 20px;
}

.getintouch ul li span {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    font-family: sans-serif;
}

.details_contact {
    margin: auto 0;
}

.sendmgs .form-group {
    margin-bottom: 40px;
}

.sendmgs .form-group textarea {
    height: auto;
}

.sendmgs button {
    padding: 9px 45px;
    border-radius: 10px;
}

.sendmgs {
    padding-left: 50px;
}

.sendmgs .form-control {
    height: 60px;
    border-radius: 15px;
    border: 1px solid #FFF5E5;
}

.contact_section .right-box-heading {
    margin-bottom: 50px;
}

/* contact us pagee css end */


/* address book page css start */
.address_wrapper {
    display: flex;
    gap: 25px;
}

.img_sec {
    width: 60px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #FFF2DA;
}

.address_block {
    display: flex;
    gap: 15px;
}

.address_details h5 {
    font-size: 15px;
    color: #424242;
    font-weight: 500;
}

.address_details p {
    font-size: 14px;
    font-weight: 400;
    color: #AAAAAA;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
}

.address_details span {
    font-size: 14px;
    font-weight: 400;
    color: #424242;
    margin-top: 10px;
    display: block;
}

.edit_delete {
    display: flex;
    margin-top: 10px;
    gap: 5px;
}

.edit_delete a {
    font-size: 14px;
    color: #FE9F00;
}

.book_address .right-box-heading {
    margin-bottom: 35px;
}

.address_wrapper {
    display: flex;
    gap: 25px;
    padding-bottom: 35px;
    border-bottom: 1px solid #ECECEC;
    margin-bottom: 35px;
}

.form_heading h3 {
    font-size: 18px;
    font-weight: 500;
    color: #494949;
    font-family: 'Poppins';
    margin-bottom: 25px;
}

.save_btn {
    width: 160px;
}

.right_line_element:after {
    content: "";
    background: #ECECEC;
    width: 1px;
    height: 70%;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
}

/* address book page css end */

/* services details page css start */

.yellow_text {
    color: #FE9F00;
}

.general_cleaning_section::before {
    position: absolute;
    content: "";
    background-image: url(../img/what-say-left.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    left: 0;
    width: 144px;
    height: 359px;
    top: 60px;
    opacity: 0.4;
    z-index: -1;
}

.icon_sec {
    height: 64px;
    width: 64px;
    background-color: #0099DA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services_details {
    margin-top: 25px;
}

.services_details h3 {
    font-size: 22px;
    font-weight: 600;
    color: #424242;
    font-family: 'Poppins';
}

.services_card {
    background-color: #F2FBFF;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgb(0 153 218 / 20%);
    height: 100%;
}

.services_card:hover {
    border: 1px solid #F2FBFF;
}

.services_card::before {
    position: absolute;
    content: "";
    background-image: url(../img/stargroup.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    width: 107px;
    height: 101px;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
}

.services_details ul {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}

.services_details ul li {
    list-style: none;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: rgb(73 73 73 / 80%);
    margin-bottom: 10px;
    padding-left: 20px;
}

.services_details ul li svg {
    content: "";
    left: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.btn-primary.theem_btn {
    border-radius: 10px;
}

.book_now {
    text-align: center;
    margin-top: 40px;
}

/* services details page css end */



/* services page css start */
.general_cleaning_outerbox {
    background: #FFFFFF;
    box-shadow: 10px 10px 40px -10px rgba(19, 39, 113, 0.08);
    border-radius: 35.3598px;
    display: flex;
    padding: 35px;
    justify-content: space-between;
}

.general_cleaning_section {
    position: relative;
    padding-top: 50px;
}

.cleaning_icon {
    margin-bottom: 33px;
    background-color: #FFF7EA;
    width: 109px;
    height: 112px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.general_cleaning_section.whatTheySaySection::before {
    position: absolute;
    content: "";
    background-image: url(../img/what-say-left.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    left: 0;
    width: 144px;
    height: 359px;
    top: 60px;
    opacity: 0.4;
    z-index: -1;
}

.general_cleaning_mainbox {
    background-color: #FFFBF4;
    border-radius: 10px;
    padding: 30px;
}

.general_cleaning_section .right-box-heading {
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: 600;
    color: #FE9F00;
}

.cleaning_icon svg {
    color: #FE9F00;
    border-radius: 20px;
    padding: 15px 10px;
    background-color: #FFF7EA;
    width: 109px;
    height: 112px;
}

/* hover */
.general_cleaning_outerbox:hover .cleaning_icon {
    background-color: #FE9F00;
    color: #fff;
}

.general_cleaning_outerbox:hover .cleaning_icon img {
    filter: brightness(0) invert(1);
}

.general_cleaning_outerbox:hover .cleaning_timeing_title,
.general_cleaning_outerbox:hover .nextSvgBtn {
    color: #FE9F00;
}

.general_cleaning_outerbox:hover .general_next_img svg {
    color: #FFF7EA;
}

.general_cleaning_section .general_next_img svg {
    fill: #fff;
    color: #fff;
}

.general_cleaning_section .nextSvgBtn {
    color: #424242;
}

.general_cleaning_section .general_next_img {
    position: relative;
    z-index: 1;
}

.general_cleaning_section .general_cleaning_outerbox:hover .General_card_img-1 {
    display: none;
}

.general_cleaning_section .general_cleaning_outerbox:hover .General_card_img-2 {
    display: block;
}

.general_cleaning_section .General_card_img-1 {
    display: block;
}

.general_cleaning_section .General_card_img-2 {
    display: none;
}

.general_cleaning_section .General_card_img {
    min-width: 271px;
    width: 100%;
    margin: 15px 0 0 20px;
}

.general_cleaning_section .general_next_img::before {
    position: absolute;
    content: "";
    background: url(../img/star_angel_img.png);
    width: 68px;
    height: 44px;
    top: 5px;
    left: 10px;
    background-repeat: no-repeat;
}

.general_cleaning_section .general_cleaning_outerbox {
    position: relative;
}

.general_cleaning_section .general_cleaning_outerbox::after {
    position: absolute;
    content: "";
    background: url(../img/star_angel_img.png);
    width: 68px;
    height: 44px;
    top: 39px;
    z-index: 0;
    background-repeat: no-repeat;
    right: 30px;
}

.general_cleaning_section .general_cleaning_outerbox::before {
    position: absolute;
    content: "";
    background: url(../img/star-angel-img-tow.png);
    width: 68px;
    height: 44px;
    bottom: 0px;
    background-repeat: no-repeat;
    z-index: 0;
    right: 30px;
}

.general_cleaning_section .cleaning_timeing_title small {
    color: #424242;
    font-size: 30px;
    display: block;
    font-weight: 600;
}

.general_cleaning_section .cleaning_timeing_title {
    font-size: 46px;
    font-weight: 600;
    color: #424242;
    white-space: nowrap;
    display: block;
    margin-top: auto;
}

/*  */
.general_Moving_section .general_Moving_mainbox {
    background: #FFFFFF;
    box-shadow: 10px 10px 40px -10px rgba(19, 39, 113, 0.08);
    border-radius: 35.3598px;
    padding: 20px;
}

.general_Moving_section {
    position: relative;
    margin-top: 40px;
    margin-bottom: 64px;
}

.general_Moving_section .general_Moving_mainbox {
    background-color: #F8FDFF;
    border-radius: 10px;
    padding: 30px;
}

.general_Moving_section .right-box-heading {
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: 600;
    color: #0099DA;
}

.general_Moving_section .right-box-heading::after {
    position: absolute;
    content: "";
    width: 40%;
    height: 2px;
    background-color: #0099DA;
    bottom: 0;
    left: 0;
}

.general_Moving_section .general_Moving_outerbox {
    box-shadow: 10px 10px 40px -10px rgba(19, 39, 113, 0.08);
    border-radius: 35.3598px;
    display: flex;
    justify-content: space-between;
    /*background: url('../img/moving-right-img.png'), #fff;*/
    background: #fff;
    background-position: right;
    background-repeat: no-repeat;
    padding: 30px;
    /*background-size: 130px;*/
    width: 100%;
    height: 100%;
}

.general_Moving_section .Moving_icon {
    color: #0099DA;
    border-radius: 20px;
    padding: 15px 10px;
    background-color: #d7edfa;
    width: 109px;
    height: 112px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Moving_icon img {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

.general_Moving_section .moving_timeing_title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #424242;
    margin: 0;
    padding-bottom: 30px;
    padding-top: 35px;
    word-break: break-all;
    font-family: 'Poppins';
}

.general_Moving_section .moving-continue-btn {
    padding: 8px 30px;
    background-color: #d7edfa;
    border-radius: 10px;
    font-size: 18px;
    color: #0099DA;
    border: 1px solid #0099DA;
    font-weight: 600;
}

.general_Moving_section .moving-continue-btn:hover {
    background-color: #0099DA;
    color: #fff;
    border: 1px solid #0099DA;
}


.deep_timeing_title h3 a,.Spring_timeing_title h3 a,.moving_timeing_title h3 a{
    color: #424242;
}

/*  */
.general_Spring_section .spring-continue-btn:hover {
    background-color: #765AD6;
    color: #fff;
    border: 1px solid #765AD6;
}

.ServiceCleaningImg {
    margin-top: 50px;
}

.ServiceCleaningImg img {
    border-radius: 10px;
}

/*  */
.general_Spring_section .general_Spring_mainbox {
    background-color: #F7F4FF;
    border-radius: 10px;
    padding: 30px;
}

.general_Spring_section .general_Spring_section {
    margin-top: 16px;
    margin-bottom: 41px;
}

.general_Spring_section .general_Spring_mainbox .right-box-heading {
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: 600;
    color: #765AD6;
}

.general_Spring_section .general_Spring_outerbox {
    box-shadow: 10px 10px 40px -10px rgba(19, 39, 113, 0.08);
    border-radius: 35.3598px;
    display: flex;
    justify-content: space-between;
    /*background: url('../img/SpringCleaning-img.png'), #fff;*/
    background: #fff;
    background-position: right;
    background-repeat: no-repeat;
    padding: 30px;
    width: 100%;
    height: 100%;
}

.general_Spring_section .general_Spring_mainbox .right-box-heading::after {
    position: absolute;
    content: "";
    width: 40%;
    height: 2px;
    background-color: #765AD6;
    bottom: 0;
    left: 0;
}

.general_Spring_section .Spring_timeing_title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #424242;
    margin: 0;
    word-break: break-all;
    padding-bottom: 30px;
    font-family: 'Poppins';
    padding-top: 35px;
}

.general_Spring_section .spring-continue-btn {
    padding: 8px 30px;
    background-color: #f7f4ff;
    border-radius: 10px;
    font-size: 18px;
    color: #765AD6;
    border: 1px solid #765AD6;
    font-weight: 600;
}

.general_Spring_section .Spring_icon {
    color: #765AD6;
    border-radius: 20px;
    padding: 15px 10px;
    background-color: #F7F4FF;
    width: 109px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Spring_icon img {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

/*  */
.general_deep_section .deep-continue-btn:hover {
    background-color: #E4C203;
    color: #fff;
    border: 1px solid #E4C203;
}

.general_deep_section .general_deep_mainbox {
    background-color: #FFFBE5;
    border-radius: 10px;
    padding: 30px;
}

.general_deep_section .general_deep_section {
    margin-top: 40px;
    margin-bottom: 80px;
}

.general_deep_section .general_deep_mainbox .right-box-heading {
    margin-bottom: 50px;
    font-size: 22px;
    font-weight: 600;
    color: #E4C203;
}

.general_deep_section .general_deep_outerbox {
    box-shadow: 10px 10px 40px -10px rgba(19, 39, 113, 0.08);
    border-radius: 35.3598px;
    display: flex;
    justify-content: space-between;
    /*background: url('../img/deep-img-bg.png'), #fff;*/
    background: #fff;
    background-position: right;
    background-repeat: no-repeat;
    padding: 30px;
    width: 100%;
    height: 100%;
}

.general_deep_section .general_deep_mainbox .right-box-heading::after {
    position: absolute;
    content: "";
    width: 40%;
    height: 2px;
    background-color: #E4C203;
    bottom: 0;
    left: 0;
}

.general_deep_section .Spring_timeing_title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #424242;
    word-break: break-all;
    margin: 0;
    font-family: 'Poppins';
    padding-bottom: 30px;
    padding-top: 35px;
}

.general_deep_section .deep-continue-btn {
    padding: 8px 30px;
    background-color: #FFFBE5;
    border-radius: 10px;
    font-size: 18px;
    color: #E4C203;
    border: 1px solid #E4C203;
    font-weight: 600;
}

.general_deep_section .deep_icon {
    color: #E4C203;
    border-radius: 20px;
    padding: 20px 10px;
    background-color: #FFFBE5;
    width: 109px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deep_icon img {
    width: 65px;
    height: 65px;
    object-fit: cover
}

.general_deep_section .deep_timeing_title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #424242;
    margin: 0;
    word-break: break-all;
    font-family: 'Poppins';
    padding-bottom: 30px;
    padding-top: 35px;
}

.general_deep_section {
    padding: 50px 0px;
}

.general_Spring_section {
    padding: 50px 0px;
}

/* services page css end */




/* Move in and Moving Out page css start */

.services_card.other_card::before {
    display: none;
}

.services_card.other_card {
    background-image: url(../img/bg-star.png);
}

.services_card.other_card {
    background-image: url(../img/bg-star.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right 5% bottom 50%;
}

/* Move in and Moving Out page css end */


/* booking history page css start */
.heading_filter {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.heading_filter h3 {
    flex: 1;
}

.filter_block {
    display: flex;
    align-items: center;
    max-width: 230px;
    flex: 0 0 230px;
    background: #ffff;
    border: 1px solid rgb(2 16 15 / 10%);
    border-radius: 5px;
    padding: 6px 10px;
    gap: 5px;
    position: relative;
}

.filter_block .form-select {
    flex: 1;
    border: 0;
    background-image: url(../img/drop.png);
    background-size: auto;
    position: relative;
    height: auto;
}

.filter_block::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 18px;
    background-color: #02100F;
    right: 45px;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
}

.booking_wrapper {
    background-color: #F2FBFF;
    border: 1px solid rgb(0 153 218 / 20%);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.booking_img {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0099DA;
    border-radius: 50%;
}

.booking_details {
    display: flex;
    gap: 20px;
}

.time_bookid {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.time_bookid span {
    font-size: 16px;
    font-weight: 500;
    color: #494949;
}

.time_bookid span svg {
    margin-right: 7px;
}

.booking_inner_details h4 {
    font-size: 22px;
    font-weight: 600;
    color: #303030;
}

.booking_status {
    flex: 1;
}

.status_btn {
    font-size: 13px;
    color: #424242;
    width: 119px;
    padding: 5px 5px;
    border-radius: 70px;
    display: block;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
    margin-left: auto;
}

.status_btn.reshedule {
    background-color: #C2E7F8;
}

.status_btn.cancel {
    background-color: rgb(240 67 72 / 10%);
    color: #F04348;
}

.status_btn.completed {
    background-color: #49CC5E;
}

.upcoming {
    color: #FE9F00;
    font-size: 13px;
    text-align: right;
    display: block;
    padding-bottom: 10px;
}


.pagination-search-listing {
    margin: 60px 0 20px;
}

.pagination-search-listing .page-link {
    color: #626262;
    font-size: 12px;
    font-weight: 500;
    background-color: #f8fdff;
    border: 0;
    padding: 5px 12px;
}

.pagination-search-listing .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0099da;
    border-color: #0d6efd;
    padding: 5px 18px;
    border-radius: 8px !important;
    border: 0;
}

.pagination-search-listing .page-item {
    padding: 0px;
    background-color: #f1f1f1;
    border-radius: 12px;
    margin: 0 3px;
}

.pagination .page-item:first-child {
    border-radius: 12px;
    margin-right: 3px;
}

.pagination .page-item:last-child {
    border-radius: 12px;
    margin-left: 3px;
}

.product-pagination ul {
    border: 1px solid #0099DA;
    border-radius: 8px;
    padding: 5px;
    margin: 0;

}

.product-pagination .pagination-outer-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.next_btn {
    background-color: #0099DA;
    color: #fff;
    padding: 7px 15px;
    margin-left: 15px;
    border-radius: 8px;
    border: 1px solid #0099DA;
}

.next_btn:hover {
    background-color: transparent;
    color: #0099DA;
}

.book_history .right-box-heading {
    margin-bottom: 30px;
}

.status_modal .modal-content {
    background-color: #FFFBF4;
    padding: 40px;
}

.modal_tittle h2 {
    font-size: 24px;
    color: #333333;
    font-weight: 500;
    border-bottom: 1px solid #FE9F00;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.form-control {
    height: 60px;
    border-radius: 15px;
    border: 1px solid #FFF5E5;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #FFF5E5;
}

.modal_form label {
    font-size: 16px;
    font-weight: 500;
    color: #494949;
    margin-bottom: 10px;
}

.modal_form button {
    margin-top: 20px;
}

.form-select {
    height: 60px;
    border-radius: 15px;
    border: 1px solid #FFF5E5;
    background-image: url(../img/drop.png);
    background-size: auto;
}

.form-select:focus {
    box-shadow: none;
    border: 1px solid #FFF5E5;
}

.text_aera {
    height: 170px;
}

.check_term .additem_check input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

.check_term label {
    font-weight: 400;
}

.check_term input[type="checkbox"]::before {
    width: 10px;
    height: 7px;
}

.manage_profile_section::before {
    position: absolute;
    content: "";
    background-image: url(../img/what-say-left.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    left: 0;
    width: 144px;
    height: 359px;
    top: 60px;
    opacity: 0.4;
    z-index: -1;
}

.privacy-policy-section::before {
    position: absolute;
    content: "";
    background-image: url(../img/what-say-left.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    left: 0;
    width: 144px;
    height: 359px;
    top: 60px;
    opacity: 0.4;
    z-index: -1;
}

/* booking history page css start */


/* setting page css start */

.heading_toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.top_toggle_block {
    border-bottom: 1px solid #ECECEC;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

.setting_wrapper .right-box-heading {
    margin-bottom: 30px;
}

/* setting page css end */


/* notification page css start */
.notification_wrapper {
    border-radius: 15px;
    padding: 25px;
    background-color: #FFFFFF;
    box-shadow: 0px 20px 40px rgba(223, 237, 244, 0.6);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
    margin-bottom: 20px;
}

.user_profile img {
    height: 56px;
    width: 56px;
    border: 1px solid #FE9F00;
    border-radius: 50%;
    flex: 0 0 56px;
    object-fit: cover;
}

.user_profile {
    flex: 0 0 56px;
}

.user_dis h5 {
    font-size: 18px;
    font-weight: 400;
    color: #424242;
}

.user_dis p {
    font-size: 12px;
    color: #333333;
    font-weight: 400;
}

.notification_wrapper .user_dis p {
    font-size: 16px;
    font-weight: 400;
    color: #383637;
}

.date_time {
    position: absolute;
    right: 25px;
    bottom: 25px;
    font-size: 12px;
    font-weight: 400;
    color: #424242;
}

.user_dis {
    max-width: 415px;
    flex: 0 0 415px;
}

/* notification page css end */




/*  */
/*  */
.form_wrapper_inner .service_input_color {
    height: 60px;
    border-radius: 15px;
    border: 1px solid rgba(0, 153, 218, 0.2);
}

.service_input_color {
    background-color: #F2FBFF;
    border: 1px solid #ced4da;
}

.Booking_services_section .right-box-heading {
    margin-bottom: 40px;
}

.add_img_sec {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #FFF;
    border: 2px solid #FFF2DA;
}

.add_img_sec img {
    max-width: 25px;
    max-height: 25px;
}

.add_on_icon {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 20px;
}


/*  */
.add_on_check {
    margin: 10px 0 15px;
}

.Booking_ser_section .right_line_element::after {
    content: "";
    background: #C2E7F8;
    width: 1px;
    height: 85%;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.Booking_ser_section .right_line_element3::after {
    content: "";
    background: #C2E7F8;
    width: 1px;
    height: 85%;
    position: absolute;
    right: 0;
    top: 0;
}

.Booking_ser_section .add_on_Active h5 {
    color: #FE9F00;
    font-size: 16px;
    font-weight: 600;
}

.add_on_details h5 {
    color: #424242;
    font-size: 16px;
    font-weight: 600;
}

.Booking_ser_section .right_line_element::before,
.Booking_ser_section .right_line_element3::before,
.Booking_ser_section .right_line_element2::before {
    content: "";
    background: #C2E7F8;
    width: 85%;
    height: 1px;
    position: absolute;
    right: 0px;
    left: 25px;
    bottom: -1px;
}

.Booking_ser_section .add_wrapper {
    background: #F2FBFF;
    border: 2px solid rgba(0, 153, 218, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.position-relative {
    position: relative !important;
}

.Booking_ser_section .add_on_check .custom-controlar-label.add-Allow-permissions {
    font-size: 15px;
    padding-left: 40px;
    width: 100%;
    position: relative;
}

.custom-checkbox .custom-controlar-input:checked~.custom-controlar-label {
    color: #FE9F00;
    font-size: 15px;
    font-weight: 400;
}

.add-Allow-permissions {
    display: flex;
    justify-content: space-between;
}

.Booking_ser_section .add_on_check .custom-controlar-label::before {
    position: absolute;
    top: 0px;
    left: 0;
    display: block;
    pointer-events: none;
    content: "";
    background-color: #fff;
    width: 24px;
    height: 24px;
    border: 1px solid #DEDEDE;
    border-radius: 4px;
}

.Booking_ser_section .add_on_check {
    padding-right: 10px;
}

.Booking_ser_section .add_on_block.right_line_element::after {
    content: "";
    background: #C2E7F8;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 28px;
}

.Booking_ser_section .custom-checkbox .custom-controlar-input:checked~.custom-controlar-label .check_right_span {
    color: #FE9F00;
    font-weight: 500;
}

.Booking_ser_section .custom-controlar-input:checked~.custom-controlar-label::before {
    border-color: #DEDEDE;
    background-color: #FE9F00;
}

.Booking_ser_section .add_on_check .custom-controlar-label::after {
    position: absolute;
    top: 0px;
    left: -1px;
    display: block;
    width: 25px;
    height: 24px;
    content: "";
    background: no-repeat 60% / 60% 60%;
}

.Booking_ser_section .custom-checkbox .custom-controlar-input:checked~.custom-controlar-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.Booking_ser_section .custom-controlar-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.Booking_ser_section .form-check-input[type="checkbox"] {
    border-radius: .25em;
}

.Booking_ser_section .form-check-label.custom-controlar-label.add-Allow-permissions .check_right_span {
    font-weight: 500;
}

.Booking_ser_section .add_image_clean {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #FFF;
    border: 2px solid rgba(0, 153, 218, 0.2);
    ;
}

.Booking_ser_section .edit_profile_btn {
    text-align: center;
    margin-top: 40px;
}

.Booking_ser_section .btn-primary {
    padding: 10px 45px;
}

.Booking_ser_section {
    margin-bottom: 69px;
}

.Booking_ser_section .right-box-heading {
    margin-bottom: 40px;
}

/*  */
/*  */

.add-box-heading {
    font-size: 20px;
    font-weight: 500;
    font-size: 22px;
    padding: 0 0 15px;
    font-family: 'Poppins';
}

.discountPayment {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.discountTitlePayment {
    font-size: 18px;
    color: #494949;
    font-weight: 400;
    margin: 0;
}

.discountSubTitle {
    font-size: 20px;
    font-weight: 600;
    color: #393F42;
    margin: 0;
}

.ClaimRewardBox .discountSubTitle {
    font-size: 14px;
    font-weight: 600;
    color: #424242;
    margin: 0;
}

.ClaimRewardBox {
    background: #FFF;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 153, 218, 0.2);
    margin-bottom: 30px;
}

.payment_services_section .additem_check input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.ClaimRewardBox label {
    display: flex;
    align-items: center;
    column-gap: 15px;
    font-size: 14px;
    color: #808080;
}

.ApplyPromocodeBox {
    border-bottom: 1px solid #ECECEC;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.ContinueToPayBtn {
    width: 100%;
    margin-top: 40px;
}

.ContinueToPayBtn .btn-primary {
    width: 100%;
}

/*  */
.SelectPaymentMethodBlock {
    margin-top: 30px;
    margin-bottom: 47px;
}

.SelectPaymentMethodBlock .right-box-heading {
    margin-bottom: 40px;
}

.radio-master-box {
    display: flex;
    gap: 15px;
}

.radio-master-box img {
    width: 48px;
    height: 30px;
}

.payment-card-title h5 {
    color: #060518;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.payment-card-title p {
    color: #3C3E56;
    font-size: 14px;
    margin: 0;
}

.SelectPaymentMethodCard .form-check-input:checked {
    background-color: #fe9f00;
    border-color: #fe9f00;
}

.SelectPaymentMethodCard .form-check .form-check-input {
    float: left;
    margin-left: 10px;
    margin-right: 15px;
    margin-top: 10px;
}

.form-check-input:focus {
    border-color: #fe9f00;
    outline: 0;
    box-shadow: none;
}

/* .SelectPaymentMethodCard .form-check-input:checked + .select_payment_card {
    background-color: #FDEFD9;
} */
.SelectPaymentMethodCard {
    margin: 0px 0 0;
    border-bottom: 1px solid #ECECEC;
    padding-bottom: 30px;
    position: relative;
}

.addCardMaster {
    display: flex;
    justify-content: space-between;
    margin: 25px 0 17px;
}

.addCardMaster img {
    width: 44px;
    height: 26px;
}

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

.addCardMaster h5 {
    color: #494949;
    font-size: 18px;
    font-weight: 500;
}

.payment_services_section .right-box-heading {
    font-weight: 500;
    font-size: 22px;
    line-height: 33px;
    position: relative;
    padding: 0 0 15px;
    margin-bottom: 40px;
    font-family: 'Poppins';
}

.Payment-method-box {
    background-color: #F3F7F9;
    padding: 20px 10px;
    border-radius: 18px;
}

.SelectPaymentMethodCard .active {
    background-color: #FDEFD9;
    border-radius: 18px;
}

/*  */

.SelectPaymentMethodCard input[type="redio"]::before {
    content: "\f00c";
    height: 100%;
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    border-radius: 0;
    background-color: #FF6000;
}

/* radio button */
input[type="radio"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: #FF6000;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid #4444;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}


.SelectPaymentMethodCard input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #fff;
    background-image: none !important;
}

.SelectPaymentMethodCard input[type="radio"]:checked::before {
    transform: scale(1);
    background-color: #fff;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.SelectPaymentMethodCard .form-check-input:checked[type=radio] {
    background-image: none;
}

/* radio button */

/* tracking page css start */
.tracking_section .right-side-box {
    padding: 30px;

}

a.btn.btn-primary.btn_cancel {
    border-radius: 5px;
    font-weight: 400;
    padding: 5px 20px;
    font-size: 15px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.user_img_pro img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.user_img_pro {
    overflow: hidden;
}

.tracking_wrapper ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.tracking_wrapper ul li {
    position: relative;
    list-style: none;
    padding: 0 0 70px 50px;
    display: flex;
    gap: 20px;
}

.tracking_wrapper ul li:last-child {
    padding-bottom: 0;
}

.tracking_wrapper ul li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 15px;
    height: 100%;
    width: 1px;
    border: 1px dashed #B1B1B1;
    top: 15px;
}

.check_stutas {
    width: 30px;
    height: 30px;
    background-color: #F7B030;
    position: absolute;
    left: 0px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    top: 15px;
}

.tracking_wrapper ul li.active::before {
    border: 1px dashed #D49525;
}

.check_stutas.gray_check {
    background: #E5E5E5;
    color: #E5E5E5;
}

.icon_block {
    width: 55px;
    flex: 0 0 55px;
}

.tracking_details h5 {
    font-size: 16px;
    font-weight: 500;
    color: #424242;
    margin: 0;
}

.tracking_details p {
    font-size: 13px;
    font-weight: 400;
    color: #AAAAAA;
    margin: 0;
}

.tracking_wrapper ul li span {
    font-size: 13px;
    font-weight: 400;
    color: #424242;
    position: absolute;
    top: 0;
    right: 0;
}

.map_wrapper {
    border-radius: 10px;
    border: 1px solid rgb(0 153 218 / 20%);
    overflow: hidden;
}

/* tracking page css end */

/* payment success modal css start */
.payment_modal .modal-content {
    padding: 40px;
}

.payment_wrapper {
    text-align: center;
}

.payment_wrapper h2 {
    font-size: 70px;
    color: #FE9F00;
    font-family: 'Oleo Script';
    font-weight: 700;
}

.payment_wrapper p {
    font-size: 16px;
    font-weight: 400;
    color: #4F4F4F;
}

.payment_wrapper img {
    margin: 15px 0;
}

.payment_done_btn {
    margin-top: 30px;
}

.payment_done_btn .btn-primary {
    border-radius: 7px;
    width: 330px;
}

/* payment seccess modal css end */


/* 20-04-2023 css start */
.address_wrapper .form-check-input {
    position: absolute;
    left: 0;
    opacity: 0;
}

.address_wrapper .form-check-input:checked+label {
    background-color: #0099da08;
    border-radius: 10px;
    border: 1px solid #0099da;
}

.custom_radio_block .form-check {
    padding: 15px;
    border: 1px solid transparent;
}

.address_wrapper.SelectPaymentMethodCard.custom_radio_block {
    display: block;
}

.add_btn_block {
    margin-top: 30px;
    text-align: center;
}

.add_btn_block a {
    width: 100%;
    align-items: center;
    display: block;
    border: 1px solid #0099da;
    border-radius: 10px;
    padding: 25px 15px;
    font-size: 50px;
    color: #0099daad;
}

.address_model .modal-header {
    border: 0;
    padding: 45px 0 0 45px;
}

.address_btn_block .btn-primary {
    border-radius: 10px;
}

/* 20-04-2023 css end */

/* 21-04-2023 css start */
.address_card {
    background-color: #F2FBFF;
    border: 1px solid rgb(0 153 218 / 20%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pricce_infromaton {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.prise_type h3 {
    font-size: 18px;
    font-weight: 500;
    color: #303030;
    font-family: 'Poppins';
}

.prise_type {
    text-align: center;
}

.prise_type span {
    font-size: 18px;
    font-weight: 500;
    color: #f7b030;
}

.prise_block {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 7px;
}

.addons_block .add_on_icon {
    margin-bottom: 10px;
}

.addone_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: #F2FBFF;
    border: 1px solid rgb(0 153 218 / 20%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.addone_wrapper .addons_block {
    width: 47%;
    flex: 0 0 47%;
    border-bottom: 1px solid #C2E7F8;
    padding-bottom: 15px;
}

.addone_wrapper .addons_block:last-child {
    border: 0;

}

.prise_block .check_right_span {
    font-weight: 500;
}

/* 21-04-2023 css end */


span.input-addon-icon {
    position: absolute;
    right: 15px;
    top: 20px;
    z-index: 9;
}

/* 03-05-2023 css start */
.apply_input::placeholder {
    color: #808080;
    font-weight: 400;
}

/* 03-05-2023 css end */


/* 19-05-2023 css start */
.icon_button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background-color: #0099da;
    border: none;
    outline: none;
    border-radius: 50%;
    flex: 0 0 40px;
    margin-right: 0;
}

.icon_button:hover {
    background-color: #FE9F00;
    color: #fff;
}

.icon_button:hover .counter_span {
    background-color: #0099da;
}

.counter_span {
    position: absolute;
    background-color: #fe9f00;
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: 0px;
    font-weight: 500;
}

.bell_icon {
    flex: 0 0 56px;
    height: 56px;
    width: 56px;
    background: #fe9f00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 50%;
    color: white;
}

/* 19-05-2023 css end */

.mdtp__minute_holder .mdtp__digit {
    pointer-events: none;
    opacity: 0.5;
}

.mdtp__minute_holder .mdtp__digit.rotate-90.marker {
    pointer-events: all;
    opacity: 1;
}

.mdtp__minute_holder .mdtp__digit.rotate-270.marker {
    pointer-events: all;
    opacity: 1;
}


/* subscription plan page css start */

.subscription_plan_wrapper .Payment-method-box {
    background: #F2FBFF url(../img/stargroup.png);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgb(0 153 218 / 20%);
    background-repeat: no-repeat;
    background-position: center top 12px;
    position: relative;
    margin: 0;
}

.subscription_plan_wrapper.SelectPaymentMethodCard .active {
    background: #FDEFD9 url(../img/activeplan.png) !important;
    border: 1px solid #FDEFD9;
    background-repeat: no-repeat !important;
    background-position: center top 12px !important;
    position: relative;
}

.plan_select {
    max-width: 310px;
    flex: 0 0 310px;
}

.icon_box_plan {
    width: 63px;
    height: 63px;
    background-color: #D3F2FF;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon_box_plan img {
    width: 41px;
    height: 41px;
}

.subscription_plan_wrapper.SelectPaymentMethodCard .form-check .form-check-input {
    position: absolute;
    right: 0px;
    top: 10px;
    height: 26px;
    width: 26px;
    border: 2px solid #0099DA;
}

.plan_text {
    font-size: 16px;
    font-weight: 500;
    color: #464646;
    margin-top: 18px;
    display: block;
}

.subscription_plan_wrapper.SelectPaymentMethodCard .active .icon_box_plan {
    background-color: #FE9F00;
}

.subscription_plan_wrapper.SelectPaymentMethodCard .active .icon_box_plan img {
    filter: brightness(0) invert(1);
}

.subscription_plan_wrapper.SelectPaymentMethodCard .form-check-input:checked {
    border-color: #fe9f00 !important;
}

.subscription_plan_wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border: 0;
    padding: 0;
}


.select_month_year label {
    font-size: 16px;
    font-weight: 500;
    color: #494949;
    margin-bottom: 13px;
}

.select_option label {
    margin: 0;
    color: #ABABAB;
}

.select_option .btn-secondary {
    color: #ABABAB;
    border-color: #000000;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ABABAB;
    border-radius: 8px;
    padding: 13px 12px;
}

.select_option .btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fff;
    background-color: #fe9f00;
    border-color: #fe9f00;
}

.select_option .btn-check+.btn:hover {
    color: var(--bs-btn-color);
    background-color: #fe9f00;
    border-color: #fe9f00;
}

.select_option {
    display: flex;
    gap: 18px;
    align-items: center;
}

.aircon_wrapper {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aircon_inner_block {
    background-color: #F2FBFF;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    gap: 16px;
    border: 1px solid rgb(0 153 218 / 20%);
}

.aircon_img {
    height: 56px;
    width: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D3F2FF;
    border-radius: 10px;
}

.aircon_details p {
    font-size: 15px;
    color: #494949;
    font-weight: 400;
    margin: 0;
}

.date_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.all_side_space {
    padding: 40px 28px;
}

.bottom_radio .select_option .btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #fe9f00;
    background-color: #F9F4E5;
    border-color: #fe9f00;
}

.bottom_radio .select_option .btn-check+.btn:hover {
    color: #fe9f00;
    background-color: #F9F4E5;
    border-color: #fe9f00;
}

.bottom_radio {
    margin: 30px 0;
}

.text_area_block {
    padding-bottom: 30px;
    border-bottom: 1px solid #ECECEC;
}
.text_area_block .form-control {
    height: 260px;   
}
.prise_top_space {
    margin-top: 30px;
}

.form_wrapper_inner .form-label.label_custom {
    font-size: 16px;
    font-weight: 500;
    color: #494949;
    margin-bottom: 13px;
}

.aircon_details h5 {
    font-size: 16px;
    color: #494949;
    font-weight: 600;
}

/* subscription plan page css end */

/* 20-06-2023 css start */
.bg_round {
    background-color: #93d7f4;
}

.current_active {
    background-color: #FE9F00;
    color: #FFFFFF;
}

.swal2-container .swal2-popup {
    background: #ffffff;
}

.swal2-container .swal2-icon.swal2-warning {
    border-color: #0099da;
    color: #0099da;
}

.swal2-container .swal2-title {
    color: #424242;
}

.swal2-container .swal2-styled.swal2-confirm {
    background-color: #FE9F00 !important;
}

.view_plan {
    background-color: #93d7f4;
}

.all_subscription {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    max-height: 400px;
    overflow: auto;
}

.all_subscription::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.all_subscription::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 5px;
}

.all_subscription::-webkit-scrollbar-track {
    background: transparent;
}

.all_subscription .aircon_inner_block {
    width: 48%;
}

/* 20-06-2023 css end */

/* 21-06-2023 css start */
.scroll_bar_right {
    max-height: 500px;
    overflow: auto;
}

.scroll_bar_right::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.scroll_bar_right::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 5px;
}

.scroll_bar_right::-webkit-scrollbar-track {
    background: transparent;
}


/* rewards point page css start */
.user_block {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.user_profile_block {
    display: flex;
    gap: 26px;
}

.user_profile_img {
    max-width: 94px;
    height: 94px;
    min-width: 94px;
    flex: 0 0 94px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fe9f00;
}

.user_details_block h2 {
    color: #424242;
    font-size: 22px;
    font-weight: 600;

}

.user_details_block span {
    color: #FE9F00;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.user_details_block h3 {
    color:#FE9F00;
    font-size: 22px; 
    font-weight: 700;
    font-family: 'Poppins';  
    line-height: 30px; 
}
.redeem_btn {
    display: flex;
}
.redeem_btn .btn-primary {   
    border-radius: 10px;
    font-size: 18px;
    margin-top: auto;
}
.top_space_section{
    margin-top: 30px;
}

.coin_history_wrapper ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
}
.coin_history_wrapper li{
    list-style: none;
    display: flex;
   justify-content: space-between;
   background-color: #FFFFFF;
   border-radius: 15px;
   padding: 23px 19px;
   box-shadow: 0px 20px 40px rgba(223, 237, 244, 0.6);
}
.coin_left_box{
    display: flex;
    gap: 15px;
}
.coin_type{
    max-width: 57px;
    width: 57px;
    height: 57px;
    flex:0 0 57px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FE9F00;
    background-color: #F9F4E5;

}
.coin_details h3{
    color: #424242;
    font-size: 18px;
    font-family:'Poppins';
}
.time_date{
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #494949;
    font-weight: 500;
}
li.coin_left_box_payment .coin_type{    
    border: 1px solid #0099DA;
    background-color: #F8FDFF;
}
.coin_right_box{
    display: flex;
    align-items: center;
    gap: 10px;
}
.coin_right_box span{
    font-size: 26px;
    font-weight: bold;
    color: #FE9F00;
}
.coin_details h3{
  font-size: 18px;
  font-weight: 400;
  color: #424242;
}

li.coin_left_box_payment .coin_right_box {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: end;
}

 li.coin_left_box_payment .coin_right_box span{
    font-size: 14px;
    color: #494949;
    font-weight: 500;
}
li.coin_left_box_payment .coin_right_box h4{
    font-size: 26px;
    font-weight: bold;
    color: #0099DA;
}
.earn_wrapper {
    background: #FE9F00 url('../img/earn-bg.png');
    margin: 35px 0;
    padding: 20px;
    border-radius: 15px;
    background-position: right;
    background-repeat: no-repeat;
    max-height: 163px;
}

.eran_inner span {
    background-color: #ffffff63;
    color: #fff;
    padding: 5px 10px;
    border-radius: 70px;
    font-size: 10px;
    font-weight: bold;
}
.eran_inner{
    max-width: 308px;       
}
.eran_inner h2{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    font-family: 'Oleo Script';
    margin-top: 15px;
    margin-bottom: 0;
}
/* rewards point page css end */

/* 23-06-2023 css start */
.discount_lbl .discountTitlePayment {    
    max-width: 50%;
}

.discount_lbl .discountTitlePayment i {
    font-size: 16px;
    margin-right: 5px;
    color: #fe9f00;
}
.reward_discountPayment{
    font-size: 18px;
    color: #494949;
    font-weight: 400;
    margin: 0;
    max-width: 50%;

}
span.reward_discountTitle{
    font-size: 20px;
    font-weight: 600;
    color: #393F42;   
    margin: 0;
}
span.reward_discountPayment i{
    font-size: 16px;
    margin-right: 5px;
    color: #fe9f00;
}
.apply_remove_btn {
    position: absolute;
    top: 0;
    height: 60px;
    border-radius: 6px;
    padding: 0 15px;
    text-transform: capitalize;
    right: 0;
    font-size: 17px;
    width: 100px;
}
.apply_input{
    padding-right: 105px;
}
.remove_btn {
    background: #dc3545;
    border-color: #dc3545;
}

/* 23-06-2023 css end */


/* 07-07-2023 css start */
.iti {  
    display: block !important;
}
.iti__selected-flag {  
    padding: 0 7px 0 20px !important;
}
.iti--separate-dial-code .iti__selected-flag {
    background-color:transparent !important;
}
label.error{
    position: relative !important;
}

/* 07-07-2023 css end */

/* 27-07-2023 css start */
.end_date_input {
    margin-bottom: 25px;
}
/* 27-07-2023 css end */


/* 10-08-2023 css start */
.payment_custom_modal .form-control {
    padding: 20px 15px;
}
/* 10-08-2023 css end */


/* 06-09-2023 css start */


.table_wrapper{
    margin:40px 0;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgb(0 153 218 / 20%);
    border-bottom: 0;
   
}
.table_wrapper .table{
    margin: 0;
}
.table_wrapper .table th {
background-color: #0099DA;
color: #fff;
font-size: 18px;
padding: 15px 19px;
border-right:1px solid#C6E9F8;
}
.table_wrapper .table td {
    padding: 12px 19px;
    color: rgba(66, 66, 66, 0.70); 
    font-size: 16px;    
    font-weight: 400;
    border-right: 1px solid #C6E9F8;
    border-color: #C6E9F8;
}
.table_wrapper .table tr td:last-child {
    border-right: 0;
}
.user_details_block span.text_color{
    color: #424242;
}



/* 06-09-2023 css end */





label.book_itmes_block {
    width: 100%;
    padding: 30px 0;
}
.select_peet_block {
    width: 100%;
    border: 1px solid #0099da33;
    padding: 20px;
    border-radius: 10px;
}
.item_title {
    color: #424242;
    font-size: 18px;
    font-weight: 500;
    padding-left: 5px;
}
.select_peet_block svg {
    width: 25px;
    height: 25px;
}


/* .book_itmes_track input[type="checkbox"]:checked ~ .select_peet_block{
    background-color: #FEFBF7;
    border: 1px solid #FCE1B3 !important;
} */
.book_itmes_track input{
    opacity: 0;
}
.cat_img {
    width: 30px;
    height: 30px;
}




label.book_itmes_block {
    width: 100%;
    padding: 30px 0;
}
.select_peet_block {
    width: 100%;
    border: 1px solid #0099da33;
    padding: 20px;
    border-radius: 10px;
}
.item_title {
    color: #424242;
    font-size: 18px;
    font-weight: 500;
    padding-left: 5px;
}
.select_peet_block svg {
    width: 25px;
    height: 25px;
}


.book_itmes_track input[type="checkbox"]:checked ~ .select_peet_block{
    background-color: #FEFBF7;
    border: 1px solid #FCE1B3 !important;
}
.book_itmes_track input{
    opacity: 0;
}
.cat_img,.cat_img2,.dog_img,.dog_img2 {
    width: 30px;
    height: 30px;
}
.cat_img2 {
    display: none;
}
.book_itmes_track input[type="checkbox"]:checked ~ .select_peet_block .cat_img2{
    display: inline-block !important;
}
.book_itmes_track input[type="checkbox"]:checked ~ .select_peet_block .cat_img{
    display: none !important;
}

.dog_img {
    display: none;
}

.book_itmes_track input[type="checkbox"]:checked ~ .select_peet_block .dog_img{
    display: inline-block !important;
}


.book_itmes_track input[type="checkbox"]:checked ~ .select_peet_block .dog_img2{
    display: none !important;
}



/* ======================== Blog ============================== */

.blog-wrapper {
    background-color: #f8f9fa;
    padding: 45px 0px 60px;
}
  
.blog-entry {
    border-bottom: 0;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    /*align-items: flex-start;*/
    height: 100%;
}
  .blogListMainImage {
    margin: 28px 0px 16px;
    display: block;
}
.load-more_btnBox {
    text-align: center;
}
.more_btn {
    border-radius: 3.822px;
    border: 1px solid #FE9F00;
    background: #FFF;
    color: #FE9F00;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 22px;
    display: inline-block;
}
.more_btn:hover {
    border: 1px solid #FE9F00;
    background: #FE9F00;
    color: #fff;
}
  
  .page-header .breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
    padding-bottom: 30px;
    margin-top: -25px;
  }
  
  .page-header .breadcrumb li,
  .page-header .breadcrumb a,
  .page-header .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
  }
  
  .blogTitle{
      color: #263C9F;
      font-size: 27px;
      font-weight: 700;
      margin-bottom:15px;
  }
  .blogTitle a:hover{
    color:#FE9F00;
  }
  .meta-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}
.meta-wrap span {
    display: flex;
    gap: 8px;
    color: #BFBFBF;
    font-size: 14px;
    font-weight: 500;
}
.blogListMainImage {
    max-height: 360px;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    width: 100%;
}
a.blogListMainImage:hover img{
    transform: scale(1.3);
}

.blogListMainImage img{
    width: 100%;
    height: 100%;
    transition-duration: 0.5s;
}
  /*.blog-sidebar-img {
    display: block;
    height: 60px;
    width: 80px;
    background-position: center;
    background-size: cover;
  }*/
  
  /*.blog-sidebar-text {
    width: calc(100% - 60px);
  }
  */
  .blog-entry .blog-text .meta-wrap .meta span,
  .blog-entry .blog-text .meta-wrap .meta span a {
    font-size: 14px;
    margin: 0 10px 0 0;
    color: #908f8f;
  }
  
  .btn-custom {
    font-size: 15px;
    color: #ec2027;
  }
  
  .btn-custom i {
    vertical-align: middle;
    padding-left: 5px;
  }
  
  .blog-disc {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
  
  .blog-entry .blog-text h3 a {
    font-size: 18px;
  }
  
  .blog-sidebar {
    display: block;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.03);
    padding: 10px 15px;
    border: 1px solid #ededed;
  }
  .blog_sidebar_block_heading {
    color: #000;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 0px;
}
.tag_cloud {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.file_icon svg {
    width: 21px;
    height: 21px;
}

  
  /* .blog_sidebar_block_heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  
  .blog_sidebar_block_heading:after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #ededed;
    position: absolute;
    bottom: 0;
    left: 0;
  } */
  
  .blog-side-heading {
    font-size: 15px;
  }
  
  .blog-side-heading a {
    font-size: 14px;
    font-weight: 400;
  }
  
  .blog-side-meta,
  .blog-side-meta a {
    font-size: 13px;
    margin: 0 10px 0 0;
    color: #908f8f;
  }
  
  .blog-wrapper hr {
    border-top: 1px solid #ededed;
  }
  
  .blog_sidebar_normal_list ul {
    padding: 0;
    margin: 0;
  }
  
  .blog_sidebar_normal_list ul li {
    list-style: none;
  }
  
  .blog_sidebar_block {
    padding-bottom: 1rem;
    border-bottom: 1px solid #EDEDED;
  }
  .blog_sidebar_block:last-child {
    padding-bottom: 0rem;
    border-bottom: none;
  }
  
  .categoryBlogClass {
    display: flex;
    position: relative;
    margin-bottom: 14px;
    padding-bottom: 15px;
    border-bottom: 1px solid #EDEDED;
    color: #636363;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
    line-height: normal;
    justify-content: space-between;
}
.file_icon {
    display: flex;
    align-items: center;
    gap: 10px;
}
  .categoryBlogClass:hover {
    color:#FE9F00;
  }
  .blog_sidebar_normal_list {
    margin-top: 25px;
}
  
  .categoryBlogClass i {
    font-size: 10px;
    margin-right: 7px;
    vertical-align: initial;
  }
  
  .blog-archives ul li a {
    color: #666666;
    margin-bottom: 5px;
    font-size: 13px;
  }
  
  /* .blog-archives > li {
    margin-bottom: 10px;
    padding-bottom: 10px;
  } */
  
  /* .blog-archives > li > a.categoryBlogClass {
    margin-bottom: 3px;
  } */
  .categoryBlogClass span {
    display: flex;
    align-items: center;
    gap: 12px;
}
  
  .blog-archives > li:last-child {
    border-bottom: none;
  }
  
  .findTags {
      background: #FFF;
      color: #FE9F00;
      font-size: 14px;
      font-weight: 500;
      display: inline-block;
      padding: 5px 14px;
      border-radius: 4px;
      border: 1px solid #FE9F00;
      line-height: normal;
    }

    .findTags:hover {
        background-color: #FE9F00;
        border-color: #FE9F00;
        color: #fff;
    }
  
  .blog-sidebar-trigger {
    display: none;
  }
  
  .blog-sidebar-trigger {
    font-size: 18px;
    font-weight: 400;
    background-color: #efefef;
    padding: 7px 0;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
  }
  
  .times-icon,
  .bar-icon {
    font-size: 22px;
  }
  
  .times-icon,
  .open .bar-icon {
    display: none;
  }
  .bar-icon,
  .open .times-icon {
    display: block;
  }
  
  .single-post-meta span, 
  .single-post-meta span a {
    margin-right: 11px;
    color: #908f8f;
  }
  
  .single_blog_heading {
    font-size: 30px;
  }
  
  .blog-post-content p {
    margin-bottom: 0;
  }
  .blogListMainImage img{
      height:100%;
      width: 100%;
      height: 400;
      object-fit: cover;
  
  }

  .form_inputBox .form-control.dark_input {
    padding: 8px 40px 8px 15px;
    border-radius: 6px;
    border: 1px solid #DADADA;
    background: #FFF;
    color: #7E7E7E;
    font-size: 16px;
    font-weight: 300;
    min-height: 46px;
    height: 50px;
}
.form_inputBox .form-group {
    position: relative;
    margin-bottom: 20px;
}
.form_inputBox .form-control.dark_input::placeholder {
    color: #7E7E7E;
    font-size: 16px;
}
.form_inputBox .input_icon svg {
    width: 17px;
    height: 17px;
}

.input_icon_box {
    position: relative;
}
.input_icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.related_postsBox .submit_btn {
    background: #FE9F00;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #FE9F00;
    font-weight: 500;
    color: #fff;
    transition: all .2s linear;
    font-size: 14px;
}
.related_postsBox .submit_btn:hover {
    background: transparent;
    color: #FE9F00;
}
.related_postsBox .submit_btn:hover svg path{
    fill: #FE9F00;
}
.related_postsBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 20px;
}
.services_imgBox img {
    height: 120px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    transition: all .3s linear;
}
.services_imgBox img:hover{
    transform: scale(1.1);
}
.services_imgBox {
    overflow: hidden;
    margin-bottom: 11px;
    border-radius: 6px;
}
.health_questionsText {
    font-weight: 500;
}
.calendarDate_box {
    font-size: 13px;
    margin-bottom: 4px;
}
.blog-entry .submit_btn{
    background: #FE9F00;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #FE9F00;
    font-weight: 500;
    color: #fff;
    transition: all .2s linear;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
    margin-top: auto;
}
.blog-entry .submit_btn:hover{
 background: transparent;
 color: #FE9F00;
}

.breadcrumb_box {
    display: flex;
    justify-content: center;
}
.breadcrumb-item a {
    font-size: 15px;
}
.breadcrumb-item.active a{
    color: #FE9F00;
}
.Blog_Bg_image {
    min-height: 300px;
    max-height: 300px;
}
  /*blog css*/
  .block_main_box{
    max-width: 750px;
    margin: auto;
  }

  .blog-section .blog-img img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    height: 100%;
    margin-bottom: 18px;
}

.blog-section .blog-text :is(h1 ,h2 ,h3 ,h4, h6 ,h5) {
    font-size: 16px;
}

.blog-section .blog-text img {
    height: 100px;
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
    display: none;
}
/*blog swiper cards*/
.blogs-card-swiper{padding: 30px 10px;}
.privacy-policy-section .card.blog-swiper-card.blogs{
    border: none; box-shadow: 5px 10px 18px #f7eaea;border-radius: 10px;
}
.privacy-policy-section .card.blog-swiper-card.blogs .blog-img{height: 200px;}
.privacy-policy-section .card.blog-swiper-card.blogs .blog-img img{height: 100%;width: 100%;object-fit: cover;}
.blog-content{padding: 16px}
.blog-text img{padding-block: 20px; object-fit: cover;}
.blog-text p{padding-block: 10px;}
.social-blog-icon {cursor:pointer;width: 30px;height: 30px;color: white;background-color: black;border-radius: 50%;display: flex;justify-content: center;align-items: center;transition: .2s all ease-in}
.social-blog-icon:hover {background-color: #FE9F00;transition: .2s all ease-in}
.blogs-socials{display:flex;gap:10px; padding-bottom: 20px;}