
html {
    overflow-x: hidden;
}
:root{
    --theme-primary-color:#0B5D6A;
    --theme-secondary-color:#F2B963;
    --theme-section-bg:#f9f9f9;
}

body{
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    color:#383c48;
}
p{
    margin: 0;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Space Grotesk', sans-serif;
}
/* ============================================= */
/* Theme basics */


.section_heading{
    text-align: center;
    margin-bottom: 3rem;
}

.section_heading {
    color:var(--theme-primary-color);
    font-weight: 700;
}
.section_heading::after{
    content: '';
    display: block;
    margin: auto;
    width: calc(2em + 5vw);
    margin-top: 8px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    background-color: var(--theme-secondary-color);
    height: 4px;
}

/* Icon 1 */
nav button:focus {
    outline: unset;
    outline: unset;
}
.navbar-light .navbar-toggler {
    border-color: unset;
}
.navbar-toggler {
    border: 0px solid transparent;
}
#nav-icon1 {
  width: 42px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.fixed #nav-icon1 span {
    background: #152238;
}


#nav-icon1 span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #0b5d6a;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 13px;
}

#nav-icon1 span:nth-child(3) {
  top: 27px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}






.login_signup a {
    text-decoration: none;
    color: #333 !important;
}
.form-control:focus,
.navbar-toggler:focus {
    box-shadow:unset;
    background-color: unset;
}

.login_signup ul.nav.nav-pills.nav-justified {
    border: 1px solid #949495;
    border-radius: 40px;
}

.login_signup .tab-content {
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding-top: 20px;
}

.d-flex {
    display: flex;
    align-items: center;
}
.login_signup .logo img {
    max-width: 225px;
    margin: auto;
    display: block;
    padding-bottom: 60px;
}
.login_signup .input-main.d-flex {
    border: 1px solid #333;
    border-radius: 40px;
}

.login_signup .form-control {
    border: unset;
}

.login_signup ::placeholder,
.phone_number ::placeholder {
    opacity: 0.4;
}

.login_signup .tab-pane {
    padding: 0px;
}
.login_signup .input-b {
    height: 56px;
    border: 1px solid #949495;
    border-radius: 40px;
    padding: 0px 8px;
}
.login_signup .input-b i {
    background: #E8E8E8;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border-radius: 43px;
}
.login_signup i.toggle-password {
    background: unset;
    font-size: 20px;
}

.login_signup button.btn.theme-btn {
    background: #0b5d6a;
    width: 100%;
    color: #fff;
    height: 50px;
    border-radius: 45px;
}
.login_signup a.nav-link.active {
    background: #0b5d6a;
    border-radius: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
}
.login_signup li.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_signup .Tabs {
    width: 100%;
    max-width: 700px;
    margin: auto;
}

.login_signup .rember_forget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
}
.login_signup .rember_forget label.form-check-label,
.login_signup .forgot-pass a {
    color: #000 !important;
    font-size: 14px;
}

.login_signup .terms_policy label.form-check-label {
    font-size: 14px;
}

.login_signup .terms_policy {
    display: flex;
    justify-content: center;
    padding: 26px 0px;
}


/*---signup----*/
.login_signup .heading_divider {
    position: relative;
    text-align: center;
}
.login_signup .heading_divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1px;
    width: 80%;
    background: #C9C9C9;
    transform: translate(-50%);
}
.login_signup .heading_divider span {
    background: #fff;
    position: relative;
    padding: 0px 30px;
}

.login_signup .signup-social {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_signup .signup-social i {
    font-size: 34px;
    padding: 10px 40px;
}

.login_signup .facebook i {
    color: #4676ED;
}
.login_signup .apple i {
    color: #000000;
}
.login_signup .google i {
    color: #D83F32;
}


/*-----------website--------------*/
a.navbar-brand.logo img {
    width: 100%;
    max-width: 140px;
}

header nav ul li a.nav-link {
    color: #6E6E6E;
}

header nav ul li a.nav-link.active {
    color: #F2B963 !important;
}

header .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}
.header-search i {
    color: #DE3C00;
    font-weight: 500;
}

.main_home_banner{
    background-color: #0B5D6A;
}

.main-banner {
    background-image: url("https://ik.imagekit.io/ArriTech/f.png?updatedAt=1695742234020");
    background-size: cover;
    height: 670px;
    background-repeat: no-repeat;
    background-position: bottom;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.banner-text h1 {
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    line-height: 56px;
}
.banner-text {
    max-width: 600px;
    margin: auto;
}
.banner-text p {
    font-size: 16px;
    letter-spacing: 1px;
    max-width: 500px;
    color:#fff;
}

.banner-text .postcode,
.phone_number {
    display: flex;
    align-items: center;
    border-radius: 40px;
    background: #fff;
    margin: 30px 0px !important;
    height: 55px;
}

.banner-text .postcode i {
    padding-left: 19px;
    font-size: 20px;
    opacity: 0.5;
}
.banner-text .postcode input, .phone_number input {
    border: unset;
    background-color: unset;
}
.banner-text .postcode button.theme-btn,
.phone_number button.theme-btn {
    background: #f1b862;
    border: unset;
    color: black;
    width: 100%;
    max-width: 160px;
    height: 45px;
    border-radius: 40px;
    margin-right: 4px;
}

.banner-text .postcode ::placeholder {
    opacity: 0.5;
}
img.banner-shape {
    position: absolute;
    bottom: 0;
}

/*---------banner-----------*/
.slick-prev:before, 
.slick-next:before {
    content: "\f053" !important;
    font-family: 'Font Awesome 5 Pro' !important;
    color: #000000a8 !important;
    font-size: 50px !important;
    font-weight: 100;
    top: -20px;
    position: relative;
}
.slick-next:before {
    content: "\f054" !important;
}
.CHOOSE_SRVICES .service_main img {
    width: 100%;
    max-width: 130px;
    margin: auto;
}

.CHOOSE_SRVICES .service_main h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    padding-top: 13px;
    color: #6E6E6E;
}

