@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&amp;family=montserrat:wght@300;400;500;600;700&amp;display=swap');


*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #facd0e;
    --sub-color: #000000;
    --sec-padding: 80px 0;
}

body {
    font-family: 'montserrat', 'montserrat', sans-serif !important;
    background-color: #fff !important;
    font-size: 17px;
    font-weight: 400;
    overflow-x: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'montserrat', 'montserrat', sans-serif !important;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #000000;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}



.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
        -webkit-transform .0s ease;
}



.hamburger {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border: none;
    z-index: 9;
    -webkit-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    transition: background-color .2s linear;
    margin-right: 0px;
    background-color: var(--sub-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hamburger span {
    width: 28px;
    height: 3px;
    border-radius: 0px;
    background-color: #fff;
    display: block;
    margin-bottom: 6px;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


/*mobile menu*/

.menu-mobile {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0;
    height: 100%;
    width: 550px;
    background: var(--sub-color);
    z-index: 1001;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    -webkit-transform: translateX(-550px);
    -moz-transform: translateX(-550px);
    -ms-transform: translateX(-550px);
    -o-transform: translateX(-550px);
    transform: translateX(-550px);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    -webkit-box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.68);
    box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.68);
}

.brand-area {
    position: relative;
    padding-top: 80px;
}

.close_menu {
    position: absolute;
    top: 0;
    left: 0px;
    font-size: 24px;
    cursor: pointer;
    color: #363636;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.close_menu:hover {
    background-color: #767676;
    color: #fff;
}

.brand-area a {
    width: 100%;
    height: auto;
    display: block;
    background-size: contain;
    padding: 15px;
}

.brand-area a > img {
    max-width: 150px;
    max-height: 100%;
}
.mmenu {
    display: flex;
    align-items: center;
}
.mmenu > ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.mmenu > ul li a {
    display: block;
    color: #fff;
    padding: 15px 10px;
    transition: all .3s;
    font-size: 17px;
    text-transform: capitalize;
    text-align: center;
}
.mmenu > ul li.active a,
.mmenu > ul li a:hover {
    color: var(--main-color);
    font-weight: 600;
    font-size: 21px
}
.mmenu > ul li a > i {
    margin-left: 5px;
}

.register-mobile {
    margin-top: 0 !important;
}

.register-mobile li:last-child > a {
    border-bottom: 0;
}

.plusIcon {
    font-size: 14px;
    margin-left: 5px;
}

.m-overlay {
    position: fixed;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #333;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.social-media {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.social-media li {
    margin-bottom: 20px;
}
.social-media li a {
    color: #fff;
    font-size: 30px;
}
.social-media li a:hover {
    color: var(--main-color)
}

.menu-toggle {
    overflow: hidden;
}
.close-menu {
    color: #fff;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 35px;
}
.close-menu:hover {
    color: #fff;
    opacity: .7
}
.menu-toggle .m-overlay {
    opacity: 0.6;
    visibility: visible;
}

.menu-toggle .menu-mobile {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

}

html.menu-toggle {
    overflow: hidden;
}

/*fx-header*/

.fx-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FAFAFA;
    text-align: center;
    z-index: 99
}

.fx-header ul {
    padding-bottom: 20px;
}
.fx-header li {
    margin-bottom: 15px;
}
.fx-header li a {
    color: var(--sub-color);
    font-size: 27px;
}

/*header*/

#header {
    width: 100%;
    padding: 20px 0;
    top: 20px;
    z-index: 9
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    
    width: 100% !important;  
    height: auto;
    display: block;
}

}
.main_menu {
    border-radius: 20px;
}
.main_menu > li {
    float: left;
    margin-right: 25px;
}

.main_menu > li:last-child {
    margin-right: 0;
}

.main_menu > li > a {
    display: block;
    color: #000;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 10px;
    border-radius: 10px;
}

.main_menu > li.active a {
    color: var(--main-color);
}

