
/*----- HEADER -----*/
.hidden {
    display: none;
}
header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* z-index: 1111; */
    z-index: 99;
    transition: all 0.3s ease;
    padding: 19px 0;
    
}
/* for about header */

header .navbar {
    padding: 0;
    flex-wrap: nowrap;
    grid-gap: 20px;
}
header .navbar .brand img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
header .navbar .menu {
    display: flex;
    flex-direction: row;
    flex: 1;
    flex-basis: auto;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
header .navbar .menu .menu-item {
    position: relative;
}
.navbar .menu a {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 0 8px;
    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
    display: block;
}
 .navbar .menu a:hover{
     color:#BB952A;
}
.menu-list .dropdown-toggle::after {
    display: none;
}
.menu-list .dropdown-toggle {
    background: none;
    border: none;
    color: #000000;
    font-weight: 500;
    padding: 0;
    font-size: 13px;
}
.profile-menu{
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
}
.profile-menu span{
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-menu:hover span{
    border-color: #BB952A;
}
 .profile-menu:hover span{
     border-color: #ffffff;
}

.active_header {
    top: 0;
    padding: 8px 0;
    background: #fFF;
    box-shadow: 0px 0px 30px 0px #bc8a1f66;
}
.header.active_header .navbar .menu a {
    color: #000000;
}
.header.active_header .profile-menu:hover span{
    border-color: #BB952A;
}
.header.whitelogo {
    z-index: 999;
}

.header.active_header .profile-menu:hover span{
    border-color: #BB952A;
}
.header.whitelogo {
    z-index: 999;
}
.header .header-notify-btn:hover
{
    border-color:#ffffff;
}
.header.active_header .header-notify-btn:hover
{
    border-color:#BB952A;
}
.header.active_header .profile-menu svg path{
    fill: #BB952A;
}
.profile-menu img{
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
/* dark logo light logo */
.logo-dark{
    display: none;
}
.logo-white{
    display: block;
}
.header.active_header .logo-white{
    display: none;
}
.header.active_header .logo-dark{
    display: block;
}
/* ----Inner common header---- */
.inr_head{
    border-bottom: 1px solid rgb(0 0 0 / 8%);
    padding: 8px 0;
}
.inr_head .navbar .menu a{
    color: #000000;
}
.inr_head .profile-menu svg path{
    fill: #BB952A;
}
.inr_head .header-notify-btn svg path{
    stroke: #888888;
}
.inr_head .header-notify-btn:hover{
    border-color: #BB952A;
}
/* 3rd Header */
.step_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
}
.step_head h5{
    margin-bottom: 0;
    font-size: 18px;
    color: #000;
}
.step_head a{
    font-size: 16px;
    color: #BB952A;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    display: block;
}
/*--Header-End--*/

.srchresltpopup svg{
    width: 16px;
    height: 16px;
}
/* notificationb */
.is_unread_btn{
    position: relative;
}
.is_unread_btn:before{
    position: absolute;
    content: "";
    background: red;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 30%;
    right: 5px;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    animation: smoothBlink 1.6s ease-in-out infinite;
}
@keyframes smoothBlink {
    0%{
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50%{
        opacity: .4;
        transform: translate(-50%, -50%) scale(1.4);
    }
    100%{
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
/* ------------ center header [start]------------ */
.mob-view-menu{display: none;}
/*----------------------  sidebar  ------------------------------------*/
.profile-sidebar{position: relative;}
body.active-sidebar {overflow: hidden;}
.wd-left-side{
    background: #0000004D;
    /* backdrop-filter: blur(55px); */
    position: fixed;
    inset: 0px;
    transition: opacity 300ms ease-out 0s;
    opacity: 1;
    display: none;
    z-index: 1;
}
.show-menu-sidebar{
    background: #FFFFFF;
    box-shadow: -20px 0px 34px 0px #0000008C;
    width: 379px;
    max-height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 25px 20px;
    z-index: 12;
    overflow-y: auto;
    transition-property: transform;
    transition-duration: 900ms;
    transition-timing-function: cubic-bezier(0.5, 1, 0.5, 1);
    transform: translateX(420px); /*due to box shoadow */
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.slide-sidebar {
  transform: translateX(0px);
  transition-property: transform;
  transition-duration: 900ms;
  transition-timing-function: cubic-bezier(0.5, 1, 0.5, 1);
}
/* ------------- sidebar [END]------------ */
.side-menu-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
}
.get-started{
    display: flex;
    align-items: center;
    gap: 12px;
}
.get-started p{
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-bottom: 0;
}
.user-profile h2{
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}
.user-profile p{
    font-weight: 500;
    font-size: 12px;
    color: #8F8F8F;
    margin-bottom: 0;
}
.close-sidebar{
    border: none;
    background: transparent;
}
.profile-img{
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}
.profile-img img{
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
}
.sidbar-auth-btns{
    display: flex;
    align-items: center;
    gap: 13px;
    flex-flow: column;
    margin-bottom: 37px;
}
.header-login-btn{
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 14px 0px #BC8A1F66;
    background: #BB952A;
    border: 1px solid #BB952A;
    transition: 1s all ease;
    z-index: 1;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    padding: 15px;
    display: block;
    width: 100%;
}
.header-login-btn::before{
    background: #FFF;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.6s ease;
    width: 0%;
    height: 100%;
    color: #BB952A;
}
.header-login-btn:hover {
    background: #FFF;
    color: #BB952A;
}
.header-login-btn:hover::before {
    width: 100%;
}
.header-signup-btn{
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 14px 0px #BC8A1F66;
    background: #FFFFFF;
    border: 1px solid #BB952A;
    color: #000;
    transition: 1s all ease;
    z-index: 1;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    padding: 15px;
    display: block;
    width: 100%;
}
.header-signup-btn::before{
    background: #000;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.6s ease;
    width: 0%;
    height: 100%;
    color: #FFF;
}
.header-signup-btn:hover {
    background: #000;
    color: #FFf;
    border-color: #000;
}
.header-signup-btn:hover::before {
    width: 100%;
}
.sidemenu-items{
    margin: 0 0 22px;
    padding: 0;
}
.sidemenu-items li{
    display: block;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #D8D8D880;
}
.sidemenu-items li:last-child{
    border-bottom: 0;
}
.sidemenu-items li a{
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
    font-size: 16px;
    color: #545454;
}
.sidemenu-items li a:hover{
    color: #BB952A;
}
.sidebar-botm{
    background: #000000;
    border-radius: 14px;
    padding: 16px 28px;
}
.app-cover-area{
    height: 221px;
    margin: 0 auto 18px;
}
.app-cover-area img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.sidebar-botm h2{
    font-weight: 700;
    font-size: 26.28px;
    text-align: center;
    color: #FFF;
    margin-bottom: 12px;
}
.sidebar-botm p{
    font-weight: 400;
    font-size: 12.45px;
    text-align: center;
    color: #FFF;
    margin-bottom: 12px;
}
.app-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all 0.4s ease-in-out;
}
.app-btns a:hover{
    transform: scale(1.1);
}
.menu-name{
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 14px;
}
/* ----------- language dropdown ---------- */
.lang-dropdown .dropdown-toggle {
    background-color: transparent;
    border:none;
    padding: 0;
    border-radius: 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 400;
    font-size: 16px;
}
.lang-dropdown .dropdown-toggle::after{
    content: '';
    background: url(../images/dropdown-arrow.png) no-repeat;
    width: 14px;
    height: 9px;
    border: none;
}
.lang-dropdown .dropdown-toggle img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.lang-dropdown .dropdown-menu {
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    min-width: auto;
}
/* language Dropdown items */
.lang-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px 8px 8px;
    transition: background 0.3s ease;
}
.lang-dropdown .dropdown-item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.lang-dropdown .dropdown-item:hover {
    background-color: #bb942a9e;
    color: white;
}
/* ------- notification dropdown ---------- */
.notification .dropdown-toggle::after{
    display: none;
}
.header-notify-btn{
    background: transparent;
    border: 1px solid #DDDDDDDD;
    width: 36px;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.header-notify-btn svg path{
    stroke: #fff;
}
.active_header .header-notify-btn svg path{
    stroke: #DDDDDDDD;
}
.header.active_header .header-notify-btn svg path {
    stroke: #888888;
}
.kknotytion-popup .kknotytion-wrap {
	width: 330px;
}
.kknotytion-popup .dropdown-menu {
	transform: translateX(-80%);
	border-radius: unset;
	padding: unset;
	margin: unset;
}
.kknotytion-popup .kknotytion-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 15px 15px;
}
.kknotytion-popup .kknotytion-head>span>a {
	font-size: 12px;
	font-weight: 500;
	color: rgba(187, 149, 42, 1);
}
.kknotytion-popup .kknotytion-head h2 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: unset;
	color: rgba(0, 0, 0, 1);
}
.kknotytion-popup .kknotytion-body {
	/* padding: 15px 15px; */
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
}
.kknotfmessge > a{
    padding: 12px 12px !important;
    border-bottom: 1px solid #f2f2f2;
    display: block !important;
}
.kknotfmessge > a:last-of-type{
    border-bottom: unset;
}
.kknotfmessge > a:hover{
    background-color: rgba(187, 149, 42, 0.1);
}
.kknotytion-popup .kknotytion-body .kknotytimgwrap {
	margin: 0 auto;
	text-align: center;
}
.kknotytion-popup .kknotytion-body .kknotytimgwrap h3 {
	font-size: 14px;
	font-weight: 600;
	color: rgba(0, 0, 0, 1);
	margin-top: 13px;
	margin-bottom: 3px;
}
.kknotytion-popup .kknotytion-body .kknotytimgwrap p {
	font-size: 12px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.60);
	width: calc(100% - 80px);
	margin: 0 auto;
}
.kknotytion-popup .kknotytion-footer {
	padding: 15px 15px;
    background: #bb952a21;
}
.kknotytion-popup .kknotytion-footer>span>a {
	font-size: 12px;
	font-weight: 500;
	color: rgba(187, 149, 42, 1) !important;
	text-align: center;
    display: block !important;
}
.kknotytion-popup .kknotfmessge li {
	padding-left: 10px;
	position: relative;
	margin-bottom: 10px;
}
.kknotytion-popup .kknotfmessge li:last-child {
	margin-bottom: unset;
}
.kknotytion-popup .kknotfmessge li.unread:before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: rgba(187, 149, 42, 1);
	left: 0;
	top: 7px;
	border-radius: 50%;
}
.kknotytion-popup .kknotfmessge li p {
	font-weight: 500;
	font-size: 12px;
	color: rgba(84, 84, 84, 1);
	margin-bottom: 2px;
}
.kknotytion-popup .kknotfmessge li span {
	font-size: 10px;
	font-weight: 500;
	color: rgba(153, 153, 153, 1);
}
/* -------------Search Bar [ START ] */
body.search-open header{
    background: #fff;
}
.srch_bar{
    transition: opacity 0.3s ease;
    max-width: 800px;
}
.visi_srch{
    position: relative;
}
.visi_srch .form-control{
    padding: 14px 17px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    display: block;
    font-weight: 500;
    font-size: 12px;
    text-transform: capitalize;
    color: #000;
    width: 380px;
}
.visi_srch .form-control::placeholder{
    color: #000;
    font-size: 12px;
}
.form-icon{
    position: absolute;
    top: 50%;
    right: 5px;
    box-shadow: 0px 5px 14px 0px #BC8A1F66;
    background: #BB952A;
    padding: 6px;
    border-radius: 10px;
    transform: translateY(-50%);
}
.form-control:focus {
    color: #212529;
    background-color: transparent;
    border-color: #BC8A1F66;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(187 149 42 / 25%);
}
.aft_srch .form-control:focus{
    box-shadow: 0 0 0 0 rgb(187 149 42 / 25%);
}
.srch_bar form{
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    grid-gap: 8px;
    display: none;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0, 0, 0.2, 1);
}
.aft_srch{
    transition: opacity 0.9s ease, max-height 0.9s ease, padding 0.3s ease;
}
.aft_srch.show {
    display: flex;
    opacity: 1;
    transition: opacity 0.9s cubic-bezier(0, 0, 0.2, 1);
  }