.sub-heading::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    height: 4px;
    width: 6%;
    background: #f2b963 !important;
    transform: translate(-50%);
    border-radius: 55px;
}
.sub-heading {
    text-align: center;
    position: relative;
    margin-bottom: 70px;
    color: #0b5d6a;
}
.view_all {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    margin-top: 15px;
    display: block;
}

.CHOOSE_SRVICES {
    background: #fff;
}



/*------------------------------*/

.how_it_works h2.sub-heading.white_b_b::before {
    background: #fff;
}
.how_it_works,
.reviews_ratings {
   background: #f9f9f9;
    background-size: cover;
    background-repeat: no-repeat;
}
.how_it_works h2.sub-heading.white_b_b {
    color: #fff;
}

.work_main img {
    max-width: 170px;
    margin: auto;
    padding-bottom: 30px;
}
.work_main h4{
    color: #0b5d6a;
}
.work_main {
    color: #333744;
    padding: 0px 70px;
}
.work_main p {
    padding-top: 10px;
}
.work-arrow {position: relative;}
.work-arrow::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -80px;
    height: 50px;
    width: 160px;
    background: url("https://ik.imagekit.io/ArriTech/Arrow.svg?updatedAt=1695747674978");
    background-size: 150px;
    background-repeat: no-repeat;
    transform: translate(-10px, -10px);
}
.work-arrow::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -100px;
    height: 50px;
    width: 160px;
    background: url("https://ik.imagekit.io/ArriTech/second%20arrow.svg?updatedAt=1695747813309");
    background-size: 150px;
    background-repeat: no-repeat;
    transform: translate(-10px, -10px);
}
/*----------------.most_popular_services ---------------------------*/

.most_popular_services {
    background: #fff;
    z-index: 1;
}





.services_card {
    position: relative;
}

.service-featured-image img {
    width: 100%;
    max-width: 350px;
    height: 189px;
    object-fit: cover;
    border-radius: 14px;
}
.services_card h5 {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}
.services_card .price img {
    border-radius: 50px;
    width: 25px;
    height: 25px;
    object-fit: cover;
}
.services_card .price span {
    color: black;
    font-size: 20px;
    font-weight: 200;
}
.services_card .price {
    display: flex;
    background: #f2b963;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    max-width: 88px;
    height: 36px;
    position: absolute;
    bottom: 42px;
    left: 8px;
    border-radius: 20px;
}

.service_location {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 6px 10px;
}
.star-rating li {
    display: inline-block;
    list-style: none;
}
.star-rating ul {
    padding-left: 0px;
    margin-bottom: 0px;
}
.star-rating i {
    color: #F8B61C;
}
.star-rating span {
    margin-left: 5px;
}
.star-rating {
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 150px;
    position: absolute;
    bottom: 20px;
    right: 17.7%;
    height: 30px;
    font-size: 14px;
    border-radius: 20px 0px 0px 20px;
    box-shadow: 0px 4px 5px #33333326;
    color:black;
}
.star-rating::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 2px;
    height: 10px;
    width: 10px;
    background: #0000002e;
    z-index: -1;
    transform: rotate(50deg);
}

.most_popular_services .slick-arrow {
   
}

.most_popular_services .slick-dots button {
    display: block;
    width: 1rem;
    height: 1rem;
    padding: 0;
    border: none;
    border-radius: 40px;
    background-color: #F2F2F2;
    text-indent: -9999px;
}
.most_popular_services .slick-dots li.slick-active button {
    background-color: #707070;
    width: 2rem;
}
.slick-dots .slick-active {
    margin-right: 23px;
}
.slick-dots li {
    width: 1rem;
    height: 1rem;
}
ul.slick-dots {
    bottom: -40px;
}

.service-featured-image{min-width: 300px!important;}

/**/
.service-featured-image img {
    width: 100%;
    max-width: 1081px;
    height: 230px !important;
    object-fit: cover;
    border-radius: 14px;
}
.slick-initialized .slick-slide {
    display: flex !important;
    justify-content: space-evenly;
}
.star-rating {
    display: flex;
    background: #fff;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 150px;
    position: absolute;
    bottom: 27px;
    right: -7px;
    height: 30px;
    font-size: 14px;
    border-radius: 20px 0px 0px 20px;
    box-shadow: 0px 4px 5px #33333326;
}

/*-----------using-app--------------------*/

.using_app {
    background-image: url("https://ik.imagekit.io/ArriTech/using-app%20copy.webp?updatedAt=1695745693259");
    background-size: cover;
    height: 840px;
    background-repeat: no-repeat;
    background-position: bottom;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 0px;
}

.using_app h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    line-height: 56px;
}

.using_app_text {
    max-width: 600px;
}
.using_app_text p {
    color: #fff;
}

.using_app_text .app_download img {
    width: 100%;
    max-width: 180px;
    margin-right: 10px;
}

.using_app_text .app_download {
    display: flex;
    align-items: center;
    margin-top:30px;
}
.using_app .phone_number input.form-control {
    padding-left: 20px;
}

/*---------------------------------*/
.Free_instant_video_consult img {
    width: 100%;
}

.Free_instant_video_consult h2 span {
    font-weight: 100;
}
.Free_instant_video_consult h2 {
    font-size: 40px;
    line-height: 66px;
    font-weight: 600;
    color: #0b5d6a;
}
.Free_instant_video_consult button.theme-btn {
    background: #f1b862;
    border: unset;
    color: black;
    width: 100%;
    max-width: 160px;
    height: 45px;
    border-radius: 40px;
    margin-right: 4px;
    margin-top: 20px;
    box-shadow: 0px 2px 10px #33333347;
}