.dropdown-toggle::after {
    border: 0;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f107";
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}
.main_menu > li.cl-lang > a {
    background: var(--sub-color);
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    color: #fff;
    padding-right: 30px;
}
.main_menu > li.cl-lang a.btn-site:before {
    background: var(--main-color);
}

.main_menu > li.btn-contact a img {
    margin-left: 10px;
}


.dropdown-menu {
    transition: all .8s ease-in-out;
    transform: translateY(100px) !important;
    box-shadow: none;
    background: var(--sub-color);
    border-radius: 8px;
    width: max-content;
    min-width:inherit;
    border: 0;
}
.dropdown-menu li {
    padding: 0 20px
}
.dropdown-menu li a {
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #1e2125;
    background-color: transparent;
    color: #fff;
    transform: translateX(10px);
}
.dropdown-menu.show {
    transform: translate(4px, 43px) !important 
}
#header.fixed-header1 {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #F1F2F1;
    box-shadow: 0 0 13px -6px #828282;
    z-index: 33;
}


/*content-page*/

.content-page {
    position: relative;
    display: flex;
    width: 100%;
    padding-left: 100px;
    height: 100vh;
}
.content-page > div {
    width: 50%;
}
.aside-thumb img {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 35px;
    border-top-left-radius: 35px
}
.aside-thumb .item {
    height: 100vh
}
.owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    background: #696969 !important;
}
.owl-dots .owl-dot.active {
    background: #fff !important;
}

.asid-content {
    padding: 20px 30px;
    overflow: auto;
}
.asid-content::-webkit-scrollbar {
  display: none;
}