.hide {
    display: none;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0, 0, 0.2, 1);
  }
body.search-open .header .navbar{
    flex-wrap: nowrap;
}
body.search-open{
    overflow: hidden;
}
body.search-open main, body.search-open footer{
/*    background: rgba(0, 0, 0, 0.5);*/
/*    filter: blur(10px);*/
}
/*--search Result [ END ]---*/


.kkserchrest-inr {
	display: flex;
	align-items: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
}

.kkserchrest-lft {
	display: flex;
	align-items: center;
}

.kkserchrest-lft span {
	padding: 0 12px;
	position: relative;
	font-size: 13px;
	font-weight: 500;
	color: rgba(0, 0, 0, 1);
	width: 128px;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
    text-align: left;
}

.kkserchrest-lft span:last-of-type:before,
.kkserchrest-lft span:last-of-type:after {
	content: '';
	position: absolute;
	width: 2px;
	height: 32px;
	background-color: rgba(0, 0, 0, 0.1);
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.kkserchrest-lft span:last-of-type:after {
	right: 0;
	left: unset;
}

.kkserchrest-lft span:last-of-type {
	font-size: 13px;
	font-weight: 500;
	color: rgba(0, 0, 0, 1);
    text-align: left;
}

.kkserchrest-rht span {
	padding: 0 12px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(0, 0, 0, 1);
    text-align: left;
}
.aft_srch  .select2-container{
    width: 100% !important;
    z-index: 999;
}
/*-----*/
/* for about header [end] */

/*----- FOOTER -----*/
.footer-area{
    background: #F3F3F3;
    padding: 48px 45px;
    position: relative;
    border-radius: 50px 50px 0 0;
    z-index: 0;
}
.fotr-brand a{
    display: block;
    width: fit-content;
}
.fotr-brand a img{
    object-fit: contain;
}
.fotr-media-links{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    transition: 0.5s ease-in-out;
}
.fotr-media-links li a:hover svg path{
    fill: #BB952A;
}
.quick-links{
    width: 100%;
}
.quick-links h4{
    font-weight: 600;
    font-size: 18px;
    color: #BB952A;
    margin-bottom: 6px;
  }
.quick-links ul,  .terms-link{
    margin: 0;
    padding: 0;
    list-style: none;
}
.quick-links ul li a{
    display: inline-block;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    margin-bottom: 8px;
}
.quick-links ul li a:hover{
    color: #BB952A;
    padding-left: 3px;
    font-weight: 500;
}
.fotr-botm{
    border-top: 1px solid #00000033;
    padding-top: 38px;
}
.copyright-txt{
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    margin-bottom: 0;
}
.terms-link{
    display: flex;
    align-items: center;
    gap: 21px;
}
.terms-link li span{
   color: rgba(0, 0, 0, 0.30);
}
.terms-link li a{
    display: block;
    font-weight: 500;
    font-size: 15px;
    color: #000000;
}
.terms-link li a:hover{color: #BB952A;}
.fotr-app-grp{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}
.wd-mb-38{
    margin-bottom: 38px;
}
header.header.bookinghead{
    box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.1);
}
/* ------------ footer brand -------- */
.legal-footer{
   padding: 48px 0;
}
.legal-brand{
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
    /*  opacity: 0.3;*/
    /*filter: grayscale(100%);*/
}
.foot-row{
    display: flex;
    justify-content: space-between;
    
}
/* footer dropdown */

.extra-item {
    display: none;
}

.extra-container {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
}

.extra-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.view-toggle {
    color: #bb952a !important; /* default color */
    transition: color 0.3s ease;
    text-decoration: underline;
    font-weight: 600 !important;
}

.view-toggle.active {
    color: #000000; /* change this to your desired color */
}

.noti_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #bb952a21;
    border-bottom: 1px solid #f2f2f2;
}
.noti_head h5{
    color: #000;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;

}
.noti_head a{
    cursor: pointer;
    font-size: 12px  !important;
    color: #000 !important;
    display: block!important;
    padding: 0 !important;
}
.noti_head a:hover{
    text-decoration: underline;
}
.unread_noti{
    position: relative;
}
.unread_noti:after {
    background: #bb952a;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 8px;
    position: absolute;
    top: 16px;
    width: 8px;
}
.frm-lft .form-control{width: 200px; white-space: nowrap; overflow: hidden;text-overflow: ellipsis;
}