/*---------------------------------------*/
/*.reviews_ratings {
    background: linear-gradient(150deg,#0400f7 ,#ff1500);
}*/
.reviews_ratings .sub-heading.white_b_b {
    color: #fff;
    margin-bottom: 30px;
}
.reviews_ratings .sub-heading::before {
    background: #fff;
}

.reviews_ratings p.sub_text {
    text-align: center;
    color: #333744;
    font-size: 14px;
    width: 100%;
    max-width: 600px;
    margin: auto;
}
.review_card {
    text-align: center;
    position: relative;
    margin: 0px 15px;
    padding: 0px 24px;
}
.review_card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 82%;
    width: 100%;
    background: #fff;
    z-index: -1;
    border-radius: 14px;
}
.user_image img {
    width: 100%;
    /* max-width: 100px; */
    margin: auto;
    border-radius: 50%;
    z-index: 9;
    height: 90px;
    width: 90px;
    object-fit: cover;
    box-shadow: 1px 6px 14px #0000001f;
}
.review_from img {
    max-width: 120px;
    margin: auto;
    padding-bottom: 13px;
}
.review_card .star-rating {
    background: unset;
    position: unset;
    box-shadow: unset;
    margin: auto;
    max-width: unset;
}
p.reveiw_text {
    font-size: 13px;
    line-height: 24px;
    padding: 0px 7px;
    margin: 10px 0px;
}
.review_card .star-rating::before {
    display: none;
}
h4.user_name {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.reviews_ratings ul.slick-dots {
    display: none !important;
}

.reviews_ratings .slick-prev:before, 
.reviews_ratings .slick-next:before {
    color: #fff !important;
}
.reviews_ratings .star-rating i {
    font-size: 20px;
}
.reviews_ratings .slick-prev, 
.reviews_ratings .slick-next {
    top: 60%;
}

/*----------footer---------------------------*/
footer {
    padding:40px 0px;
    position: relative;
    background:#f8f9fa;
}
.footer_social_icon img {
    max-width: 35px;
    width: 100%;
    margin: 10px;
}
.footer_social_icon img.instagram {
    max-width: 42px;
}
.footer_social_icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .app_download img {
max-width: 140px;
margin: 0px 15px;
}



footer .app_download {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0px;
}

.footer-menu li {
    display: inline-block;
    padding: 0px 20px;
}

.footer-menu {
    text-align: center;
    border-bottom: 1px solid #33333352;
}

.footer-menu li a {
    font-size: 14px;
    color: #9d9d9d !important;
    text-decoration: none;
}
.footer-menu ul {
    padding-left: 0px;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0px 0px;
}

.copyright img {
    width: 100%;
    max-width: 30px;
}
.copyright p {
    margin-bottom: 0px;
    padding-left: 8px;
    font-size: 14px;
}
.copyright p a {
    color: #F14914;
    text-decoration: none;
}
/*-------booking-confirmation----------------*/
.thanku_message {
    text-align: center;
}

.thanku_message img {
    max-width: 80px;
    width: 100%;
    padding-bottom: 30px;
}

.thanku_message h4 {
    font-size: 32px;
    font-weight: 700;
    color: #353535;
}

.thanku_message p {
    font-size: 22px;
    color: #848484;
}

.booking-confirmation .container {
    max-width: 800px;
    margin: auto;
}


.Summary_book_address td, .Summary_book_address th {
    border: unset;
    padding: 3px;
}

.Summary_book_address_flex {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    background-color: #F5F5F5;
    padding: 24px;
    border-radius: 12px;
    position: relative;
}
.Summary_book_address_flex::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 80%;
    width: 1px;
    background: #00000061;
    transform: translate(-50%, -50%);
}
.Summary_book_address_flex th {
    font-weight: 500;
}
.Summary_book_address_flex td {
    font-size: 15px;
}


.booking_address {
    margin-left: 90px;
}


.accepting_info .message {
    text-align: center;
    font-size: 14px;
    padding: 25px;
    line-height: 24px;
}
.accepting_info a, .terms_condition a { text-decoration: none;}
.accepting_info button.btn.theme-btn,
.terms_condition button.btn.theme-btn {
    background: #f2b963;
    color: #fff;
    border: unset;
    width: 100%;
    max-width: 330px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 50px;
}

.order_list .product_details {
    padding: 0px 14px;
    border-right: 1px solid #33333357;
}
.order_list .product_details:last-child {
    border: unset;
}
.order_list .product_details:first-child{
    padding-left: 0px;
}
.order_list .product_row_flex {
    display: flex;
}
.order_list .product_details img {
    width: 100%;
    max-width: 76px;
}
.order_list .product_details p {
    font-size: 12px;
    text-align: center;
    margin-bottom: 0px;
}
.order_list .product_details img {
    width: 100%;
    max-width: 54px;
    height: 52px;
    object-fit: cover;
    border-radius: 7px;
    margin-bottom: 5px !important;
    margin: auto;
    display: block;
}
.order_list .product_details.pro_img_brder img {
    border: 1px solid #33333352;
}
.order_list .product_name {
    /* padding-left: 13px; */
    /* width: 100%; */
    max-width: 370px;
    margin-bottom: 6px;
}
.product_thumb img {
    width: 100%;
    max-width: 90px;
}

.product_size_info, .product_material_info {
    display: flex;
    align-items: center;
}

.product_size_info p.heading, 
.product_material_info p.heading {
    width: 100px;
}
.product_size_info p {
    margin-bottom: 0px;
}
.product_name h5 {
    margin-bottom: 0px;
    font-size: 17px;
}
.product_name small {
    line-height: 21px;
    font-size: 13px;
    max-width: 330px !important;
    display: block;
}