.item-packages {
    position: relative;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    margin-bottom: 30px;
}
.item-packages h4 {
    color: var(--main-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 19px;
}
.item-packages .btn-site {
    position: absolute;
    top: 25px;
    right: 25px;
}
.item-packages ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.item-packages ul li span {
    color: #000;
    font-weight: 500;
    margin-left: 10px;
    font-size: 15px;
}
.item-packages p {
    color: #696969;
    margin-bottom: 20px;
    font-size: 14px;
}
.alrt-item {
    background: var(--sub-color);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
}
.alrt-item > span {
    color: #fff;
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}
.alrt-item ul li {
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 5px;
    font-size: 15px;
}


.alrt-ship {
    background: var(--main-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.alrt-ship h4 {
    color: #fff;
    margin-bottom: 10px;
}
.alrt-ship p {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 15px;
}
.alrt-ship p svg {
    margin-right: 10px;
    width: 26px;
}
.alrt-ship span {
    background: var(--sub-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    width: max-content;
    font-size: 14px;
}
.alrt-ship span i {
    margin-right: 10px;
    font-size: 20px;
}

/*sec_head*/

.sec_head {
    margin-bottom: 20px;
    position: relative
}

.sec_head h2 {
    color: #000;
    font-weight: 700;
    font-size: 22px;
    position: relative;
}

/*btn-site*/

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
    background: var(--main-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: var(--sub-color);
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span,
.btn-site a {
    color: #fff;
    position: relative;
}


.nav-tabs {
    margin-bottom: 30px;
    border: 0;
    display: flex;
    flex-wrap: nowrap;
}
.nav-tabs .nav-link {
    margin-bottom: 0;
    background: none;
    border: 0;
    padding: 7px 0;
    font-size: 16px;
    color: #696969;
    text-align: center;
    width: 100%;
    opacity: .3;
}
.nav-tabs .nav-item {
    margin-right: 50px;
    width: 33.3334%
}
.nav-tabs .nav-item:last-child {
    margin-right: 0;
}
.nav-tabs .nav-link.active {
    color: var(--main-color);
    opacity: 1;
}
.nav-link figure {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    height: 140px;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.nav-tabs .nav-link.active figure {
    background: var(--main-color);
}
.nav-link figure img {
    filter: contrast(0)
}
.nav-tabs .nav-link.active figure img {
    filter: contrast(1);
}

/*Style Page Stat*/

.section_page_site {
    padding: 20px 0 80px;
    position: relative;
}

.head-page {
    margin-bottom: 20px;
}
.head-page h2 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
}
.head-page h2 span {
    color: var(--sub-color);
}
.ph-content p {
    line-height: 1.5;
    color: #000;
    font-size: 16px;
}

/*fotter*/
footer {
    position: relative;
    padding: 20px 0;
}

.cont-bt {
    text-align: center
}
.copyRight {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}
.cont-bt p {
    color: #696969;
    font-size: 16px;
}
.cont-bt p a {
    color: var(--sub-color);
    font-size: 16px;
    font-weight: 700;
}

/*Style 404 Page*/

.cont-not-found {
    text-align: center;
}
.thumb-not-found {
    margin-bottom: 120px;
}
.txt-not-found h5 {
    color: #343434;
    font-weight: 600;
    margin-bottom: 15px;
}
.txt-not-found p {
    line-height: 2.5;
    color: #343434
}
.cont-not-found .btn-site {
    margin: 30px auto 0;
    padding: 7px 35px;
}

/*Style Contact Page*/

.hd-cont {
    margin-bottom: 10px;
}
.hd-cont h4 {
    font-size: 18px;
    font-weight: 500;
}
.hd-cont p {
    margin-top: 10px;
    font-size: 14px;
}
.form-group {
    margin-bottom: 25px;
    position: relative;
}
.form-group .form-control {
    border: 0;
    border-radius: 8px;
    border: 0;
    background: #fff;
    font-size: 13px;
    padding: 10px;
    height: 50px;
}
.form-group label {
    color: #000;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
}
.form-group img,
.form-group i {
    position:absolute;
    top: 45px;
    right: 15px;
    color: var(--sub-color)
}
.form-group:first-child img,
.form-group:first-child i {
    right: 30px;
}
.form-group .form-control:focus {
    box-shadow: none;
}
.form-group textarea.form-control {
    height: 140px
}
.form-contact .btn-site {
    min-width: 120px;
    font-weight: 600;
}
.select2-container--default .select2-selection--single {
    border: 0;
}
.list-contact {
    display: flex;
    margin-bottom: 40px;
}
.list-contact li {
    flex: 1;
    background: var(--sub-color);
    padding: 20px;
    border-radius: 10px;
    margin-right: 15px;
    font-size: 15px;
}
.list-contact li:nth-child(2) {
    background: var(--main-color)
}
.list-contact li:last-child {
    margin-right: 0;
}
.list-contact li a {
    color: #fff;
    display: flex;
    align-items: center
}
.list-contact li a i {
    margin-right: 10px;
    font-size: 28px;
}
#googleMap2 {
    height: 250px;
}

.ms-form {
    text-align: center;
    padding: 80px 50px;
}
.ms-form > span {
    margin-bottom: 20px;
    font-weight: 600;
    display: block;
}
.ms-form p {
    margin-bottom: 20px;
}
.ms-form .btn-site {
    margin: auto;
    padding: 10px 35px;
}
.modal-dialog {
    width: 400px;
}
.modal.show {
    display: flex !important;
    align-items: center
}

.datepicker {
    box-shadow: 0 1px 7px rgb(0 0  0/ 16%);
    transform: translateY(10px) !important;
    background: #fff;
    padding: 12px !important;
}
.datepicker td, .datepicker th {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px;
}

/*Style Booking*/

.section_page_site .container {
    position: relative;
}
.tabs-booking .nav-item {
    margin: 0;
    width: 30%;
}
.cont--instore, .map--instore {
    background: #FAFAFA;
    border-radius: 15px;
    margin-bottom: 20px;
}
.item-booking {
    border-bottom: 1px solid #EAEAEA;
    padding: 20px 20px 0;
}
.item-booking:last-child {
    border-bottom: 0;
}
.flex50 {
    display: flex;
    flex-wrap: wrap;
}
.flex50 .form-group {
    width: 50%;
    padding-right: 15px;
}
.flex50 .form-group:nth-child(2) {
    padding-right: 0;
}
.flex50 .form-group.form-last {
    margin-right: 15px;
}
.select2-container {
    display: block;
    width: 100% !important;
}
.select2-container .select2-selection--single {
    height: 50px !important;
    font-size: 13px;
}
.select2-results__option--selectable {
    font-size: 13px;
}
.select2-container--open .select2-dropdown--below,
.select2-container--open .select2-dropdown--above {
    border: 0;
    box-shadow: 0px 7px 7px rgb(0 0 0 / 16%);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: transparent !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "\f107";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    right: 0;
    font-size: 22px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent !important;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b:before {
    transform: rotate(-180deg) !important;
}

.package--duration {
    background: var(--sub-color);
    border-radius: 15px;
}
.package--duration h3 {
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding: 5px 15px;
}
.package--duration p {
    color: #fff;
    font-size: 13px;
    padding: 5px 15px;
}

.item-booking > p {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
    color: var(--sub-color);
}
.list-services p {
    font-weight: 500;
    color: #000;
    font-size: 15px;
}
.list-services p small {
    display: block;
}
.list-services {
    display: flex;
    flex-wrap: wrap
}
.list-services li {
    background: #fff;
    width: 47%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-radius: 5px;
    margin-right: 30px;
    margin-bottom: 20px;
}
.list-services li:nth-child(even) {
    margin-right: 0
}
.quantity{
	background: transparent;
    margin: 0;
	height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    width: max-content
}
.quantity .inc, .quantity .dec {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff !important;
    background: var(--sub-color);
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    display: grid;
    place-items: center;
    justify-content: center
}
.quantity .count-quat {
    width: 40px;
    text-align: center;
    position: relative;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    background: transparent;
}

.map--instore {
    padding: 20px;
}
.map--instore p {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--sub-color);
}
.map--instore span {
    color: #000;
    font-weight: 500;
}

.btn-add {
    width: 100%;
    padding: 15px;
    margin-bottom: 30px;
    height: 50px;
}
.btn-add span {
    font-weight: 600;
}
.btn-add span svg {
    margin-right: 10px;
    height: 22px;
}

.cont-promo {
    background: #FAFAFA;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.cont-promo h5 {
    margin-bottom: 10px;
    color: var(--sub-color);

}

.cont-promo p {
    margin-bottom: 15px;
    color: #000;
    font-size: 14px;
    font-weight: 500
}

.form-promo {
    position: relative;
}

.form-promo .form-control {
    background: #fff;
    border: 0;
    border-radius: 10px;
    background: #fff;
    height: 54px;
}

.form-promo .btn-site {
    position: absolute;
    top: 4px;
    right: 5px;
    height: 46px;
    width: 100px;
    margin: 0;
}

.tot-booking {
    background: #FAFAFA;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tot-booking > div {
    margin-bottom: 15px;
}
.tot-booking p {
    font-size: 15px;
}
.tot-booking > div:last-child {
    margin-bottom: 0;
}
.d-total strong {
    color: var(--sub-color)
}
.proceed .btn-site {
    width: 100%;
    height: 50px;
}
.proceed .btn-site i {
    margin-left: 10px;
}


.cbx {
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
    display: flex;
    align-items: center;
}
.cbx span {
  display: inline-block;
  vertical-align: middle;
    border: 0;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
  position: relative;
  width: 17px;
  height: 17px;
    background: #eee;
  border-radius: 3px;
    border: 0;
  transform: scale(1);
  vertical-align: middle;
  transition: all 0.2s ease;
    top: 0;
}
.cbx span:first-child svg {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 3px;
  fill: none;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--sub-color);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 0;
  transition-delay: 0.2s;
}
.cbx span:last-child {
  margin-left: 8px;
}
.cbx span:last-child:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--sub-color);
  transform-origin: 0 0;
  transform: scaleX(0);
}
.cbx:hover span:first-child {
  border-color: var(--sub-color);
}

.inp-cbx:checked + .cbx span:first-child {
  border-color: var(--sub-color);
  background: var(--sub-color);
  animation: check 0.6s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(2.2);
  opacity: 0;
  transition: all 0.6s ease;
}
.inp-cbx:checked + .cbx span:last-child {
  color: #B9B8C3;
  transition: all 0.3s ease;
}
.inp-cbx:checked + .cbx span:last-child:after {
  transform: scaleX(1);
  transition: all 0.3s ease;
}
.cbx p {
    margin-left: 10px;
    font-weight: 400;
}
.cbx p small {
    color: var(--sub-color);
}
.location-booking {
    width: 50%;
}
.ph-location {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: #696969;
}
.total-pr {
    color: var(--sub-color);
    font-size: 50px;
}
.bt-booking {
    position: relative;
}
.bt-booking .btn-site {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}


@keyframes check {
  50% {
    transform: scale(1.2);
  }
}

/*success*/

.content-success {
    width: 90%;
    margin: auto;
    position: relative;
}
.item-success {
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    padding: 50px 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.item-success figure {
    text-align: center;
    margin-bottom: 30px;
}
.item-success figure i {
    background: var(--sub-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 50px;
    margin: auto;
}
.item-success figure p {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}
.dt-success {
    background: var(--main-color);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    margin-bottom: 20px;
}
.type-booking strong {
    display: block;
    color: #fff;
    text-align: right;
    margin-bottom: 20px;
    font-size: 18px;
}
.type-booking strong:last-child {
    margin-bottom: 0;
}
.date-booking p {
    color: #fff;
    margin-bottom: 20px;
}
.date-booking p i {
    margin-right: 10px;
}
.date-booking p:last-child {
    margin-bottom: 0;
}

.data-success div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.data-success div p {
    color: #000
}
.share-bk .btn-site {
    margin: auto;
    font-size: 18px;
}

.loca-booking, .item-extra {
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    padding: 20px;
    border-radius: 10px;
}
.loca-booking > p {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 500;
}
.fl-loca {
    display: flex;
    align-items: center;
}
.fl-loca figure {
    width: 80px;
    margin-right: 15px;
}
.fl-loca figure img {
    width: 70px;
}
.fl-loca .txt-loc {
    width: calc(80% - 80px)
}
.fl-loca .txt-loc span {
    font-weight: 600;
    display: block;
    color: var(--sub-color);
    margin-bottom: 5px
}
.cl-locat {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sub-color);
    text-align: center;
    line-height: 40px;
    margin-left: auto
}
.item-extra h5 {
    margin-bottom: 10px;
    color: var(--main-color);
    font-size: 22px;
    font-weight: 600;
}
.item-extra p {
    margin-bottom: 10px;
}
.item-extra p span {
    color: var(--sub-color);
}

/* Style Success */

.cont-success {
    background: #FAFAFA;
    padding: 40px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.hd-succ {
    margin-bottom: 20px;
    text-align: center;
}
.hd-succ figure {
    color: var(--sub-color);
    margin-bottom: 20px;
}
.hd-succ figure i {
    font-size: 85px;
}
.hd-succ h4 {
    font-size: 17px;
    color: #000000
}
.data-succ {
    background: var(--main-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap
}
.data-succ > div {
    width: 33.3334%;
}
.data-succ p,
.data-succ strong {
    color: #fff;
    font-size: 15px;
}

.ds-booking p {
    color: #000;
    margin-bottom: 10px;
    font-size: 15px;
}
.bt-share .btn-site {
    margin: 15px auto 0;
}

.bookingAddress {
    background: #FAFAFA;
    padding: 40px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.bookingAddress h5 {
    color: #000;
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 600;
}
.bookingAddress p {
    color: var(--sub-color);
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 16px;
}

.bookingExtra {
    background: #FAFAFA;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.bookingExtra h5 {
    color: var(--sub-color);
    margin-bottom: 20px;
}
.bookingExtra div {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.bookingExtra div p {
    margin: 0 5px;
}
.bookingExtra div span {
    color: var(--sub-color)
}

.success-coupon {
    color: #00AA14;
}

.failed-coupon {
    color: #CB0303;
}

.packages-booking.packages-booking-mobile {
        display: none;
    }
    
    
    @media screen and (max-width: 992px) {
    .logo-site img {
        max-width: 180px !important;
    }
}