@media only screen and (max-width: 1200px) {
    header .navbar .menu a{display: none;}
    
}


@media only screen and (max-width: 991px) {
    header, .legal-header{padding: 8px 0;}
    header .navbar .menu a{font-size: 14px;}
    /* legal header */

    /* sidebar */
    .header-login-btn, .header-signup-btn{font-size: 15px; padding: 12px 15px;}
    .sidemenu-items li a{font-size: 15px;}
    .sidemenu-items li{padding-bottom: 10px; margin-bottom: 10px;}
    .sidemenu-items li a svg{width: 16px; height: 16px;}
    /* footer */
    .footer-area{padding: 30px 20px 25px; border-radius: 25px 25px 0 0;}
    .quick-links{margin-bottom: 15px;}
    .quick-links ul li a{font-size: 14px;}
    .wd-mb-38{margin-bottom: 25px;}
    .fotr-botm{padding-top: 25px;}
    .terms-link{justify-content: flex-end;}
    .fotr-app-grp{justify-content: flex-start; margin-top: 10px;}
    /* legal footer */
    .legal-footer{padding: 30px 0;}
    /* Header Search */
    body.search-open header{height: 162px;}
    .aft_srch.show{position: absolute; top: 0;left: 0;right: 0;margin: 70px 0 0; background: #fff; padding: 10px;}
    .visi_srch .form-control{padding: 12px 15px;font-size: 14px;}
    .form-icon{padding: 5px;}
    .menu-list .dropdown-toggle{font-size: 15px; color: #545454;}
    .mob-view-menu .menu-list{display: flex;gap: 12px;}
   
}

@media only screen and (max-width: 767px) {
    /* for center header only mob view*/

     .mob-view-menu{display: block;}
    
     /* Search Header */

    .form-icon svg {width: 20px;height: 20px;}
    header .navbar .brand img{height: 40px;}
    .profile-menu img{width: 30px;height: 30px;max-width: 30px;min-width: 30px;}
    header .navbar .menu{grid-gap: 5px;}
    .aft_srch.show{margin: 48px 0 0;padding: 0;display: block;}
    body.search-open header{height: 300px;}

    .srch_btn{grid-gap: 5px;padding: 10px 15px;font-size: 15px;width: 100%;display: flex !important;}
    .mob-view-menu .menu-list .dropdown-toggle{font-size: 15px;color: #545454;}
    .aft_srch .form-group::before{border: 0 !important;}
    .aft_srch .form-group:last-child{width: 100% !important;}
    .step_head h5, .step_head a{font-size: 15px;}

     /* center side */

    .foot-row{display: block;}

    /* footer */
    .terms-link, .fotr-media-links{justify-content: flex-start;}
    .wd-mb-38{margin-bottom: 20px;}
    .fotr-brand a{margin-bottom: 15px;}
    .fotr-botm{padding-top: 20px;}
    .terms-link{margin-top: 10px;}

}
@media only screen and (max-width: 575px) {
    .visi_srch .form-control, .step_head h5{display: none;}
    .form-icon{position: unset;background: transparent;box-shadow: unset;}
    .form-icon svg path{stroke: #545454;}
    .step_head{justify-content: flex-end;}
    .step_head a{font-size: 14px;}
    
}