.order_list td {
    padding: 20px 0px;
    width: 70%;
    border-bottom: 1px solid #3333331f;
}
.order_list thead th {
    border-bottom: none !important;
}
.order_list th.service {
    background: #F5F5F5;
    border-radius: 10px 0px 0px 10px;
    padding: 10px 20px;
    font-weight: 500;
}
.order_list th.qty {
    background: #F5F5F5;
    padding: 10px 0px;
    font-weight: 500;
}

.order_list th.price {
    background: #F5F5F5;
    border-radius: 0px 10px 10px 0px;
    padding: 10px 20px 10px 0px;
    font-weight: 500;
}

.order_list tr.subtotal td {
    padding: 2px 0px;
    border: unset;
}
.order_list .green_c {
    color: #05D628;
}

.order_list .mar-t {
    margin-top: 20px;
}
.order_list tr.total_paid td {
    border-top: 1px solid #3333331f;
    border-bottom: 1px solid #3333331f;
    padding: 8px 0px;
    font-weight: 600;
}

.terms_condition ul {
    padding-left: 0px;
    list-style: none;
}
.terms_condition li {
    font-size: 13px;
    line-height: 20px;
}
.terms_condition h5 {
    color: #333;
    font-size: 18px;
}


.command-btn img {
    width: 100%;
    max-width: 35px;
    margin-left: 20px;
}
.command-btn {
    display: flex;
    align-items: center;
    justify-content: end;
    position: relative;
    top: 20px;
}




/*-----------blog-------------------------*/
.blog-banner {
    background-image: url("../images/blog-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
}

.blog-banner h2 {
    font-size: 70px;
    line-height: 80px;
    color: #fff;
}
.blog-banner h4 {
    color: #fff;
    font-size: 30px;
    line-height: 34px;
}

.recent-post {
    background-color: #F4F4F4;
}
.recent-post .sub-heading {
    margin-bottom: 10px;
}
.recent-post .sub-heading::before {
    display: none;
}
.blog-card {
    background-color: #fff;
}

.blog-card .blog-featured-img img {
    width: 100%;
}

.blog-card .blog-meta {
    padding: 40px;
}

.blog-card .blog-meta h4 {
    color: #454545;
    line-height: 35px;
    margin-bottom: 0px;
}
.blog-card .blog-date {
    padding: 30px 0px;
    font-weight: 300;
}
.blog-card {
    background-color: #fff;
    margin-bottom: 25px;
}
.blog-card .blog-description {
    font-weight: 300;
    padding-bottom: 30px;
}

.blog-card .blog-meta button.button.btn {
    background-color: #DD3B03;
    color: #fff;
    height: 50px;
    width: 100%;
    max-width: 170px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.blog-card .blog-meta button.button.btn i {
    padding-left: 10px;
}


.recent-post a.page-link.Previous, 
.recent-post a.page-link.next {
    background: #fff!important;
    padding: 10px 40px;
    width: 140px;
    text-align: center;
    color: #DD3B03 !important;
    margin: 0px 20px !important;
    border: unset;
    border-radius: 40px !important;
    box-shadow: 0px 0px 2px #3333334f;
}

.recent-post .navigation-item {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 8px;
    width: 44px;
    border-radius: 50%;
    padding: 10px 0px;
    background-color: transparent;
    border: unset;
    color: #333;
}

.recent-post a.page-link.navigation-item.current {
    background: #dd3b03;
    color: #fff;
}
.recent-post .navigation-item:hover {
    background-color: #dd3b03;
    color: #fff;
}
.recent-post .blog-meta a {
    text-decoration: none;
}
.recent-post .notification-pagination {
    margin: 60px 0px 0px;
}


/*-----------single-blog-page-------------*/
.blog-detail-banner img {
    width: 100%;
}

.blog-detail-meta {
    padding: 40px 20px 26px;
    border-bottom: 1px solid #3333;
}

h2.blog-heading {
    font-size: 50px;
    color: #454545;
    width: 100%;
    max-width: 730px;
    line-height: 70px;
    margin-bottom: 0px;
}

.blog-full-detail-content {
    padding: 30px 0px 0px;
}
.blog-full-detail-content b {
    padding-bottom: 20px;
    display: block;
    font-weight: 600;
    font-size: 20px;
}


.publish_date {
    padding: 10px 0px;
    display: block;
}

.publish_date p {
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 0px;
}


.leave_comments {
    padding: 33px;
    border: 1px solid #3333;
    border-radius: 15px;
    margin-top: 30px;
}

.leave_comments .form-control {
    border-radius: 10px;
    border-color: #33333363;
    height: 50px;
}
.leave_comments textarea.form-control {
    height: 200px;
}

.leave_comments_heading h4 {
    font-size: 30px;
    color: #333;
    line-height: 44px;
    margin-bottom: 0px;
}

.leave_comments_heading p {
    font-weight: 300;
    font-size: 18px;
}
.leave_comments_heading {
    padding-bottom: 8px;
}
.leave_comments input[type="submit"] {
    background-color: #454545;
    border: unset;
    width: 100%;
    max-width: 200px;
    height: 50px;
    color: #fff;
    border-radius: 10px;
}



.similar-post .blog-meta h4 {
    font-size: 20px;
    line-height: 30px;
}




.similar-post .blog-card .blog-meta {
    padding: 25px;
}
.similar-post .blog-card .blog-date {
    padding: 23px 94px;
    font-weight: 300;
}

.similar-post .blog-card .blog-description {
    font-weight: 300;
    padding-bottom: 30px;
    font-size: 13px;
}

.similar-post .blog-card .blog-meta button.button.btn {
    height: 42px;
    max-width: 155px;
    font-size: 14px;
}

.similar-post .blog-card {
    background-color: #fff;
    margin-bottom: 40px;
    box-shadow: 0px 1px 4px #3333331f;
}
.similar-post .blog-meta a {
    text-decoration: none;
}

section.similar-post {
    padding: 50px 0px 0px;
}
.similar-post .row {
    border-bottom: 1px solid #3333;
}




.avatar {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
}

.avatar-img,
.avatar-initials,
.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.avatar-img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.avatar-initials {
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  line-height: 0;
  background-color: #a0aec0;
}

.avatar-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  background: #a0aec0
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='%23fff' d='M10 9a3 3 0 100-6 3 3 0 000 6zm-7 9a7 7 0 1114 0H3z'/%3e%3c/svg%3e")
    no-repeat center/1.75rem;
}

.avatar-indicator {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20%;
  height: 20%;
  display: block;
  background-color: #a0aec0;
  border-radius: 50%;
}

.avatar-group {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.avatar-group .avatar + .avatar {
  margin-left: -0.75rem;
}

.avatar-group .avatar:hover {
  z-index: 1;
}

.avatar-sm,
.avatar-group-sm > .avatar {
  width: 2.125rem;
  height: 2.125rem;
  font-size: 1rem;
}

.avatar-sm .avatar-placeholder,
.avatar-group-sm > .avatar .avatar-placeholder {
  background-size: 1.25rem;
}

.avatar-group-sm > .avatar + .avatar {
  margin-left: -0.53125rem;
}

.avatar-lg,
.avatar-group-lg > .avatar {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
}

.avatar-lg .avatar-placeholder,
.avatar-group-lg > .avatar .avatar-placeholder {
  background-size: 2.25rem;
}

.avatar-group-lg > .avatar + .avatar {
  margin-left: -1rem;
}

.avatar-light .avatar-indicator {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.avatar-group-light > .avatar {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.75);
}

.avatar-dark .avatar-indicator {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
}

.avatar-group-dark > .avatar {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
}









/*--------------category-css------------------*/
.cat-page-title {
    color: #7e7e7e;
}
.cat-page-title h1{
    color:#f2b963;
}

.cat-page-title a{
    color: #7e7e7e;
  
}
.cat-page-title .row {
    align-items: center;
}
.cat-page-title i {
    font-size: 18px;
    color: #333;
}
.cat-page-title p {
    font-size: 12px;
}

.cat-product-row img {
    width: 100%;
}

.cat-star-rating ul {
    list-style: none;
    display: inline-flex;
    padding-left: 0px;
    margin-bottom: 0px !important;
}
.cat-star-rating li {
    color: #4FB947;
    padding: 0px 4px;
}

.cat-product-card .cat-product-top {
    display: flex;
    justify-content: space-between;
}

.cat-product-card h4 {
    color: #3B3B3B;
    font-weight: 600;
    line-height: 34px;
}

.cat-product-card .cat-star-rating span {
    color: #3B3B3B;
}

.cat-product-card h5.product-price {
    font-size: 30px;
    font-weight: 700;
}

.category-data-sec {
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0px 1px 9px #3333331c;
    margin-bottom: 40px;
}

.cat-product-thumb img {
    border-radius: 8px;
}
.cat-product-thumb .slick-arrow {
    display: none !important;
}
.cat-product-card .discount {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.cat-product-card .discount i {
    color: #4fb947;
    padding-right: 7px;
}
.cat-product-card .cat-product-info ul.info-list li {
    color: #B7B7B7;
    font-size: 14px;
}

.cat-product-card .cat-product-info {
    display: flex;
    justify-content: space-between;
    align-items: self-end;
}

.cat-product-info .select-btn {
    background-color: #f2b963;
    color: black;
    height: 50px;
    width: 100%;
    max-width: 170px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
}

.cat-product-row .cat-product-card {
    padding: 10px 25px 10px 8px;
}



/*------single-cat-products-------------*/
.single-cat-product-card {
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0px 1px 9px #3333331c;
}

.single-cat-product-card h5.product-price {
    font-size: 30px;
    font-weight: 700;
    color: #3b3b3b;
}
.single-cat-product-card .discount {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding: 14px 0px 18px;
}
.single-cat-product-card .discount i {
    color: #4fb947;
    padding-right: 7px;
}
.single-cat-product-card ul.info-list li {
    color: #B7B7B7;
    font-size: 16px;
}
.single-cat-product-card ul.info-list {
    margin: 20px 0px 0px;
    padding-left: 22px;
}
.single-cat-product-card .cat-product-thumb img {
    border-radius: 8px;
    width: 100%;
}

.single-cat-product-card .single-car-product-detail {
    padding: 15px;
}

.single-cat-product-detail h4 {
    color: #333;
}

.single-cat-product-detail ul.check-ul-li li {
    position: relative;
    list-style: none;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}
.single-cat-product-detail ul.check-ul-li li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: -30px;
    color: #4FB947;
}
.Provide_by h5 {
    font-size: 18px;
    color: #333;
}

.single-cat-product-detail {
    overflow-y: scroll;
    height: 400px;
    padding: 20px 10px 0px 0px;
}
.Provide_by ul.check-ul-li {
    width: 100%;
    max-width: 550px;
}
.Continue_btn .select-btn {
    background-color: #f2b963;
    color: black !important;
    height: 50px;
    width: 100%;
    max-width: 170px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    margin-left: auto;
    margin-top: 20px;
}


/*---------summary-page----------*/
.Summary .product-summary-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
    border-bottom: 1px solid #3333;
}

.Summary h4.product-name {
    font-size: 18px;
    margin-bottom: 0px;
    width: 100%;
    max-width: 399px;
}

.product-summary-list .product-quantity input {
    border: unset;
    background-color: transparent;
    width: 100%;
    max-width: 28px;
    padding: 0px;
    color: #DE3D00;
    text-align: center;
    position: relative;
    left: 7px;
    z-index: 999999;
    font-size: 14px;
}
.product-summary-list .product-quantity i {
    font-weight: 500;
}
.product-summary-list .product-quantity {
    border: 2px solid #DE3D00;
    border-radius: 40px;
    padding: 1px 15px;
    color: #DE3D00;
}

.product-summary-list .price {
    color: #3B3B3B;
    font-size: 24px;
    font-weight: 600;
}

.summary-product-list-row .addmore-btn button {
    background: #4FB947;
    margin-left: auto;
    display: block;
    margin-top: 20px;
    width: 100%;
    max-width: 150px;
    border-radius: 40px;
    color: #fff !important;
}



.summary-heading {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 28px;
}
.Frequently_added_services {
    padding: 0px 20px;
}
.Frequently_added_services .fas-slider-card {
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0px 0px 10px #3333332e;
    margin: 28px 0px 28px 6px;
}

.Frequently_added_services .fas-slider-card img {
    width: 100%;
    border-radius: 10px;
    max-width: 185px;
    margin-bottom: 10px;
}

.fas-slider ul.slick-dots {
    display: none !important;
}

.fas-slider p.service {
    margin-bottom: 0px;
    font-size: 14px;
}
.fas-slider h4.fas-slider-title {
    font-size: 17px;
    color: #333;
    margin-bottom: 0px;
}
.Frequently_added_services .addcart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0px 0px;
}


.Frequently_added_services .slick-next {
    right: -32px;
}


.addcart button {
    background: #DE3D00;
    font-size: 13px;
    border-radius: 40px;
    color: #fff !important;
    padding: 5px 18px;
}
.addcart .fas-price {
    font-size: 18px;
    color: #333;
}



.rubbish_clearance .add_waste button.btn {
    background: #DE3D00;
    width: 100%;
    max-width: 140px;
    border-radius: 50px;
    color: #fff !important;
}
.add_waste img {
    width: 100%;
    max-width: 60px;
}
.add_waste {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #33333329;
    border-radius: 10px;
    padding: 6px 10px;
}



.coupons_offers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    color: #333;
    padding: 30px 0px;
}
.coupons_offers img {
    max-width: 34px;
    margin-right: 4px;
}
.coupons_offers .total-offer {
    color: #de3d00;
}

.tab .coupons_offers {
    display: block;
}
.tab .coupons_offers input#coupon_code {
    height: 50px;
    border: 1px solid #33333329;
    border-radius: 8px;
    padding: 14px;
}
.tab .coupons_offers button#apply_coupn_code {
    height: 50px;
    background: #de3d00;
    border-radius: 40px;
    width: 100%;
    max-width: 190px;
    color: #ffff;
    margin-left: 10px;
}




.Summary .col-md-7,
.schedule_address .col-md-7 {
    padding-right: 40px;
}
.Summary .col-md-5,
.schedule_address .col-md-5 {
    padding-left: 40px;
}

.payment_summary td {
    border-bottom: unset;
    padding: 6px 0px;
}

.payment_summary tr.total_paid td {
    color: #4FB947;
}
.payment_summary h4.summary-heading {
    border-bottom: 1px solid #3333332b;
    padding-bottom: 14px;
}
.payment_summary tr.total_paid td {
    border-top: 1px solid #3333332b;
    border-bottom: 1px solid #3333332b;
    padding: 10px 0px;
}

.Summary .terms_condition {
    padding-top: 20px;
}
.Summary .terms_condition li {
    font-size: 12px;
    line-height: 20px;
}

.Summary a.Continue-btn,
.schedule_address a.Continue-btn,
.PAYMENT_METHOD a.Continue-btn {
    background-color: #DD3B03;
    color: #fff !important;
    height: 50px;
    width: 100%;
    max-width: 170px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    margin-left: auto;
    margin-top: 30px;
}
.boldeR-left {
    border-left: 1px solid #33333326;
}



/*-------------------------------------------*/
.shipping_address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}
.address_box label {
    cursor: pointer;
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.address_box {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.address_box label:after {
    border: 2px solid #f00;
    border-top: none;
    border-right: none;
    content: "\f00c";
    height: 30px;
    right: 16px;
    opacity: 0;
    position: absolute;
    bottom: 10px;
    width: 30px;
    font-family: "Font Awesome 5 Pro";
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
}

.address_box input[type="radio"] {
    /* visibility: hidden; */
    display: none;
}

/*.round input[type="radio"]:checked + label {
  background-color: #66bb6a;
  border-color: #66bb6a;
}*/

.address_box input[type="radio"]:checked + label:after {
  opacity: 1;
}
.address_box input[type="radio"]:checked + label:after {
    background-color: #66bb6a;
    border-color: #66bb6a;
    opacity: 1;
}


.add-address {
    background-color: #F8F8F8;
    height: 160px;
    display: flex;
    align-items: center;
    padding: 19px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
    color: #DE3D00;
    box-shadow: 1px 2px 4px #3333;
}
.address_box {
    background: #f8f8f8;
    height: 160px;
    width: 100%;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 1px 2px 4px #3333;
}

.address_box button.address-action {
    position: absolute;
    top: 8px;
    right: 4px;
    z-index: 9999;
    background-color: transparent;
    border: unset;
}
.address_box button.address-action i {
    font-size: 20px;
}
p.full-address {
    width: 100%;
    max-width: 200px;
}

.address_box .dropdown-toggle::after {
    display: none;
}

.address_box h4.address-place {
    color: #333333;
    font-size: 20px;
}
.address-action .dropdown-item a {
    color: #fff;
    text-decoration: none;
}
.address-action .dropdown-item i {
    font-size: 14px !important;
    padding-right: 4px;
}
.address-action .dropdown-item {
    font-size: 14px;
    text-align: left;
}

.schedule-heading {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 28px;
}
.address-action div#address-drop {
    padding: 0px 10px;
}
.address-action ul.dropdown-menu {
    left: -180px !important;
    box-shadow: 0px 0px 4px #3333332e;
    background-color: #DE3D00;
    top: -32px !important;
}
.address-action .dropdown-item:focus, 
.address-action .dropdown-item:hover {
    background-color: #cf3c04;
}



.select-dt input {
    width: 100%;
    max-width: 220px;
    height: 40px;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #3333334a;
    margin-left: 30px;
}

.select-dt {
    margin-bottom: 14px;
    font-size: 18px;
    color: #333;
}


.billing-area h5 {
    font-size: 16px;
}
.billing-area .billing-area-card ul {
    padding-left: 0;
    list-style: none;
    font-size: 18px;
    color: #333;
}

.total-pay h4 {
    margin-bottom: 0px;
    color: #333;
}
.billing-area-card h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 3px;
}
.total-pay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #33333336;
    border-bottom: 1px solid #33333336;
    padding: 10px 0px;
    margin-top: 20px;
}
.billing-area hr {
    margin: 30px 0px;
}


/*-----------paymet-method-----------*/
.PAYMENT_METHOD .payments {
    padding: 10px 150px;
}
.PAYMENT_METHOD .payments button.btn.theme-btn {
    background: #dd3b03;
}

.PAYMENT_METHOD .payments .payment-card,
.PAYMENT_METHOD .payments .add-payment-card {
    height: 214px;
}



/*----------Double-Glazing-page----------------*/
.Double_Glanzing_sec .step-page-title {
    padding: 15px 30px 50px;
}
.Double_Glanzing_sec .step-page-title p {
    margin-bottom: 0px;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}
.Double_Glanzing_sec .slick-prev:before,
.Double_Glanzing_sec .slick-next:before {
    color: #292e3e !important;
}

.Double_Glanzing_sec .slick-slide {
    margin: 11px 11px 40px;
}
.double-glazing-s-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.Double_Glanzing_sec .slick-prev:before {
    content: "\f053" !important;
    font-family: "Font Awesome 5 Pro" !important;
}
.Double_Glanzing_sec .slick-next:before {
    content: "\f054" !important;
    font-family: "Font Awesome 5 Pro" !important;
}

.Double_Glanzing_sec .slick-next {
    right: -10px !important;
}
.Double_Glanzing_sec .slick-prev {
    left: -15px !important;
}

/*---------------------------*/
.slider-window img {
    width: 100%;
}
p.slider-box-title {
    position: absolute;
    bottom: -40px;
    margin-bottom: 0px;
}


.stepform ul.slick-dots {
    display: none !important;
}
.double-glazing-s-box label {
    cursor: pointer;
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.double-glazing-s-box label:after {
    border: 2px solid #f00;
    border-top: none;
    border-right: none;
    content: "\f00c";
    height: 30px;
    right: -6px;
    opacity: 0;
    position: absolute;
    top: -10px;
    width: 30px;
    font-family: "Font Awesome 5 Pro";
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
}

.double-glazing-s-box input[type="radio"] {
    /* visibility: hidden; */
    display: none;
}

.double-glazing-s-box input[type="radio"]:checked + label:after {
  opacity: 1;
}
.double-glazing-s-box input[type="radio"]:checked + label:after {
    background-color: #66bb6a;
    border-color: #66bb6a;
    opacity: 1;
}

.select-size input.width, .select-size input.height {
    border: 1px solid #3333334a;
    background: #fcfcfc;
    border-radius: 6px;
    padding-left: 12px;
    width: 100%;
    height: 35px;
    max-width: 245px;
    text-align: center;
}

.Double_Glanzing_sec .slick-slide img {
    display: block;
    width: 100%;
    box-shadow: 0px 6px 11px #33333326;
    border-radius: 8px;
    max-width: 300px;
    background: #fff;
}

.Double_Glanzing_sec a#nextBtn {
    border-radius: 40px;
    color: #fff;
    height: 45px;
}

.Double_Glanzing_sec .step-control-btn button {
    width: 100% !important;
    border-radius: 40px;
    height: 45px;
    max-width: 220px;
    margin: 0px 10px;
}
.step-control-btn .theme-btn {
    background: #f2b963;
}
.step-control-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.Double_Glanzing_sec .theme-btn i {
    padding: 0px 10px;
}

.Double_Glanzing_sec .theme-btn.back-btn {
    background: #333333;
    color: #fff;
}
.navbar-light .navbar-nav .nav-link{
    color:#383c48;
    font-size: 14px;
    font-weight: 500;
}

.step-three .form-check {
    padding-bottom: 6px;
    padding-top: 10px;
    margin-bottom: 0px;
}

.Double_Glanzing_sec .border_b {
    border-bottom: 1px solid #3333331f;
}

.Double_Glanzing_sec .slick-dotted.slick-slider {
    margin-bottom: 30px;
    width: 100%;
    max-width: 1240px;
    margin: auto;
}



.Double_Glanzing_sec .step_form .tab.active {
    display: block;
}
.Double_Glanzing_sec .step_form .tab {
    display: none ;
}
.Double_Glanzing_sec .step.active {
    opacity: 1;
}

.Double_Glanzing_sec .step {
    height: 15px;
    opacity: 0.5;
}

.Double_Glanzing_sec .invaild {
    border: 2px solid red;
}

.Double_Glanzing_sec .address-input button.theme-btn {
    height: 45px;
    border-radius: 40px;
    width: 100%;
    max-width: 200px;
}

.window_size {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 600px;
    margin: auto;
    padding-bottom: 20px;
}

.window_size input.width,
.window_size input.height {
    border: 1px solid #3333334a;
    background: #fcfcfc;
    border-radius: 3px;
    padding-left: 12px;
    width: 100%;
    height: 55px;
    max-width: 245px;
    text-align: center;
}
.window_size .count-btn {
    background: #fcfcfc;
    height: 55px;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #3333334a;
    cursor: pointer;
}

.ws-heading {
    width: 100%;
    max-width: 120px;
}

#size_tip .accordion-button:not(.collapsed) {
    box-shadow: unset;
}
#size_tip button.accordion-button {
    background-color: unset;
    border: unset;
    border-radius: unset;
    font-size: 16px;
}
#size_tip .accordion-item {
    border: unset;
}
#size_tip .accordion-button {
    width: auto;
    padding: 0px;
    font-size: 20px;
    color: #6D6D6D;
    margin-bottom: 15px;
}
#size_tip .accordion-body ul {
    padding-left: 0px;
    list-style: none;
    margin-bottom: 0px;
}
#size_tip .accordion-body {
    padding: 0px 0rem 1rem 0rem;
}
.window_custom_size {
    padding: 50px 0px;
}
#size_tip {
    max-width: 600px;
    margin: auto;
}
#size_tip .accordion-button::after {
    margin-left: 10px !important;
    display: block;
}



.final-ready-product .ready-product-img img {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    display: block;
    margin-right: 80px;
}

.final-ready-product .ready-product-info h4 {
    font-size: 20px;
    color: #333;
}

.final-ready-product .ready-product-info th, 
.final-ready-product .ready-product-info td {
    border: unset;
    padding: 8px 0px !important;
    font-weight: 500;
}
.final-ready-product .ready-product-info table.table {
    margin-top: 25px !important;
}
.final-ready-product .ready-product-info i {
    font-size: 14px;
    padding-right: 10px;
}
.final-ready-product {
    padding: 50px 0px;
}

.final-ready-product .ready-product-info i {
    color: #333;
}


.tab .Summary .summary-product-list-row {
    padding-bottom: 30px;
}


.tab .schedule_address .add-address, 
.tab .schedule_address .address_box {
    margin-right: 20px;
}
.tab .schedule_address .shipping_address {
    justify-content: flex-start;
}

.tab .schedule_address .billing-area hr {
    margin: 10px 0px;
}

.tab .schedule_address .selet-date-time {
    padding-top: 20px;
}
select#onaddressselected:focus-visible {border-radius: 14px 14px 0px 0px;outlin: transparent;}
.categoryfix{height: 901px;
overflow-x: hidden;
overflow-y: auto;
}

/* New CSS */
.new_address .postcode input {
  width: 66%;
  display: inline-block;
}
.new_address .postcode button {
  display: initial;
}
.new_address .postcode i {
  border: 1px solid #d9d6d6;
  padding: 11px 11px;
  border-radius: 5px;
  background-color: #e6dede;
}
.opemticbtn{
    cursor:pointer;
}
.new_address {
  max-width: 600px;
}
.new_address #onaddressselected {
  border: 1px solid #ced4da;
  max-width: 99%;
}
.ship_bill #add_address {
  float: right;
}
.ship_bill {
  margin-top: 10px;
}
.new_address #select_address_list_uk {
  margin-top: 50px;
}

.history-tl-container ul.tl{
    margin:20px 0;
    padding:0;
    display:inline-block;
    width: 100%;
}
.history-tl-container ul.tl li{
    list-style: none;
    margin:auto;
    margin-left:200px;
    min-height:50px;
    /*background: rgba(255,255,0,0.1);*/
    border-left:1px dashed #ff8900;
    padding: 0 0 23px 19px;
    position:relative;
}
.history-tl-container ul.tl li:last-child{ border-left:0;}
.history-tl-container ul.tl li::before{
    position: absolute;
    left: -10px;
    top: 0px;
    content: " ";
    border: 8px solid rgba(255, 255, 255, 0.74);
    border-radius: 500%;
    background: #ff8900;
    height: 20px;
    width: 20px;
    transition: all 500ms ease-in-out;
}
.history-tl-container ul.tl li:hover::before{
    border-color:  #ff8900;
    transition: all 1000ms ease-in-out;
}

div#login p:before, div#login p:after{
  display: inline-block;
  margin: 0.5rem 2.5rem;
  height: .1rem;
  content: " ";
  text-shadow: none;
  background-color: #ababab;
  width: 7rem;
}
@media screen and (max-width:678px){
  div#login p:before, div#login p:after{
    margin: 0.5rem 0.5rem;
    width: 4rem;
  }
}
@media screen and (max-width:455px){
  div#login p:before, div#login p:after{
    display: none;
  }
}
.blog-featured-img {
    
    height: 100%;
}

.blog-card .blog-featured-img img {
    
    object-fit: cover;
    height: 100%;
}

.blog-detail-banner img {
    object-fit: cover;
}

._3CuAg8 {
    padding: 0px 5px 0px 0px;
    border-right: 1px solid #333;
    font-size: 12px;
    text-decoration: none;
    color: black;
}

._3MmGvF {
    margin: 0 auto;
    padding: 25px;
}

._3MmGvF {
    color: #565656;
    background-color: #fff;
    text-align: left;
}
._1GTrm1 {
    margin: 10px 0;
}

._2oyLgr {
    color: #848484;
    text-transform: uppercase;
    margin: 0px;
    font-size: 12px;
}

.category-tag{
 border-bottom: 1px solid #33333352;
}


.obr_categories a:hover {
    color: #0b5d6a;
}
/*-------------*/
.obr_categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    max-width: 1000px;
    margin: 0 auto;
    margin: 0 auto;
    margin-top: 32px;
    margin-top: 32px;
}

.obr_categories__badge{
    display: flex;
    background: #f2b963;
    text-decoration: none;
    padding: 8px 16px;
    margin: 8px 6px;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    color: #000000;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.mega-menu h3{
    color: #0b5d6a;

}



