html{
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: 'Poppins' , 'Montserrat' , serif , Arial;
    color: #444445;
    padding-top: 8.3vw;
    overflow-x: hidden;
}
    .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
*{
    scroll-margin-top: 20vh;
}
/* Font */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf');
    font-weight: normal;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.ttf');
    font-weight: 900;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Arabic-Light.ttf');
    font-weight: 300;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Arabic-Regular.ttf');
    font-weight: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Arabic-Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Arabic-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Arabic-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Arabic-Black.ttf');
    font-weight: 900;
}
* {
    box-sizing: border-box;
    outline: none !important;
}
/* width */
::-webkit-scrollbar {
    width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #eee;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #0057B5;
}
::-moz-selection { background: #0057B5; color: #fff}
::selection { background: #0057B5; color: #fff}
ul {
    list-style: none;
    margin: 0;
    padding: 0
}
a{
    color: #0057B5;
    transition: all 0.25s ease-in-out;
}
.lang-en{
    font-family: 'Poppins' , serif , Arial;
}
.lang-ar{
    font-family: 'Montserrat' , serif , Arial;
}
.text-primary{
    color: #0057B5 !important;
}
.text-danger{
    color: #C93C3C !important;
}
.btn-primary, .btn-secondary, .btn-light, .btn-info{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    height: 3.59375vw;
    border: none;
    border-radius: 0.78125vw;
    text-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    font-size: 1.25vw;
    font-weight: 600;
    transition: all 0.25s ease-in-out;
}
.btn-primary,.btn-primary:focus{
    background: #0057B5;
    color: #fff;
}
.btn-secondary, .btn-secondary:focus{
    background: #F4477C;
    color: #fff;
}
.btn-secondary:hover{
    background: #0057B5;
}
.btn-light, .btn-light:focus{
    background: #fbfbf6;
    color: #808080;
}
.btn-info{
    background: #F6FAFB !important;
    color: #0057B5 !important;
}
.btn-info:hover{
    background: #0057B5 !important;
    color: #fff !important;
}
.container-fluid{
    padding: 0 13.28125vw;
}
.modal .container-fluid{
    padding: 0 15px;
}
/* Index */
.index-header .navbar{
    background: transparent !important;
}
.index-header .header-images{
    display: block;
    margin-top: -12vw;
    margin-bottom: 3vw;
}
.index-header .header-images img{
    display: none;
    width: 100%;
}
.index-header .header-images img.active{
    display: block;
}
.index-header .navbar .navbar-brand img{
    filter: brightness(0) invert(1);
}
/* The container */
.gender-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0.5vw auto;
}
.gender-container {
    position: relative;
    display: inline-block;
    width: 12.708vw;
    margin: 1vw;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.gender-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.gender-container .btn-gender {
    display: block;
    text-align: center;
    width: 100%;
    height: 14.896vw;
    border-radius: 0.781vw;
    background: #fbfbf6;
    box-shadow: 0 0.156vw 0.313vw rgba(13, 12, 34, 0.07);
    padding: 0.781vw;
    color: #000;
    font-size: 1.146vw;
    line-height: 1.406vw;
    transition: 0.25s ease-in-out;
}
/* When the radio button is checked, add a blue background */
.gender-container input:checked ~ .btn-gender {
    background: #F4477C;
}
.gender-container .btn-gender .img-mask{
    display: block;
    width: 100%;
    height: 11.146vw;
    border-radius: 0.781vw;
    background: #808080;
    margin-bottom: 0.75vw;
}
.gender-container input:checked ~ .btn-gender .img-mask{
    background:#FBFBF6;
}
.gender-container .btn-gender .img-mask img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.gender-container .btn-gender .img-mask img:first-of-type{
    display: none;
}
.gender-container .btn-gender .img-mask img:last-of-type{
    display: block;
}
.gender-container input:checked ~ .btn-gender .img-mask img:first-of-type{
    display: block;
}
.gender-container input:checked ~ .btn-gender .img-mask img:last-of-type{
    display: none;
}
.btn-index{
    min-width: 20.833vw;
    height: 2.708vw;
    border-radius: 1.042vw;
    font-size: 1.042vw;
    margin:  0.5vw auto 3vw;
}
/* Header */
.navbar{
    background: #fff;
    margin: 0;
    padding: 1vw 0 0;
    transition: all 0.25s ease-in-out;
}
.navbar .navbar-brand{
    margin: 0 1vw;
}
.navbar .navbar-brand img{
    width: 9.946vw;
}
.navbar li a{
    color: #F4477C !important;
    font-size: 1.042vw  /* 20/19.2 */;
    font-weight: 500;
}
.link-language{
    color: #000;
    font-size: 1.042vw  /* 20/19.2 */;
    font-weight: 500;
    margin: 0 1vw;
}
.navbar .form-inline{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 1.042vw;
    background: #fbfbf6;
    width: 100%;
    padding: 0 0.521vw;
}
.navbar .form-inline > .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5vw;
    color: #010101;
    background: #fff;
    border: none;
    border-radius: 0.781vw;
    box-shadow: 0 0.156vw 0.313vw rgba(13, 12, 34, 0.07);
    padding-left: 0.781vw;
    padding-right: 0.781vw;
    font-size: 1.042vw;
    margin: 0.521vw;
}
.navbar .form-inline > .btn img{
    height: 1.042vw;
    margin-right: 0.521vw;
}
.navbar .form-inline .search-group{
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0.521vw;
}
.navbar .form-inline .search-group .form-control{
    width: 100%;
    height: 2.5vw;
    background: #fff;
    border: none;
    border-radius: 0.781vw;
    box-shadow: 0 0.156vw 0.313vw rgba(13, 12, 34, 0.07);
    font-weight: 500;
    font-size: 0.938vw;
    color: #808080;
}
.navbar .form-inline .search-group .btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0.521vw;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.083vw;
    height: 2.083vw;
    background: #e6e6e6;
    border: none;
    border-radius: 50%;
}
.navbar .form-inline .search-group .btn img{
    width: 1.2vw;
}
.navbar .form-inline .dropdown{
    display: inline-block;
    margin: 0.521vw;
}
.navbar .form-inline .dropdown .dropdown-menu{
    left: auto;
    right: 0;
    float: right;
    background: #fff;
    border: none;
    border-radius: 0.78125vw;
    filter: drop-shadow(0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16));
    overflow: hidden;
}
.navbar .form-inline .dropdown .dropdown-toggle{
    font-size: 1.042vw;
    text-align: center;
    color: #010101;
}
.navbar .form-inline .dropdown .dropdown-toggle:after{
    content: "";
    border: none;
    background: url("../images/icon-down.svg") center no-repeat;
    background-size: contain;
    width: 0.625vw;
    height: 0.625vw;
    vertical-align: middle;
    transition: all 0.25s ease-in-out;
}
.navbar .form-inline .dropdown .dropdown-toggle[aria-expanded="true"]:after{
    transform: rotate(180deg);
}
.navbar .form-inline .dropdown.dropdown-notifications .dropdown-toggle:after{
    display: none;
}
.navbar .form-inline .dropdown.dropdown-notifications .dropdown-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.083vw;
    height: 2.083vw;
    border-radius: 50%;
    background: #F4477C;
}
.navbar .form-inline .dropdown .dropdown-menu .dropdown-item {
    text-align: center;
    text-transform: capitalize;
    color: #373737;
    font-weight: normal;
    font-size: 0.833vw;
    padding: 0.78125vw;
}
.navbar .form-inline .dropdown .dropdown-menu .dropdown-divider{
    margin: 0 0.78125vw;
}
.navbar .form-inline .dropdown.dropdown-notifications .dropdown-toggle img{
    width: 1.146vw;
}
.navbar .form-inline .dropdown.dropdown-notifications .dropdown-menu.dropdown-notifications-menu{
    width: 24.792vw;
    padding: 0;
}
.dropdown-notifications-menu .notifications-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fbfbf6;
    border-bottom: 0.208vw solid rgba(128, 128, 128, 0.45);
    padding: 2.1875vw;
}
.dropdown-notifications-menu .notifications-header .notifications-header-title{
    display: inline-block;
    color: #0d0c22;
    font-weight: bold;
    font-size: 1.458vw;
    line-height: 1.771vw;
}
.dropdown-notifications-menu .notifications-header .badge{
    display: inline-block;
    border-radius: 0.625vw;
    background: #1fca76;
    color: #fff;
    font-weight: 500;
    font-size: 0.9375vw;
    line-height: 1.146vw;
    padding: 0.3125vw 0.417vw;
}
.dropdown-notifications-menu .notifications-body{
    display: block;
    padding: 1.302vw;
    max-height: calc(100vh - 9.375vw);
    overflow-y: auto;
}
.dropdown-notifications-menu .notifications-body .notifications-title{
    color: #000;
    font-weight: 600;
    font-size: 0.9375vw;
    letter-spacing: 0.01em;
    line-height: 2.083vw;
}
.user-notification{
    display: block;
    color: #808080;
    font-weight: bold;
    font-size: 1.458vw;
    margin: 0 auto 1vw;
    text-align: center;
}
.notification-block{
    display: block;
    border-radius: 0.78125vw;
    background: #f9f8f8;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
    padding: 1.25vw 2.083vw 0.677vw;
    margin: 1.25vw auto;
    transition: all 0.25s ease-in-out;
}
.notification-block:hover{
    background: rgba(183, 186, 255, 0.5);
}
.notification-block .notification-time{
    display: block;
    color: #B3B3B3;
    font-size: 0.729vw;
    line-height: 1.042vw;
    margin-bottom: 0.5vw;
}
.notification-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 0.78125vw;
    background: #FBFBF6;
    box-shadow: 0 0 0.3vw rgba(13, 12, 34, 0.07);
    width: 100%;
    padding: 0.521vw;
    margin: 0.521vw auto;
    color: #100f2a !important;
    text-decoration: none !important;
}
.notification-block .notification-wrapper{
    border-radius: 0;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    align-items: initial;
    justify-content: flex-start;
}
.notification-wrapper.notification-alert{
    background: rgba(255, 102, 0, 0.3);
}
.notification-wrapper .notification-img{
    display: inline-block;
    background: #fff;
    width: 3.333vw;
    height: 3.333vw;
    border-radius: 0.78125vw;
    overflow: hidden;
}
.notification-block .notification-wrapper .notification-img{
    width: 2.083vw;
    height: 2.083vw;
    border-radius: 0.625vw;
}
.notification-wrapper .notification-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.notification-block .notification-wrapper .notification-name{
    display: inline-block;
    color: #000;
    font-weight: 600;
    font-size: 0.729vw;
    margin: 0 0.78125vw;
}
.notification-wrapper .notification-details{
    display: inline-block;
    width: calc(100% - 5.208vw);
    margin: 0 0.521vw;
}
.notification-block .notification-wrapper .notification-details{
    display: inline-block;
    width: fit-content;
    margin: 0;
}
.notification-wrapper .notification-details .notification-title{
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 0.9375vw;
    letter-spacing: 0.01em;
    line-height: 1.042vw;
}
.notification-block .notification-wrapper .notification-details .notification-title{
    display: block;
    width: auto;
    color: #0d0c22;
    font-weight: 500;
    font-size: 1.042vw;
    white-space: normal;
}
.notification-wrapper .notification-details .notification-title span{
    display: inline-block;
    font-weight: 600;
}
.notification-wrapper .notification-details .notification-text{
    display: block;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 0.9375vw;
    letter-spacing: 0.01em;
    line-height: 1.042vw;
}
.notification-block .notification-wrapper .notification-details .notification-text{
    white-space: normal;
    color: #808080;
    font-size: 0.9375vw;
    margin: 0.5vw 0 1vw;
}
.notification-wrapper .notification-details .notification-time{
    display: block;
    color: #808080;
    font-size: 0.729vw;
    line-height: 0.885vw;
    margin-top: 0.5vw;
    text-align: right;
}
.notification-block .notification-actions{
    opacity: 0;
    visibility: hidden;
}
.notification-block:hover .notification-actions{
    opacity: 1;
    visibility: visible;
    transition: all 0.25s ease-in-out;
}
.notification-block .btn{
    height: 2.135vw;
    font-weight: 600;
    font-size: 0.729vw;
}
.side-menu{
    position: fixed;
    top: 0;
    left: -20vw;
    background: #fff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
    height: 100vh;
    width: 20vw;
    padding: 0.521vw;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.25s ease-in-out;
    z-index: 1000;
}
.side-menu.show{
    visibility: visible;
    left: 0;
    overflow-y: auto;
}
.side-menu .close-menu{
    position: absolute;
    top: 8vw;
    right: 1.563vw;
    background: url("../images/close.svg") center no-repeat;
    background-size: contain;
    width: 1.458vw;
    height: 1.458vw;
    border: none;
    box-shadow: none;
    z-index: 9;
    transition: all 0.25s ease-in-out;
}
.side-menu ul{
    position: relative;
    display: block;
    margin-top: 10vw;
}
.side-menu ul li{
    display: block;
}
.side-menu ul li a{
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.9vw 3vw;
    font-size: 1vw;
    font-weight: 600;
    color: #808080;
    text-transform: capitalize;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;
}
.side-menu ul li a[data-toggle="collapse"]{
    color: #F4477C;
    border-radius: 1.302vw;
    margin: 1vw 0;
}
.side-menu ul li a[data-toggle="collapse"]:after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.042vw;
    background: url("../images/arrow-down-sign-to-navigate.svg") center no-repeat;
    background-size: contain;
    width: 1.042vw;
    height: 0.6vw;
}
.side-menu ul li a[aria-expanded="false"]:after{
    transform: translateY(-50%) rotate(0deg);
}
.side-menu ul li a[aria-expanded="true"]:after{
    transform: translateY(-50%) rotate(180deg);
}

.side-menu ul li a:hover, .side-menu ul li.active a{
    color: #F4477C;
}
.side-menu ul li.active a{
    font-weight: 500;
    font-size: 1.25vw;
    color: #F4477C;
}
.side-menu ul li a img{
    width: 1.875vw;
    height: 1.875vw;
    object-fit: contain;
    object-position: center;
    margin-right: 1.042vw;
    transition: all 0.25s ease-in-out;
}
.side-menu ul li a img:nth-of-type(2){
    display: none;
}
.side-menu ul li a:hover img:first-of-type, .side-menu ul li.active a img:first-of-type{
    display: none;
}
.side-menu ul li a:hover img:last-of-type, .side-menu ul li.active a img:last-of-type{
    display: inline-block;
}
/* Categories */
.select-category-title{
    display: block;
    font-size: 2.083vw;
    font-weight: bold;
    letter-spacing: normal;
    color: #000;
    margin: 1vw auto;
}
.select-category{
    position: relative;
    display: block;
    background: #F6FAFB;
    padding: 2vw 0;
    margin: 0 auto 2vw;
}
.category-item{
    position: relative;
    display: block;
    width: 8.021vw;
    height: 9.53125vw;
    max-width: 100%;
    background: #fff;
    border-radius: 0.781vw;
    padding: 1.042vw 0.75vw;
    margin: 0.521vw auto;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;
}
.category-item:hover{
    background: #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);

}
.category-item .category-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4.167vw;
}
.category-item .category-icon img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.category-item .category-title{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0c22;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1vw;
    line-height: 1.25vw;
    height: calc(1.25vw * 2);
    letter-spacing: -0.04em;
    margin: 1vw auto 0;
    overflow: hidden;
}
/* Categories items */
.item-wrapper{
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    background: #fbfbf6;
    border-radius: 0.521vw;
    box-shadow: 0 0.156vw 0.313vw rgba(19, 19, 19, 0.1);
    margin: 1.042vw auto;
    text-decoration: none !important;
}
.item-wrapper.home-item{
    width: 15vw;
}
.item-wrapper.package-single-item{
    width: 12.708vw;
    padding: 0 1.042vw;
    margin: 0;
}
.item-wrapper.item-recommend{
    background: #fff;
    border-radius: 1.042vw;
}
.item-wrapper.dress-item{
    border-radius: 0.781vw
}
.item-wrapper.trip-item{
    height: 28vw;
}
.confirmation-wrapper .item-wrapper{
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 1.042vw auto;
    text-align: center;
}
.checkout-item .item-wrapper{
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}
.item-wrapper .item-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 8.229vw;
    background: #fff;
    box-shadow: 0 0.156vw 0.313vw rgba(19, 19, 19, 0.1);
    border-radius:  0.521vw 0.521vw 0 0;
    overflow: hidden;
}
.item-wrapper.home-item .item-img{
    height: 15vw;
    border-radius: 0.78125vw;
    box-shadow: 0 0.26vw 0.78125vw rgba(13, 12, 34, 0.07);
}
.item-wrapper.item-recommend .item-img{
    border-radius: 0.521vw;
    border: none;
}
.item-wrapper.package-single-item .item-img{
    height: 8.7vw;
    border-radius: 0;
}
.item-wrapper.accessory-item .item-img{
    height: 9.271vw;
    border-radius: 0.521vw;
}
.item-wrapper.dress-item .item-img{
    height: 21.771vw;
    border-radius: 0.781vw;
    box-shadow: 0 0.260vw 0.781vw rgba(13, 12, 34, 0.07);
}
.item-wrapper.hotel-item .item-img{
    height: 12.240vw;
    border-radius:  1vw;
}
.item-wrapper.trip-item .item-img{
    min-height: 15vw;
    border-radius:  1vw;
}
.item-wrapper.car-item .item-img{
    height: 14.427vw;
    border-radius:  1vw;
}
.confirmation-wrapper .item-wrapper .item-img{
    width: 9.0625vw;
    height: 9.0625vw;
    border-radius: 0.521vw;
    margin: 0.5vw auto;
}
.checkout-item .item-wrapper .item-img{
    display: block;
    height: auto;
    background: none;
    box-shadow: none;
    border-radius:  0;
    margin: 1vw auto;
}
.item-wrapper .item-img img{
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.item-wrapper.follower-item .item-img img{
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.checkout-item .item-wrapper .item-img img{
    width: auto;
}
.item-wrapper .item-details{
    position: relative;
    display: block;
    padding: 0.781vw;
}
.item-wrapper.trip-item .item-details{
    padding: 1vw;
}
.item-wrapper.package-single-item .item-details{
    padding: 0.781vw 0;
}
.item-wrapper.item-recommend .item-details{
    padding: 0.625vw 0.78125vw;
}
.checkout-item .item-wrapper .item-details{
    padding: 0;
}
.item-wrapper .item-details .has-installment{
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.031vw;
    background: #fff;
    border-radius: 0 0 0.7vw 0.7vw;
    font-size: 0.781vw;
    color: #000;
}
.item-wrapper.trip-item .item-details .has-installment{
    min-height: 3vw;
    font-size: 1.25vw;
}
.item-wrapper .item-details .has-installment img{
    width: 1.25vw;
    margin-right: 0.521vw;
}
.item-wrapper.trip-item .item-details .has-installment img{
    width: 1.875vw  /* 36/19.2 */;
}
.item-wrapper .item-details .buy-rent{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.625vw;
}
.item-wrapper .item-details .buy-rent .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 3.073vw;
    height: 1.354vw;
    text-transform: capitalize;
    border-radius: 1.302vw;
    padding: 0.313vw 0.625vw;
    margin: 0 0.521vw;
}
.item-wrapper .item-details .buy-rent .dress-rent{
    color: #bfbfbf;
    background: #e6e6e6;
    font-size: 0.677vw;
}
.item-wrapper .item-details .buy-rent .dress-buy{
    color: #0d0c22;
    background: #F4477C;
    font-weight: 600;
    font-size: 0.729vw;
}
.item-wrapper .item-details .item-title{
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 0.833vw;
    line-height: 0.990vw;
    height: calc(0.990vw * 2);
    color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
}
.item-wrapper.home-item .item-details .item-title{
    color: #000;
    font-weight: normal;
    font-size: 1.25vw;
    line-height: 1.3vw;
    height: calc(1.3vw * 2);
    margin: 0.78125vw 0 0.6vw;
}
.item-wrapper.item-recommend .item-details .item-title{
    color: #100f2a;
    line-height: 0.9375vw;
    height: 0.9375vw;
    margin: 0.833vw auto;

}
.item-wrapper.package-single-item .item-details .item-title{
    color: #000;
    font-weight: normal;
    font-size: 1.042vw;
    line-height: 2vw;
    height: 2vw;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: initial;
}
.item-wrapper.dress-item .item-details .item-title{
    color: #000;
    font-size: 0.938vw;
    line-height: 1.25vw;
    height: 1.25vw;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.item-wrapper.accessory-item .item-details .item-title{
    color: #100f2a;
    font-size: 0.833vw;
    font-weight: normal;
    line-height: 0.990vw;
    height: 0.990vw;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.item-wrapper.hotel-item .item-details .item-title{
    max-width: 8vw;
    line-height: 1.146vw;
    height: 1.146vw;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.item-wrapper.trip-item .item-details .item-title{
    max-width: 13vw;
    font-size: 1vw;
    line-height: 1.25vw;
    height: calc(1.25vw * 2);
}
.item-wrapper.car-item .item-details .item-title{
    max-width: 8vw;
    line-height: 1.146vw;
    height: 1.146vw;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.item-wrapper .item-details .item-subtitle{
    display: block;
    max-width: 8vw;
    color: #373737;
    font-size: 0.729vw;
    line-height: 0.729vw;
    height: 0.729vw;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.item-wrapper.trip-item .item-details .item-subtitle{
    max-width: 13vw;
    font-size: 1vw;
    line-height: 1vw;
    height: auto;
    margin: 0.6vw 0;
    white-space: normal;
    overflow: visible;
}
.item-wrapper.package-single-item .category-name{
    display: inline-block;
    width: 100%;
    color: #000;
    font-weight: 600;
    font-size: 0.9375vw;
    margin: 0.5vw auto;
    text-align: center;
}
.confirmation-wrapper .item-wrapper .item-details .item-title{
    font-size: 1.25vw;
    line-height: 1.667vw;
    height: auto;
    color: #100F2A;
}
.checkout-item .item-wrapper .item-details .item-title{
    width: auto;
    color: #100f2a;
    font-weight: 600;
    font-size: 1.458vw;
    line-height: 2.34375vw;
}
.item-wrapper .item-details .owner-store{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.417vw ;
}
.item-wrapper.home-item .item-details .owner-store{
    margin-top: 0;
}
.item-wrapper.item-recommend .item-details .owner-store{
    margin: 0 auto;
    text-align: center;
    width: fit-content;
}
.confirmation-wrapper .item-wrapper .item-details .owner-store{
    justify-content: center;
}
.item-wrapper .item-details .owner-store .owner-logo{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.031vw;
    height: 2.031vw;
    background: #fff;
    border: 0.026vw solid #fff;
    border-radius: 50%;
    filter: drop-shadow(0 0.156vw 0.313vw rgba(0, 0, 0, 0.16));
    margin-right: 0.5vw;
    overflow: hidden;
}
.item-wrapper.trip-item .item-details .owner-store .owner-logo{
    width: 2.5vw;
    height: 2.5vw;

}
.item-wrapper.home-item .item-details .owner-store .owner-logo{
    width: 1.771vw;
    height: 1.875vw;
    border-radius: 0.521vw;
    border: none;
    filter: none;
}
.item-wrapper.item-recommend .item-details .owner-store .owner-logo{
    width: 1.23vw;
    height: 1.23vw;
    border-radius: 0.278vw;
    border: none;
}
.item-wrapper.package-single-item .item-details .owner-store .owner-logo{
    width: 1.146vw;
    height: 1.146vw;
    border-radius: 0.521vw;
    border: none;
}
.item-wrapper.dress-item .item-details .owner-store .owner-logo{
    width: 1.667vw;
    height: 1.667vw;
    border: none;
}
.item-wrapper.accessory-item .item-details .owner-store .owner-logo{
    width: 1.510vw;
    height: 1.510vw;
    border: none;
}
.confirmation-wrapper .item-wrapper .item-details .owner-store .owner-logo{
    width: 1.771vw;
    height: 1.823vw;
    background: none;
    border-radius: 0.208vw;
    filter: none;
}
.checkout-item .item-wrapper .item-details .owner-store .owner-logo{
    display: flex;
    width: 3.333vw;
    height: 2.8125vw;
    background: none;
    border: none;
    border-radius: 0.208vw;
    filter: none;
}
.item-wrapper .item-details .owner-store .owner-logo img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}
.checkout-item .item-wrapper .item-details .owner-store .owner-logo img{
    /*object-fit: contain;*/
}
.item-wrapper .item-details .owner-store .owner-details .owner-title{
    display: block;
    font-weight: 600;
    font-size: 0.729vw;
    line-height: 0.729vw;
    color: #000;
}
.item-wrapper.trip-item .item-details .owner-store .owner-details .owner-title{
    font-size: 1vw;
    line-height: 1vw;
}
.item-wrapper.item-recommend .item-details .owner-store .owner-details .owner-title{
    font-size: 0.677vw;
}
.item-wrapper.home-item .item-details .owner-store .owner-details .owner-title{
    font-weight: 500;
}
.item-wrapper.package-single-item .item-details .owner-store .owner-details .owner-title{
    font-weight: 500;
}
.item-wrapper.accessory-item .item-details .owner-store .owner-details .owner-title{
    font-size: 0.625vw;
    line-height: 0.625vw;
}
.checkout-item .item-wrapper .item-details .owner-store .owner-details .owner-title{
    color: #100f2a;
    font-weight: normal;
    font-size: 1.198vw;
    line-height: 1.875vw;
}
.item-wrapper .item-details .owner-store .owner-details .owner-location{
    display: block;
    font-size: 0.625vw;
    line-height: 0.729vw;
    color: #808080;
    margin-top: 0.3vw;
}
.item-wrapper .item-details .owner-store .owner-details .owner-location i{
    margin-right: 0.26vw;
}
.item-wrapper .item-details .item-rating{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 5.104vw;
    min-height: 1.510vw;
    background: #fff;
    border-radius: 0.521vw;
    box-shadow: 0 0.156vw 0.260vw rgba(13, 12, 34, 0.07);
    padding: 0.208vw 0.417vw;
    z-index: 1;
}
.item-wrapper.trip-item .item-details .item-rating{
    min-width: 6vw;
    min-height: 2vw;
    margin-top: 0.6vw;
}
.item-wrapper.item-recommend .item-details .item-rating{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 0.521vw;
    white-space: nowrap;
}
.item-wrapper .item-details .item-rating .rating-number{
    display: inline-block;
    font-weight: 500;
    font-size: 0.729vw;
    line-height: 0.781vw;
    color: #000;
    margin-right: 0.521vw;
}
.item-wrapper.home-item .item-details .item-rating .rating-number{
    font-size: 0.573vw;
    margin-right: 0.2vw;
}
.item-wrapper.package-single-item .item-details .item-rating .rating-number{
    font-size: 0.573vw;
    margin-right: 0.2vw;
}
.item-wrapper.trip-item .item-details .item-rating .rating-number{
    font-size: 1vw;
    margin-right: 0.2vw;
}
.item-wrapper .item-details .item-rating .rating-stars{
    display: inline-block;
    color: #F4477C;
    font-size: 0.729vw;
    letter-spacing: -0.052vw;
}
.item-wrapper.trip-item .item-details .item-rating .rating-stars{
    font-size: 1vw;
}
.item-wrapper.home-item .item-details .item-rating .rating-stars{
    font-size: 0.6vw;
}
.item-wrapper.package-single-item .item-details .item-rating .rating-stars{
    font-size: 0.6vw;
}
.item-wrapper .item-details .start-from{
    position: absolute;
    top: 2.4vw;
    right: 1vw;
    font-size: 0.625vw;
    line-height: 0.677vw;
    color: #808080;
}
.item-wrapper .item-price{
    position: absolute;
    bottom: 1.042vw;
    right: -0.417vw;
    width: 6.302vw;
    height: 1.771vw;
    font-size: 0.729vw;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}
.item-wrapper.hotel-item .item-price,
.item-wrapper.trip-item .item-price{
    bottom: auto;
    top: 0.521vw;
}
.item-wrapper.car-item .item-price{
    bottom: auto;
    top: 3.125vw;
}
.item-wrapper.home-item .item-price-deleted{
    display: block;
    color: #808080;
    font-size: 0.677vw;
    margin: 1.8vw auto 0.6vw;
}
.item-wrapper .item-price:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../images/price.svg") center no-repeat;
    background-size: contain;
    z-index: -1;
}
.item-wrapper .item-features{
    position: absolute;
    bottom: 1.042vw;
    right: 0.521vw;
}
.item-wrapper .item-features li{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 7vw;
    height: 2vw;
    padding: 0.208vw 0.5vw;
    margin-top: 0.5vw;
    color: #fff;
    background: #F4477C;
    border-radius: 0.521vw;
    font-weight: 600;
    font-size: 0.9vw;
    gap: 0 0.5vw;
}
.item-wrapper .item-features li img{
    width: 1vw;
    height: 1vw;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.item-wrapper .item-features li span{
    font-weight: 600;
    margin-right: 0.208vw;
}
.items-ad{
    display: block;
    max-width: 100%;
    width: 17.813vw;
    border-radius: 0.781vw;
    box-shadow: 0 0.156vw 0.313vw rgba(0, 0, 0, 0.16);
    margin: 1.042vw auto;
    overflow: hidden;
}
.items-ad img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dresses-ad, .dress-item{
    height: 30.573vw;
}
.accessories-ad, .accessory-item{
    height: 16.094vw;
}
.makeup-artists-ad, .makeup-artist-item{
    height: 16.406vw;
}
.photographers-ad, .photographer-item{
    height: 16.406vw;
}
.beauty-centers-ad, .beauty-center-item{
    height: 16.406vw;
}
.doctors-ad, .doctor-item{
    height: 16.406vw;
}
.hotels-ad, .hotel-item{
    height: 19.479vw;
}
.trips-ad{
    height: 21.094vw;
}
.cars-ad, .car-item{
    height: 25.208vw;
}
.installment-banner{
    display: block;
    width: 100%;
    height: 8.90625vw;
    border-radius: 0.78125vw;
    overflow: hidden;
}
.installment-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.offer-banner{
    position: relative;
    display: block;
    width: 100%;
    height: 11.615vw;
    border-radius: 0.78125vw;
    overflow: hidden;
}
.offer-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-title{
    display: block;
    font-size: 1.563vw;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    margin-top: 2.604vw;
}
.section-title.accessories-title{
    color: rgba(201, 60, 60, 0.8);
}
.section-title.single-title{
    font-size: 1.25vw;
}
/* Single Categories */
.banner-slider{
    margin-top: 20px;
}
.banner-slider .banner-mask{
    width: 100%;
    height: 21.667vw;
    border-radius: 0.781vw;
    overflow: hidden;
}
.banner-slider .banner-mask img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Brands */
.brand-item{
    position: relative;
    display: block;
    width: 8.854vw;
    max-width: 100%;
    color: #000 !important;
    text-decoration: none !important;
    margin: 1.042vw auto;
    text-align: center;
}
.brand-item .brand-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 0.208vw solid #E0E0E0;
    border-radius: 0.781vw;
    width: 8.073vw;
    height: 8.073vw;
}
.brand-item .brand-logo img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
.brand-item .brand-title{
    display: block;
    margin: 0.521vw auto;
    font-size: 0.938vw;
}
.brand-item .brand-rating{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: #fff;
    border-radius: 0.521vw;
    box-shadow: 0 0.156vw 0.260vw rgba(13, 12, 34, 0.07);
    padding: 0.208vw  0.417vw;
    margin: 0 auto;
    text-align: center;
}
.brand-item .brand-rating .rating-number{
    display: inline-block;
    font-weight: 500;
    font-size: 0.729vw;
    line-height: 0.729vw;
    color: #000;
    margin-right: 0.260vw;
}
.brand-item .brand-rating .rating-stars{
    display: inline-block;
    color: #F4477C;
    font-size: 0.625vw;
    letter-spacing: -0.052vw;
}
.brand-item .btn-follow{
    display: block;
    border-radius: 0.781vw;
    background: #0057B5;
    color: #fff;
    font-size: 0.938vw;
    line-height: 0.938vw;
    text-align: center;
    margin: 1.042vw auto 0;
    padding: 0.781vw;
    min-width: 80%;
}
.brand-item .btn-follow img{
    display: inline-block;
    width: 0.833vw;
    margin-right: 0.260vw;
}
.sort-items {
    display: block;
    margin: 1.042vw auto 2.083vw;
}
.sort-items .dropdown .dropdown-toggle{
    height: 2.760vw;
    border-radius: 0.781vw;
    background: #fbfbf6;
    box-shadow: 0 0.156vw 0.313vw rgba(13, 12, 34, 0.07);
    font-weight: 500;
    color: rgba(128, 128, 128, 0.8);
    font-size: 1.25vw;
}
.sort-items .dropdown .dropdown-toggle span,
.sort-items .dropdown .dropdown-toggle::after{
    color: rgba(255, 185, 0, 0.8);
}
.sort-items .dropdown-menu{
    border-radius: 1.302vw;
    border: none;
    background: #f2f2f2;
    box-shadow: 0.521vw 0.78125vw 1.5625vw rgba(0, 0, 0, 0.13);
    padding: 1.5vw;
}
.sort-items .dropdown-item{
    font-weight: 500;
    font-size: 1.458vw;
    line-height: 1.458vw;
    margin: 1vw 0;
}
.filter-btns {
    display: block;
    margin: 1.042vw auto 2.083vw;
}
.filter-btns .btn{
    display: inline-block;
    margin-right: 0.521vw;
    min-width: 10.052vw;
    height: 3.646vw;
    border-radius: 1.823vw;
    background: transparent;
    border: 0.156vw solid #0057B5;
    box-shadow: none;
    color: #000;
    font-weight: 500;
    font-size: 1.25vw;
    line-height: 1.25vw;
}
.filter-btns .btn:last-of-type{
    margin-right: 0;
}
.filter-btns .btn.active{
    background: #0057B5;
    color: #fff;
}
.filter-btns .dropdown{
    display: inline-block;
    margin-right: 0.521vw;
}
.filter-btns .dropdown .dropdown-toggle .badge{
    position: absolute;
    top: -0.8vw;
    right: 0.3vw;
    width: 1.875vw;
    height: 1.875vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    background: #F4477C;
    color: #000;
    font-size: 0.938vw;
}
.filter-btns .dropdown .dropdown-menu{
    background: #fff;
    border: none;
    border-radius: 0.781vw;
    filter: drop-shadow(0vw 0.156vw 0.313vw rgba(0, 0, 0, 0.16));
}
/* Seller */
.seller-details{
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-top: 3vw;
}
.seller-details:before{
    content: '';
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url("../images/Path 3932.svg") center no-repeat;
    background-size: contain;
    width: 100%;
    height: 150%;
    z-index: -1;
}
.seller-details .btn-installment{
    position: absolute;
    top: -1vw;
    right: 0;
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #000;
    font-weight: 500;
    font-size: 1.042vw;
    line-height: 1.25vw;
}
.seller-details .btn-installment .installment-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 0.521vw;
    width: 3.75vw;
    height: 3.75vw;
    border-radius: 0.781vw;
    background: #0057B5;
    box-shadow: 0 0.156vw 0.313vw rgba(19, 19, 19, 0.1);
    overflow: hidden;
}
.seller-details .btn-installment .installment-icon img{
    width: 2.708vw;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.seller-details .seller-img{
    position: relative;
    display: block;
    width: 8.75vw;
    height: 8.75vw;
    margin: 0 auto;
}

.seller-details.seller-vip .seller-img:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    background: url("../images/Group 7818.svg") center no-repeat;
    background-size: contain;
    width: 1.771vw;
    height: 1.771vw;
    z-index: 2;
}
.seller-details .seller-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0.208vw solid #ccc;
    border-radius: 0.781vw;
}
.seller-details.seller-vip .seller-img img{
    border-color: #FFB900;
}
.seller-details .seller-name{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.146vw;
    margin: 0.521vw auto;
}
.seller-details .seller-title{
    display: block;
    color: #373737;
    font-weight: 500;
    font-size: 0.938vw;
    line-height: 0.938vw;
}
.seller-details .btn-chat{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 10.156vw;
    height: 2.604vw;
    border-radius: 0.781vw;
    background: #0057B5;
    box-shadow: 0 0.156vw 0.313vw rgba(0, 0, 0, 0.16);
    color: #f9f8f8;
    font-size: 0.833vw;
    margin: 1.042vw auto;
}
.seller-details .btn-chat img{
    width: 1.406vw;
    margin-right: 0.521vw;
}
.seller-details .seller-location{
    display: block;
    color: #0057B5;
    font-size: 0.833vw;
    line-height: 0.729vw;
    margin: 0.521vw auto;
}
.seller-details .seller-location img{
    width: 1.146vw;
    margin-right: 1.042vw;
}
.seller-details .seller-info{
    display: flex;
    align-items: center;
    justify-content: center;
}
.seller-details .seller-info li{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.042vw;
    min-height: 2.188vw;
    background: #fbfbf6;
    filter: drop-shadow(0vw 0.156vw 0.313vw rgba(13, 12, 34, 0.07));
    color: #000;
    font-weight: 500;
    font-size: 0.833vw;
    margin: 0.521vw 1.042vw;
}
.seller-details .seller-info li img{
    max-width: 1.25vw;
    max-height: 1.25vw;
    object-fit: contain;
    object-position: center;
    margin-right: 0.521vw;
}
.seller-details .seller-actions{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0.521vw auto;
}
.seller-details .seller-actions .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 10.156vw;
    height: 3.594vw;
    border-radius: 0.781vw;
    box-shadow: 0 0.156vw 0.313vw rgba(0, 0, 0, 0.16);
    margin: 0.521vw 1.042vw;
}
.seller-details .seller-actions .btn-unfollow{
    background: #f9f8f8;
    color: #808080;
    font-weight: 600;
    font-size: 1.302vw;
}
.seller-details .seller-actions .btn-unfollow img{
    width: 1.25vw;
    margin-right: 0.521vw;
}
.seller-details .seller-actions .btn-request{
    background: #F4477C;
    color: #000;
    font-size: 1.042vw;
    line-height: 1.354vw;
}
.seller-details .seller-actions .btn-request img{
    width: 2.188vw;
    margin-right: 0.521vw;
}
.photographer-pages{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16vw;
    height: 3.59375vw;
    background: #fff;
    margin-top: 1vw;
    overflow: hidden;
}
.photographer-pages a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 100%;
    border: 1px solid #0057B5;
    background: transparent;
    color: #100f2a;
    font-weight: 500;
    font-size: 1.40625vw;
    margin: 0 -0.26vw;
    transition: all 0.25s ease-in-out;
}
.photographer-pages a:first-of-type{
    border-radius: 0.521vw 0 0 0.521vw;
    border-right: none;
}
.photographer-pages a:last-of-type{
    border-radius: 0 0.521vw 0.521vw 0;
    border-left: none;
}
.photographer-pages a.active{
    border-radius: 0.521vw;
    border-color: transparent;
    background: linear-gradient(#fcdb59 0%, #ffb900 100%);
    color: #fff;
    z-index: 1;
}
/* Albums */
.albums-header{
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    background: url("../images/Group 3506.png") center no-repeat;
    background-size: cover;
    border-radius: 0.521vw;
    width: 100%;
    height: 7.34375vw;
    padding: 1.25vw;
}
.albums-header.seller-vip{
    background: url("../images/Group 5973.png") center no-repeat;
    background-size: cover;
}
.albums-header .albums-title{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 2.552vw;
}
.albums-header .albums-text{
    display: block;
    color: #000;
    font-size: 1vw;
}

.album-item{
    position: relative;
    display: block;
    width: 22.1875vw;
    max-width: 100%;
    height: 21.09375vw;
    border-radius: 0.521vw;
    margin: 1.667vw auto;
    overflow: hidden;
    z-index: 1;
}
.album-item.album-header{
    width: 100%;
    height: 10.104vw;
}
.album-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.album-item .album-details{
    position: absolute;
    bottom: -4.167vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 4.167vw;
    border-radius: 0 0 0.521vw 0.521vw;
    backdrop-filter: blur(1.979vw);
    --webkit-backdrop-filter: blur(1.979vw);
    background-color: rgba(255, 255, 255, 0.17);
    color: #0D0C22;
    padding: 0.5vw 1.25vw;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}
.album-item:hover .album-details{
    opacity: 1;
    bottom: 0;
}
.album-item.album-header .album-details{
    bottom: 0;
    margin: 0;
    display: inline-flex;
    flex-flow: column;
    justify-content: center;
    width: 20.885vw;
    height: 100%;
    opacity: 1;
}
.album-item .album-details .album-name{
    display: block;
    font-weight: 500;
    font-size: 1.40625vw;
    line-height: 1.667vw;
}
.album-item .album-details .album-date{
    display: block;
    font-weight: 500;
    font-size: 1.09375vw;
}
.album-item.album-header .album-details .album-name{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 2.552vw;
    margin-bottom: 0.5vw;
}
.album-item.album-header .album-details .album-text{
    display: block;
    color: #000;
    font-size: 1vw;
}
.album-item .view-album{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5vw;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}
.album-item:hover .view-album{
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}
/* Item Details */
.item-single-wrapper{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 1vw auto;
}
.item-single-images{
    position: relative;
    display: inline-block;
    width: 64%;
    border-radius: 0.781vw;
    background: linear-gradient(#f0f7ff 0%, #fff 100%);;
    padding: 7.813vw 2.604vw 3.906vw;
    margin: 1.042vw 3% auto 0;
    z-index: 1;
}
.item-single-images:before{
    content: '';
    position: absolute;
    top: 1.146vw;
    left: 2.292vw;
    background: url("../images/Group 5120.svg") center no-repeat;
    background-size: contain;
    width: 10.260vw;
    height: 8.490vw;
    z-index: -1;
}
.item-single-images .item-img{
    display: block;
    width: 100%;
    height: 45vh;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}
.item-single-images .item-img img{
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
    border-radius: 0.781vw;
}
.item-single-images .item-thumbnails{
    display: block;
    width: 100%;
    margin: 1.042vw auto;
    text-align: center;
}
.item-single-images .item-thumbnails .item-thumbnail{
    display: inline-block;
    width: 3.75vw;
    height: 3.542vw;
    border-radius: 0.781vw;
    margin: 0.521vw;
    overflow: hidden;
}
.item-single-images .item-thumbnails .item-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.item-single-images .btn-light{
    position: absolute;
    top: 1.354vw;
    right: 2.604vw;
    background: #fff;
    height: 3.021vw;
    font-size: 0.729vw;
}
.item-single-images .btn-light img{
    width: 1.5625vw;
    margin-right: 0.885vw;
}
.item-actions{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.item-actions .btn{
    display: inline-block;
    background: transparent;
    border: none;
    box-shadow: none !important;
    color: #000;
    text-align: center;
    font-size: 0.729vw;
    line-height: 0.938vw;
    margin-right: 0.521vw;
    padding: 0;
}
.item-actions .btn:last-of-type{
    margin-right: 0;
}
.item-actions .btn .img-mask{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.760vw;
    height: 2.760vw;
    background: #f2f2f2;
    filter: drop-shadow(0vw 0.156vw 0.260vw rgba(13, 12, 34, 0.07));
    border-radius: 50%;
    margin: 0 auto 0.521vw;
}
.item-actions .btn .img-mask img{
    width: 0.885vw;
    height: auto;
    object-fit: contain;
}
.item-single-details{
    position: relative;
    display: inline-block;
    width: 33%;
    border-radius: 0.781vw;
    background: linear-gradient(#f0f7ff 0%, #fff 100%);
    padding: 2vw;
    margin: 1.042vw auto;
    z-index: 1;
}
.item-single-details .item-name{
    display: block;
    font-weight: 600;
    font-size: 1.09375vw;
    margin: 0.781vw 0;
}
.item-single-details .item-name span{
    display: inline-block;
    color: #0057B5;
}
.item-single-details .item-title{
    display: block;
    font-size: 1.25vw;
    line-height: 0.938vw;
}
.item-single-details .owner-store{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1vw;
}
.item-single-details .owner-store .owner-logo{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.823vw;
    height: 1.719vw;
    background: #fff;
    border-radius: 0.625vw;
    box-shadow: 0 0.156vw 0.313vw rgba(13, 12, 34, 0.07);
    margin-right: 0.521vw;
    overflow: hidden;
}
.item-single-details .owner-store .owner-logo img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.item-single-details .owner-store .owner-details .owner-title{
    display: block;
    font-weight: 500;
    font-size: 1.042vw;
    line-height: 0.938vw;
}
.item-single-details .btn-installment{
    display: block;
    text-align: center;
    margin: 0 auto 1vw;
    padding: 0;
    color: #000;
    font-weight: 500;
    font-size: 0.625vw;
    line-height: 1.25vw;
}
.item-single-details .btn-installment .installment-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 2.604vw;
    height: 2.604vw;
    border-radius: 0.625vw;
    background: #fff;
    box-shadow: 0 0.156vw 0.313vw rgba(19, 19, 19, 0.1);
    margin: 0 auto 0.208vw;
    overflow: hidden;
}
.item-single-details .btn-installment .installment-icon img{
    width: auto;
    max-width: 1.458vw;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.item-single-details .item-rating{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 5.104vw;
    min-height: 1.510vw;
    background: #fff;
    border-radius: 0.521vw;
    box-shadow: 0 0.156vw 0.260vw rgba(13, 12, 34, 0.07);
    padding: 0.208vw 0.417vw;
}
.item-single-details .item-rating .rating-number{
    display: inline-block;
    font-weight: 500;
    font-size: 0.729vw;
    line-height: 0.781vw;
    color: #000;
    margin-right: 0.521vw;
}
.item-single-details .item-rating .rating-stars{
    display: inline-block;
    color: #F4477C;
    font-size: 0.729vw;
    letter-spacing: -0.052vw;
}
.item-single-details .btn-store{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.198vw;
    border-radius: 0.599vw;
    background: #1fca76;
    color: #fff;
    font-weight: 600;
    font-size: 0.625vw;
    margin-top: 0.5vw;
}
.item-single-details .label-outdoor{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.979vw;
    border-radius: 0.78125vw;
    background: #75b2f5;
    color: #000;
    font-weight: 600;
    font-size: 1.09375vw;
    margin-top: 0.5vw;
    padding: 0 0.833vw;
}
.item-single-details .label-branches{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.354vw;
    border-radius: 0.677vw;
    background: #808080;
    color: #fff;
    font-weight: 600;
    font-size: 0.625vw;
    padding: 0 0.5vw;
    margin-top: 0.78125vw;
}
.item-single-details hr {
    border-top: 0.052vw solid #E0E0E0;
}
.item-single-details .item-price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 2.865vw;
    background: #fbfbf6;
    border: 0.104vw solid #808080;
    border-radius: 1.5625vw;
    padding: 0.26vw;
}
.item-single-details .item-price .price{
    display: inline-flex;
    font-weight: 600;
    font-size: 0.99vw;
    margin: 0 0.521vw;
}
.item-single-details .item-price .price span {
    display: inline-block;
    font-size: 0.573vw;
    margin-left: 0.26vw;
    margin-top: 0.4vw;
}
.item-single-details .item-price .title{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 4.21875vw;
    height: 2.135vw;
    border-radius: 1.042vw;
    background: #F4477C;
    font-weight: 600;
    font-size: 0.833vw;
    color: #373737;
}
/* The container */
.payment-wrapper{
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0.5vw auto;
}
.radio-container {
    position: relative;
    display: inline-block;
    width: calc(48%);
    margin: 0.5vw 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default radio button */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.radio-container .btn-payment {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    height: 2.344vw;
    padding: 0 0.5vw;
    color: #000;
    border: none;
    border-radius: 0.781vw;
    background: linear-gradient(#c9ebff 0%, #b7baff 100%);
    box-shadow: none;
    font-weight: 600;
    font-size: 0.938vw;
    transition: 0.25s ease-in-out;
}
.radio-container .btn-payment img{
    width: auto;
    max-width: 1.563vw;
    height: auto;
    max-height: 1.563vw;
    object-fit: contain;
    object-position: center;
    margin-right: 0.521vw;
}
/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .btn-payment {
    background: #F4477C;
}
.item-single-details .btn-booking{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    height: 2.917vw;
    border-radius: 0.781vw;
    background: #F4477C;
    box-shadow: 0.156vw 0.156vw 0.781vw rgba(252, 219, 89, 0.26);
    color: #000;
    font-weight: 600;
    font-size: 0.833vw;
}
/* Features */
.features-group {
    margin-bottom: 1.25vw;
}
.features-group .feature-item {
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 19.323vw;
    border-radius: 0.78125vw;
    background: #f9f8f8;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    padding: 0.26vw 0.625vw;
    margin: 0.4vw auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.features-group .feature-item.features-group .feature-item-details {
    max-width: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    padding: 0;
    margin: 0.4vw auto;
}
.features-group .load-more{
    display: block;
    color: #0057B5;
    font-weight: 600;
    font-size: 0.9375vw;
    text-align: center;
    margin-top: 1.25vw;
}
.features-group .feature-item .feature-img{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.323vw;
    height: 4.427vw;
    border-radius: 0.78125vw;
    background: #fff;
    border: 0.15625vw solid #f2f2f2;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
}
.features-group .feature-item .feature-img img{
    width: 2.083vw;
    height: 2.083vw;
    object-fit: contain;
    object-position: center;
}
.features-group .feature-item .feature-details{
    display: inline-flex;
    justify-content: space-between;
    padding: 1.146vw;
    width: 12vw;
}
.features-group .feature-item.features-group .feature-item-details .feature-details{
    padding: 1.146vw;
    width: calc(100% - 8vw);
}
.features-group .feature-item .feature-details .feature-title{
    display: inline-block;
    color: #000;
    font-weight: normal;
    font-size: 0.9375vw;
}
.features-group .feature-item .feature-details .feature-price{
    display: inline-block;
    color: #000;
    font-weight: 600;
    font-size: 0.9375vw;
}
.features-group .feature-item + .features-group .feature-item-text{
    display: block;
    color: #000;
    font-weight: normal;
    font-size: 0.833vw;
    margin-top: 2vw;
}
.features-group .feature-item .see-more{
    display: inline-block;
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.6vw;
    margin: 0 auto;
    text-align: center;
    color: #0057B5;
    font-weight: normal;
    font-size: 0.729vw !important;
    text-decoration: none !important;
}
.features-group .feature-item .feature-label{
    position: absolute;
    right: 1.71875vw;
    top: 1vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* Hide the browser's default radio button */
.feature-label input{
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.feature-label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.771vw;
    height: 1.771vw;
    border-radius: 0.78125vw;
    border: 0.104vw solid #707070;
    background: transparent;
    transition: all 0.25s ease-in-out;
}
/* When the radio button is checked, add a blue background */
.feature-label input:checked ~ .checkmark {
    border: none;
    background-color: #2196F3;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.feature-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the indicator (dot/circle) when checked */
.feature-label input:checked ~ .checkmark:after {
    display: block;
}
/* Style the checkmark/indicator */
.feature-label  .checkmark:after {
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0.6vw;
    height: 0.9vw;
    border: solid white;
    border-width: 0 0.25vw 0.25vw 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%)  rotate(45deg);
}
/* Info */
.details-list{
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.details-list li{
    position: relative;
    display: inline-block;
    text-align: center;
    width: 8.646vw;
    height: 8.854vw;
    border-radius: 0.781vw;
    background: #fff;
    border: 0.156vw solid #f2f2f2;
    margin: 1.302vw;
    padding: 1.042vw;
}
.details-list li img{
    width: 4vw;
    height: 4vw;
    object-fit: contain;
    object-position: center;
}
.details-list li span{
    position: absolute;
    bottom: 1vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    color: #000;
    font-weight: 600;
    font-size: 1.042vw;
    letter-spacing: 0.06em;
    line-height: 1.042vw;
}
.details-list li span.badge{
    bottom: 4.5vw;
    font-size: 1.302vw;
}
.details-list li span.d-flex{
    justify-content: space-evenly;
}
.details-list li span.badge.hotel-badge{
    bottom: 3.2vw;
    font-weight: bold;
    font-size: 1.042vw;
}
.details-block{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 1.042vw;
    background: #f0f7ff;
    padding: 1.823vw 2.083vw;
    margin: 1.042vw auto;
}
.details-block .details-title{
    display: block;
    font-weight: 600;
    font-size: 1.458vw;
    line-height: 2.188vw;
    margin-bottom: 0.5vw;
}
.details-block .details-text{
    display: block;
    font-size: 0.625vw;
}
/* Rating */
.rating-wrapper{
    display: block;
    width: 100%;
    border-radius: 0.781vw;
    background: #fafafa;
    padding: 1.823vw 2.604vw;
    margin: 1.042vw auto;
}
.average-rating-wrapper{
    text-align: center;
    margin: 0 auto;
}
.average-rating-wrapper .average-rating-circle{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto 0.781vw;
    width: 5.729vw;
    height: 5.729vw;
    background: #fff;
    border-radius: 50%;
    filter: drop-shadow(0vw 0.156vw 0.313vw rgba(0, 0, 0, 0.16));
    font-weight: 500;
    font-size: 1.875vw;
}
.average-rating-wrapper .average-rating-stars{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4477C;
}
.average-rating-wrapper .average-rating-text{
    display: block;
    font-size: 0.938vw;
    margin: 0.521vw auto;
}
.average-rating-wrapper .ratings-number{
    display: block;
    font-size: 0.677vw;
    line-height: 0.677vw;
    color: #c7c7c7;
}
.rating-progress-wrapper{
    max-width: 40vw;
    margin: 0.5vw auto;
    border-left:  0.104vw solid #f2f2f2;
    border-right: 0.104vw solid #f2f2f2;
}
.rating-progress{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.75vw auto;
}
.rating-progress .progress {
    width: calc(100% - 7vw);
    height: 1.302vw;
    background-color: #F5F4F4;
    border: 0.052vw solid #ccc !important;
    border-radius: 2.083vw !important;
}
.rating-progress .progress .progress-bar{
    border-radius: 1.042vw;
    background: linear-gradient(to left , #ffb815 , #ffd801 );
}
.rating-progress .stars-number{
    display: inline-block;
    min-width: 3.8vw;
    font-size: 0.938vw;
}
.rating-progress .rating-number{
    display: inline-block;
    min-width: 3.2vw;
    font-size: 0.938vw;
    text-align: center;
}

.rate-product{
    display: block;
    font-weight: 600;
    font-size: 0.885vw;
    line-height: 0.885vw;
}
.rating {
    display: inline-block;
    border: none;
    padding: 0;
    margin: 0.5vw auto 0;
}
.rating > input {
    display: none;
}
.rating > label {
    color: #F4477C;
    margin: 0;
    float: right;
}
.rating-feedback .rating > label {
    color: rgba(22, 36, 43, 0.43);
    margin: 0 0.208vw;
}
.rating > label:before {
    display: inline-block;
    font-family: 'FontAwesome' , serif;
    content: "\f006";
    font-size: 1.5vw;
}
.rating-feedback .rating > label:before {
    content: "\f005";
    font-size: 1.8vw;
}
.rating > input:checked ~ label:before, /* show gold star when clicked */
.rating:not(:checked) > label:hover:before, /* hover current star */
.rating:not(:checked) > label:hover ~ label:before {
    content: "\f005";
}
.rating-feedback .rating > input:checked ~ label:before, /* show gold star when clicked */
.rating-feedback .rating:not(:checked) > label:hover:before, /* hover current star */
.rating-feedback .rating:not(:checked) > label:hover ~ label:before {
    color: #F4477C;
}
.btn-customer-review{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.760vw;
    border-radius: 1.406vw;
    background: #f9f8f8;
    border: 0.052vw solid #ccc;
    color: #000;
    font-weight: 600;
    font-size: 0.938vw;
    margin: 0 auto;
}
/* Comments */
.comments-wrapper{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0.781vw;
    background: #fafafa;
    padding: 1.302vw 2.083vw;
}
.comments-wrapper .comments-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.938vw;
    line-height: 0.573vw;
}
.comments-wrapper .comments-title a{
    color: #000 !important;
    font-size: 0.729vw;
    line-height: 0.729vw;
    text-decoration: none !important;
}
.comments-wrapper .comments-title a img{
    display: inline-block;
    vertical-align: middle;
    width: 1.198vw;
    height: 1.198vw;
    border-radius: 50%;
    margin-right: 0.260vw;
}
.comments-wrapper .comment-block{
    position: relative;
    display: block;
    width: 98%;
    border-radius: 0.781vw;
    background: #fff;
    padding: 1.302vw 2.083vw;
    margin: 0.75vw auto;
}
.comments-wrapper .comment-block .commenter-name{
    display: block;
    color: #0d0c22;
    font-size: 0.938vw;
    line-height: 0.469vw;
}
.comments-wrapper .comment-block .comment-text{
    display: block;
    color: #808080;
    font-size: 0.885vw;
    line-height: 1.302vw;
    margin: 1.042vw auto;
}
.comments-wrapper .comment-block .commenter-rating{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #F4477C;
    font-size: 0.833vw;
}
.comments-wrapper .comment-block .comment-date{
    position: absolute;
    bottom: 1.302vw;
    right: 1.302vw;
    color: #808080;
    font-size: 0.938vw;
    line-height: 0.469vw;
}
.comments-wrapper .read-more{
    display: flex;
    justify-content: flex-end;
    color: #000;
    font-size: 0.729vw;
    line-height: 0.729vw;
}
.form-addComment .form-control{
    color: #d9d9d9;
    border-radius: 0.781vw;
    background: #f9f8f8;
    font-size: 0.938vw;
}
.form-addComment .btn-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.760vw;
    background: #F4477C;
    border-radius: 0.781vw;
    font-size: 1vw;
    font-weight: bold;
}
.complain-link{
    display: block;
    color: rgba(216, 72, 92, 0.8) !important;
    font-size: 1.25vw;
    margin-top: 1.823vw;
}
.schedule-title{
    display: block;
    color: #0057B5;
    font-weight: 600;
    font-size: 1.5625vw;
    text-align: center;
}
.confirm-modal .modal-dialog{
    max-width: 73.4375vw;
    margin-left: auto;
    margin-right: auto;
}
.confirm-modal .modal-content{
    border-radius: 0.78125vw;
}
.confirm-modal .modal-body{
    padding: 5.208vw;
}
.confirm-modal .modal-body .close{
    margin-top: -3vw;
}
.schedule-wrapper{
    position: relative;
    display: block;
    border-radius: 0.78125vw;
    background: #f2f2f2;
    padding: 1.823vw 5.729vw;
    margin: 1.823vw auto;
}
.schedule-wrapper .item-wrapper{
    width: 32.604vw;
    background: #fff;
    margin-bottom: 2.604vw;
}
.schedule-wrapper .item-wrapper .item-details {
    padding: 1.2vw 1.71875vw;
}
.schedule-wrapper .item-wrapper .item-details .item-title {
    height: auto;
    color: #000;
    font-weight: normal;
    font-size: 1.354vw;
    margin-bottom: 1.25vw;
}
.schedule-wrapper .item-wrapper .item-price {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: none;
    width: auto;
    height: auto;
    justify-content: flex-end;
    color: #000;
    font-weight: 600;
    font-size: 1.25vw;
}
.schedule-wrapper .item-wrapper .item-details .item-rating {
    background: #F9F8F8;
}
.selected-date-wrapper{
    display: flex;
    justify-content: space-between;
    color: #000;
    margin-top: 1.25vw;
}
.selected-date-wrapper .title{
    display: inline-block;
    color: #0057B5;
    font-size: 1.354vw;
}
.selected-date-wrapper .date{
    font-size: 1.354vw;
}
.selected-date-wrapper .time{
    font-size: 1.146vw;
}
.selected-date-wrapper .time span{
    font-size: 1.354vw;
}
.buying-wrapper{
    position: relative;
    display: block;
    width: 18.4375vw;
    border-radius: 0.78125vw;
    background: #fff;
    padding: 0.78125vw;
    margin: 0 auto;
    text-align: center;
}
.buying-wrapper .buying-title{
    display: block;
    color: #0057B5;
    font-weight: bold;
    font-size: 1.25vw;
    margin-bottom: 0.26vw;
}
.buying-wrapper .buying-text{
    display: block;
    color: #000;
    font-weight: 300;
    font-size: 0.729vw;
    letter-spacing: 0.03em;
}
.buying-wrapper .buying-text span{
    font-weight: bold;
}
.schedule-select-title{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.40625vw;
    margin: 3.125vw 0 2.083vw -2.083vw;
}
.schedule-select-title img{
    width: 1.667vw;
    height: 1.667vw;
    object-fit: contain;
    margin-right: 0.78125vw;
}
.schedule-select label{
    color: #100f2a;
    font-weight: 600;
    font-size: 1.042vw;
    margin-bottom: 1.25vw;
}
.schedule-select .label-date{
    display: flex;
    align-items: center;
    height: 2.604vw;
    margin: 0;
}
.schedule-select .form-control{
    height: 2.604vw;
    border-radius: 0.78125vw;
    border: none;
    background: #fff;
    color: #000;
    font-weight: 500;
    text-align: center;
}
.schedule-select.select-month .form-control{
    text-align: initial;
    color: #808080;
    font-weight: normal;
    font-size: 0.9375vw;
}
.schedule-select.select-day .form-control{
    font-size: 1.25vw;
}
.schedule-select.select-time .form-control{
    font-size: 0.729vw;
}
.schedule-select.select-location .form-control{
    color: #808080;
    text-align: initial;
    font-weight: normal;
    font-size: 0.9375vw;
}
.enter-location{
    display: block;
    text-align: center;
    font-size: 0.833vw;
    letter-spacing: 0.05em;
    color: #808080;
}
.enter-location span,.enter-location a{
    color: #0057B5;
}
.selected-date-block{
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.042vw;
    color: rgba(16, 15, 42, 0.4);
    margin-top: 2.083vw;
}
.selected-date-block .selected-date{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 14.6875vw;
    height: 2.34375vw;
    border-radius: 1.042vw;
    background: rgba(255, 255, 255, 0.4);
    color: rgba(0, 0, 0, 0.4);
    font-weight: 500;
    font-size: 1.25vw;
    margin-left: 0.78125vw;
}
.estimated-time{
    display: block;
    color: #373737;
    font-size: 1.042vw;
    margin-top: 1.25vw;
}
/* Booking */
.booking-wrapper{
    position: relative;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}
.profile-wrapper + .booking-wrapper{
    margin-top: -4.167vw;
}
.booking-wrapper > div:first-of-type{
    display: inline-block;
    width: 16.875vw;
    margin-right: 1.563vw;
    background: #f9f8f8;
    border-radius: 0.781vw;
    box-shadow: 0 0.156vw 0.313vw rgba(0, 0, 0, 0.16);
    padding: 1.823vw 0.625vw 0.625vw;
}
.chat-room .booking-wrapper > div:first-of-type {
    width: 23.958vw;
    background: #fff;
    box-shadow: none;
    padding: 1.875vw 1.25vw;
}
.booking-wrapper > div:last-of-type{
    display: inline-block;
    width: calc(100% - 18.438vw);
    border-radius: 0.781vw;
    background: #e6f0ff;
    box-shadow: 0 0.156vw 0.313vw rgba(0, 0, 0, 0.16);
}
.chat-room .booking-wrapper > div:last-of-type{
    width: 43.90625vw;
    background: #fff;
    box-shadow: none;
    padding: 1.5625vw;
}
.booking-wrapper .nav-pills .nav-link{
    position: relative;
    display: flex;
    word-spacing: 9999em;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0.313vw 0;
    min-height: 5.573vw;
    background: #fff;
    border-radius: 0.781vw;
    box-shadow: 0 0 0.521vw rgba(13, 12, 34, 0.07);
    font-size: 1.25vw;
    font-weight: 500;
    line-height: 1.823vw;
    color: #808080;
    z-index: 1;
}
.chat-room .booking-wrapper .nav-pills .nav-link{
    word-spacing: initial;
    justify-content: flex-start;
    text-align: initial;
    margin: 0;
    min-height: auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid rgba(19, 19, 19, 0.07);
}
.booking-wrapper .nav-pills .nav-link.active,
.booking-wrapper .nav-pills .show>.nav-link{
    color: #0d0c22;
}
.booking-wrapper .nav-pills .nav-link.active:before,
.booking-wrapper .nav-pills .show>.nav-link:before,
.booking-wrapper .nav-pills .nav-link.active:after,
.booking-wrapper .nav-pills .show>.nav-link:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 0.781vw 0 0 0.781vw;
    z-index: -1;
}
.booking-wrapper .nav-pills .nav-link.active:before,
.booking-wrapper .nav-pills .show>.nav-link:before{
    width: calc(100% + 2.188vw);
    background: #E6F0FF;
}
.booking-wrapper .nav-pills .nav-link.active:after,
.booking-wrapper .nav-pills .show>.nav-link:after{
    width: 1.510vw;
    background: #0057B5;
}
.chat-room .booking-wrapper .nav-pills .nav-link.active:before,
.chat-room .booking-wrapper .nav-pills .show>.nav-link:before,
.chat-room .booking-wrapper .nav-pills .nav-link.active:after,
.chat-room .booking-wrapper .nav-pills .show>.nav-link:after{
    display: none;
}
.booking-wrapper .tab-content{
    padding: 3.125vw 4.167vw;
}
.chat-room .booking-wrapper .tab-content{
    border-radius: 0.78125vw;
    background: #f6f6f6;
    padding: 1.77vw 3.229vw 0.4vw;
}
.approved-wrapper{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin-top: 1vw;
    padding: 2vw 0;
    z-index: 1;
}
.approved-wrapper:before{
    content: '';
    position: absolute;
    top: 0;
    left: -2vw;
    right: -2vw;
    width: calc(100% + 4vw);
    height: 100%;
    border-radius: 0.78125vw;
    background: #fff;
    z-index: -1;
}
.booking-wrapper .tab-content .tab-content-title{
    display: block;
    font-weight: 500;
    font-size: 1.5625vw;
    line-height: 2.03125vw;
    text-align: center;
    color: #000;
    margin-bottom: 1.875vw;
}
.booking-wrapper .tab-content .orders-list{
    position: relative;
    display: block;
}
.orders-list .order-item{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 9.271vw;
    border-radius: 0.781vw;
    background: #f2f2f2;
    box-shadow: 0 0.156vw 0.313vw rgba(13, 12, 34, 0.07);
    margin: 0.75vw auto;
}
.orders-list .order-item.approved-item{
    background: #0057B5;
    margin-bottom: 5vw;
}
.orders-list .order-item.invoice-item {
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
}
.orders-list .order-item .order-num{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 5.156vw;
    height: 100%;
    background: #F2F2F2;
    border-radius: 0.781vw 0 0 0.781vw;
    color: #373737;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.25vw;
}
.orders-list.payment-orders .order-item .order-num{
    background: #0057B5;
    color: #fff;
}
.orders-list .order-item.approved-jar{
    height: 22vw;
}
.orders-list .order-item .order-details{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0 0.781vw 0.781vw 0;
    box-shadow: 0 0.156vw 0.313vw rgba(13, 12, 34, 0.07);
    padding: 0.729vw 1.25vw;
}
.orders-list .order-item.approved-jar .order-details{
    flex-flow: column;
}
.orders-list .order-item.approved-jar .order-details .jar-info{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.orders-list .order-item.approved-jar .order-details .jar-contents{
    display: block;
    width: 100%;
}
.orders-list .order-item.approved-jar .order-details .jar-contents > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-weight: 600;
    font-size: 1.146vw;
    letter-spacing: 0.01em;
    color: #100f2a;
    margin: 0.208vw auto;
}
.orders-list .order-item.approved-jar .order-details .jar-contents > div .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 8.177vw;
    height: 2.083vw;
    font-weight: normal;
    font-size: 0.885vw;
    border: none;
    border-radius: 0.78125vw;
    color: #fff;
}
.orders-list .order-item.approved-jar .order-details .jar-contents > div .btn-success{
    background: #00ca76;
}
.orders-list .order-item.approved-jar .order-details .jar-contents > div .btn-danger{
    background: #C93C3C;
}
.orders-list .order-item .order-details .item-img{
    display: inline-flex;
    width: 8.229vw;
    height: 7.813vw;
    border-radius: 1.563vw;
    margin-right: 1.198vw ;
    overflow: hidden;
}
.orders-list .order-item.approved-jar .order-details .item-img{
    width: 6.382vw;
    height: 7.528vw;
    border-radius: 0;
}
.orders-list .order-item .order-details .item-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.orders-list .order-item .order-details .item-details{
    display: inline-flex;
    width: 100%;
}
.orders-list .order-item .order-details .item-title{
    display: block;
    font-size: 1.406vw;
}
.orders-list .order-item.approved-jar .order-details .item-title{
    font-weight: 600;
    font-size: 1.71875vw;
    margin-top: 1vw;
}
.orders-list .order-item .order-details .owner-store{
    display: flex;
    align-items: center;
    margin: 0.8vw 0;
}
.orders-list.payment-orders .order-item .order-details .owner-store{
    margin: 0.4vw 0;
}
.orders-list .order-item .order-details .owner-store .owner-logo{
    display: inline-block;
    width: 1.823vw;
    height: 1.823vw;
    border-radius: 0.625vw;
    margin-right: 0.313vw;
    overflow: hidden;
}
.orders-list .order-item .order-details .owner-store .owner-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.orders-list .order-item .order-details .owner-store .owner-title{
    display: inline-block;
    font-size: 1.25vw;
    line-height: 1.875vw;
}
.orders-list .order-item .order-details .order-date{
    display: block;
    font-size: 1.042vw;
    line-height: 1.25vw;
}
.orders-list.payment-orders .order-item .order-details .order-date{
    color: #000;
    font-weight: bold;
    font-size: 0.9375vw;
}
.orders-list .order-item .order-details .order-date span{
    display: inline-block;
}
.orders-list .order-item .order-details .order-date span:nth-of-type(2){
    display: inline-block;
    font-weight: 600;
    margin-left: 0.781vw;
}
.orders-list.payment-orders .order-item .order-details .payment-date{
    display: block;
    color: #000;
    font-size: 0.833vw;
    line-height: 1.25vw;
}
.orders-list.payment-orders .order-item .order-details .rest-amount{
    display: block;
    color: #000;
    text-align: center;
    font-size: 0.9375vw;
    line-height: 2.552vw;
}
.orders-list .order-item .order-details .item-price{
    display: block;
    font-weight: 600;
    font-size: 1.615vw;
    line-height: 2.5vw;
    margin-top: 1.5vw;
    margin-bottom: 1vw;
}
.orders-list .order-item .order-details .order-status{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9.375vw;
    height: 2.604vw;
    color: #fff;
    border-radius: 1.563vw;
    text-align: center;
    font-size: 1.25vw;
}
.orders-list .order-item .order-details .order-status.waiting{
    background: #C9EBFF;
    color: #373737;
}
.orders-list .order-item .order-details .order-status.confirmed{
    background: #1FCA76;
}
.orders-list .order-item .order-details .order-status.done{
    background: #1FCA76;
    font-weight: bold;
    font-size: 1.458vw;
}
.orders-list .order-item .order-details .order-status.amount{
    background: #C93C3C;
    font-weight: bold;
    font-size: 1.25vw;
}
.orders-list .order-item .order-details .order-status.canceled{
    background: #C93C3C;
}
.orders-list .order-item .order-details .order-status.payment-status{
    width: 6.615vw;
    height: 1.71875vw;
    background: #0057B5;
    font-size: 0.9375vw;
    margin: 0.7vw auto 0;
}
.orders-list .order-item .order-action{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.156vw;
    height: 100%;
}
.orders-list .order-item .order-action .btn-delete-order{
    background: url("../images/delete.svg") center no-repeat;
    background-size: contain;
    width: 2.5vw;
    height: 2.5vw;
    border: none;
    box-shadow: none;
}
.orders-list .order-item .order-action .btn-pay{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0057B5;
    border-radius: 0.781vw;
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 0;
}
.orders-list .order-item .order-action .btn-see-invoice {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: #F2F2F2;
    border-radius: 0.781vw;
    color: #808080;
    width: 100%;
    height: 100%;
    padding: 0.521vw;
    font-weight: 500;
    font-size: 1.042vw;
    line-height: 1.302vw;
}
.orders-list .order-item .order-action .btn-see-invoice img{
    width: 2vw;
    margin-bottom: 0.5vw;
}
.orders-list .order-item.approved-item .cancel-wrapper{
    position: absolute;
    bottom: -3.542vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 4.635vw;
    border-radius: 0.521vw;
    background: #c9ebff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.07);
    z-index: -1;
}
.orders-list .order-item.approved-item .cancel-wrapper .cancel-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 3.542vw;
}
.orders-list .order-item.approved-item .cancel-wrapper .cancel-content .btn-cancel{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 13.177vw;
    height: 2.552vw;
    border-radius: 0.521vw;
    background: #c9ebff;
    border: 0.026vw solid #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.07);
    color: #100f2a;
    font-weight: normal;
    font-size: 1.458vw;
}
.orders-list .order-item.approved-item .cancel-wrapper .cancel-content .cancel-countdown{
    display: inline-block;
    font-size: 1.458vw;
    color: #100f2a;
}
.orders-list .order-item.approved-item .cancel-wrapper .cancel-content .cancel-countdown .countdown{
    display: inline-block;
    font-size: 1.51vw;
    min-width: 9vw;
    text-align: center;
}
.countdown .running{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}
/* The container */
.checkbox-container {
    position: relative;
    display: block;
    width: 2.5vw;
    height: 2.5vw;
    border: 0.208vw solid transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
/* Create a custom checkbox */
.checkbox-container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: transparent;
    width: 2.5vw;
    height: 2.5vw;
    border: 0.208vw solid #ccc;
    border-radius: 1.042vw;
}
/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
    background: #0057B5;
    border-color: transparent;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    top: 0.25vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0.8vw;
    height: 1.4vw;
    border: solid white;
    border-width: 0 0.4vw 0.4vw 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-checkout{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 25.729vw;
    height: 5.833vw;
    border: none;
    border-radius: 0.781vw;
    background: #F4477C;
    box-shadow: 0.156vw 0.156vw 0.781vw rgba(255, 203, 0, 0.4);
    font-weight: 600;
    font-size: 2.083vw;
    line-height: 3.281vw;
    color: #0d0c22;
}
.btn-checkout span{
    display: inline-block;
    font-weight: normal;
    font-size: 1.875vw;
    line-height: 2.240vw;
    margin-left: 1.563vw;
}
/* Owl Carousel */
.owl-wrapper{
    padding: 0 3.125vw;
}
.owl-theme .owl-dots .owl-dot span {
    width: 0.729vw;
    height: 0.729vw;
    background: rgba(0, 27, 64, 0.25) !important
}
.owl-theme .owl-dots .active span {
    width: 2.5vw;
    background: #0057B5 !important
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-55%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 2.34375vw;
    height: 2.34375vw;
    padding: 0 !important;
    margin: 0 !important;
    background: #F9F8F8 !important;
    border: none !important;
    border-radius: 0.781vw !important;
    box-shadow: 0 0.156vw 0.313vw rgba(13, 12, 34, 0.07);
    transition: all 0.5s ease-in-out;
}
.owl-carousel .owl-nav button:hover,
.owl-carousel .owl-nav button:focus {
    color: #0057B5 !important;
}
.owl-carousel .owl-nav button.owl-prev img,
.owl-carousel .owl-nav button.owl-next img{
    width: 1.302vw;
    height: 1.302vw;
    object-fit: contain;
}
.owl-carousel .owl-nav button.owl-next {
    right: -3.646vw
}
.owl-carousel .owl-nav button.owl-prev {
    left: -3.646vw
}
.owl-carousel .owl-nav button.owl-next:hover {
    background: 0 0 !important;
    -webkit-animation: left .2s 3 linear forwards;
    animation: left .2s 3 linear forwards
}

.owl-carousel .owl-nav button.owl-prev:hover {
    background: 0 0 !important;
    -webkit-animation: right .2s 3 linear forwards;
    animation: right .2s 3 linear forwards
}
.owl-carousel .owl-nav button.owl-prev i,
.owl-carousel .owl-nav button.owl-next i{
    font-size: 1.5vw;
    margin-top: 0.4vw;
}
/* Profile */
.profile-wrapper{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0.781vw;
    background: #F9F8F8;
    margin-top: 2vw;
    overflow: hidden;
}
.profile-wrapper .profile-header{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 17.969vw;
    width: 100%;
    background: #c9ebff;
    color: #b3e3ff;
    padding: 0 8.073vw;
    font-weight: bold;
    font-size: 4.167vw;
    overflow: hidden;
}
.profile-wrapper .profile-header:after{
    content: '';
    position: absolute;
    top: 0;
    right: 2.604vw;
    margin: 0;
    background: url("../images/Path 247.svg") center no-repeat;
    background-size: contain;
    width: 19.375vw;
    height: 20.260vw;
    /*z-index: 0;*/
}
.profile-wrapper .user-info{
    position: relative;
    display: block;
    min-height: 15.625vw;
    width: 100%;
    background: #F9F8F8;
    padding: 0 8.073vw;
    z-index: 3;
}
.profile-wrapper .user-info .user-img{
    display: inline-block;
    position: relative;
    top: -2.865vw;
    margin-top: -1.042vw;
    width: 10.313vw;
    height: 10.313vw;
    border-radius: 0.781vw;
    background: #fff;
    border: 0.365vw solid #808080;
}
.profile-wrapper .user-info .user-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.profile-wrapper .user-info .user-name{
    display: inline-block;
    color: #0d0c22;
    font-weight: bold;
    font-size: 2.083vw;
    line-height: 2.969vw;
    margin-left: 2.344vw;
    margin-right: 1.042vw;
}
.profile-wrapper .user-info .user-id{
    display: inline-block;
    font-size: 1.458vw;
    line-height: 1.458vw;
    color: #808080;
}
ul.profile-links{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: -5.47vw auto 0;
    z-index: 5;
}
ul.profile-links li{
    display: inline-block;
}
ul.profile-links li a{
    display: block;
    width: 14.219vw;
    height: 14.219vw;
    border-radius: 0.781vw;
    background: #fff;
    box-shadow: 0 0.156vw 0.313vw rgba(0, 0, 0, 0.16);
    padding: 2.083vw;
    margin: 0 auto;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none !important;
}
ul.profile-links li a .profile-link-img{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 7.031vw;
    height: 7.031vw;
    overflow: hidden;
    margin: 0 auto 1.25vw;
}
ul.profile-links li a .profile-link-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
ul.profile-links li a .profile-link-title{
    display: block;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 1.25vw;
    line-height: 1.458vw;
}
.complete-profile{
    position: relative;
    display: block;
    width: 100%;
    padding: 2.344vw 2.604vw 1.563vw;
    margin-top: 4.688vw;
    z-index: 1;
}
.complete-profile:before, .complete-profile:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
.complete-profile:before{
    background: linear-gradient(90deg, #b7baff 0%, rgba(31, 202, 118, 0.31) 51.53%, #c9ebff 100%);
    opacity: 0.44;
    z-index: -2;
}
.complete-profile:after{
    border: 0.052vw solid #e6e6e6;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(2.135vw);
    --webkit-backdrop-filter: blur(2.135vw);
    background-color: rgba(255, 255, 255, 0.15);
    z-index: -1;
}
.complete-profile .complete-profile-title{
    display: block;
    color: #100f2a;
    font-size: 1.927vw;
    letter-spacing: 0.05em;
    margin-bottom: 1vw;
}
.complete-profile .complete-profile-title span{
    font-weight: 600;
}
.complete-profile .progress {
    height: 1vw;
    background-color: #FBFBF6;
    border-radius: 1.042vw;
    overflow: initial;
}
.complete-profile .progress .progress-bar{
    position: relative;
    background: #0057B5;
    border-radius: 1.042vw;
    overflow: initial;
}
.complete-profile .progress .progress-bar:after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -0.729vw;
    background: #0057B5;
    width: 1.458vw;
    height: 1.458vw;
    border-radius: 50%
}
.complete-profile .progress-title{
    display: block;
    font-weight: 600;
    font-size: 1.719vw;
    letter-spacing: 0.05em;
    line-height: 1.823vw;
    color: #100f2a;
    text-shadow: 0 0.156vw 0.313vw rgba(19, 19, 19, 0.07);
    vertical-align: middle;
}
.complete-profile .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9.844vw;
    height: 3.281vw;
    border-radius: 0.781vw;
    background: linear-gradient(#fcdb59 0%, #ffb900 100%);
    box-shadow: 0 0.156vw 0.313vw rgba(0, 0, 0, 0.16);
    color: #0d0c22;
    font-weight: 600;
    font-size: 1.146vw;
    margin-top: 1.5vw;
}
.complete-profile-modal .modal-content{
    background: none;
    border: none;
}
.complete-profile-modal .modal-content .modal-body{
    padding: 0;
}
.profile-actions{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2.5vw auto;
}
.profile-actions .btn{
    display: inline-flex;
    align-items: center;
    width: 48%;
    height: 5.417vw;
    border-radius: 0.78125vw;
    background: #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    color: #100f2a;
    font-weight: 600;
    font-size: 1.25vw;
    letter-spacing: 0.05em;
}
.profile-actions .btn img{
    width: 3.542vw;
    height: 3.542vw;
    object-fit: contain;
    margin: 0 1.5625vw;
}
.form-wrapper{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0.78125vw;
    background: #f9f8f8;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
}
.form-wrapper .form-header, .form-wrapper .form-body{
    position: relative;
    display: block;
    width: 100%;
    padding: 2.083vw;
}
.form-wrapper .form-header{
    border-bottom: 0.104vw solid #ccc;
}
.form-wrapper .form-header .form-title{
    display: block;
    color: #0d0c22;
    font-weight: 500;
    font-size: 1.458vw;
    line-height: 2.083vw;
}
.form-wrapper .form-header .form-subtitle{
    display: block;
    color: #808080;
    font-size: 1.458vw;
    line-height: 2.083vw;
    margin-top: 0.5vw;
}
.form-style .form-control{
    height: 3.646vw;
    border-radius: 0.78125vw !important;
    background: #fff;
    color: #808080;
    font-weight: 500;
    font-size: 1.25vw;
}
.form-style .input-group-text{
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    min-width: 13vw;
}
.form-style .input-group-text.name-text{
    min-width: 7vw;
}
.form-style .contact-info-group .input-group-text{
    min-width: 10vw;
}
.form-style .btn-id-info{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 2.161vw;
    height: 2.161vw;
    border: none;
    border-radius: 50%;
    background: #f9f8f8;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    color: #100f2a;
    font-weight: normal;
    font-size: 0.885vw;
    z-index: 2;
}
.form-style .contact-info-title{
    color: #0d0c22;
    font-weight: 600;
    font-size: 1.667vw;
    line-height: 1.667vw;
    margin: 1.5625vw auto 2.34375vw;
}
.confirm-wrapper{
    position: relative;
    display: block;
    margin: 2vw auto;
    text-align: center;
}
.confirm-wrapper .confirm-icon{
    display: block;
    width: 100%;
}
.confirm-wrapper .confirm-icon img{
    width: 5.208vw;
    height: 5.208vw;
    object-fit: contain;
}
.confirm-wrapper .confirm-title{
    display: block;
    font-weight: 600;
    font-size: 2.135vw;
    letter-spacing: 0.01em;
    line-height: 3.542vw;
    margin: 1vw auto;
}
.confirm-wrapper .confirm-text{
    display: block;
    font-size: 1.25vw;
    letter-spacing: 0.01em;
    line-height: 1.458vw;
    margin: 1vw auto;
}
.confirm-wrapper .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 15.3125vw;
    height: 2.604vw;
    border-radius: 0.78125vw;
    background: #F4477C;
    color: #fff;
    font-weight: bold;
    font-size: 0.9375vw;
    letter-spacing: 0.05em;
    margin-top: 1vw;
}
.confirm-wrapper .btn.btn-light{
    color: #3D3D44;
    background: #f2f2f2;
}
.installment-default-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.78125vw;
    background: linear-gradient(#549ef6 0%, #0057B5 100%);
    box-shadow: 0 0.15625vw 0.521vw rgba(0, 90, 215, 0.07);
    padding: 1.5625vw;
    margin-top: 1vw;
}
.installment-default-wrapper .installment-default{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 35vw;
    border-radius: 0.78125vw;
    background: #fff;
    padding: 1.3vw;
}
.installment-default-wrapper .installment-default img{
    width: 6.198vw;
    height: 6.198vw;
    object-fit: contain;
    object-position: center;
}
.installment-default-wrapper .installment-default .installment-title{
    display: block;
    color: #0d0c22;
    font-weight: 600;
    font-size: 1.5625vw;
    line-height: 1.25vw;

}
ul.installment-other-wrapper{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0.78125vw;
    background: #f9f8f8;
    padding: 1.5625vw;
    margin: 1vw auto;
}
ul.installment-other-wrapper li.installment-other{
    position: relative;
    display: inline-block;
    width: calc(100% - 4vw);
    margin: 0 2vw;
    padding: 1.5625vw 0;
    border-bottom: 0.052vw solid rgba(13, 12, 34, 0.07);
}
ul.installment-other-wrapper li.installment-other:last-of-type{
    border-bottom: none;
}
ul.installment-other-wrapper li.installment-other .installment-details{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
ul.installment-other-wrapper li.installment-other .installment-details img{
    display: inline-block;
    width: 6.198vw;
    height: 6.198vw;
    object-fit: contain;
    object-position: center;
    margin-right: 2vw;
}
ul.installment-other-wrapper li.installment-other .installment-details .installment-title{
    display: inline-block;
    color: #0d0c22;
    font-weight: 600;
    font-size: 1.5625vw;
    line-height: 1.25vw;
}
ul.installment-other-wrapper li.installment-other .btn-light{
    background: #fff;
    color: #373737;
    font-size: 1.5625vw;
    min-width: 13.5vw;
}
/* Error */
.error-wrapper{
    position: relative;
    display: block;
    text-align: center;
    margin: 3vw auto;
}
.error-wrapper .error-icon{
    display: block;
    width: 100%;
    max-width: 15.625vw;
    margin: 0 auto;
    text-align: center;
}
.error-wrapper .error-icon img{
    width: auto;
    max-width: 100%;
}
.error-wrapper .error-title{
    display: block;
    font-weight: 600;
    font-size: 2.5vw;
    letter-spacing: 0.01em;
    line-height: 3.333vw ;
    color: #202c3b;
    text-align: center;
    margin: 1.823vw  auto 0.885vw;
}
.error-wrapper .error-text{
    display: block;
    font-weight: 300;
    font-size: 1.615vw  /* 31/19.2 */;
    letter-spacing: 0.01em;
    line-height: 2.448vw  /* 47/19.2 */;
    color: #202c3b;
    text-align: center;
    margin: 0 auto;
}
/* Login */
.login-wrapper{
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100vw;
    height: 100vh;
    margin-top: -8.3vw;
}
.login-wrapper .login-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37.396vw;
    background: #0057B5;
    z-index: 2;
}
.login-wrapper .login-icon img{
    width: 10.071875vw;
}
.login-wrapper .login-form-wrapper{
    position: relative;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 62.604vw;
    height: 100%;
    background: #F5F4F4;
    padding: 4vw 0;
    overflow-y: auto;
    z-index: 1;
}
.login-wrapper .login-form-wrapper:before{
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    background: url("../images/Group-7818sds.png") center no-repeat;
    background-size: cover;
    width: 22.8125vw;
    height: 20.625vw;
    z-index: -1;
}
.login-wrapper .login-form-wrapper:after{
    content: '';
    position: fixed;
    bottom: 0;
    left: 37.396vw;
    background: url("../images/Group-7819.png") center no-repeat;
    background-size: cover;
    width: 18.75vw;
    height: 12.5vw;
    z-index: -1;
}
.login-form{
    display: block;
    width: 100%;
    border-radius: 0.78125vw;
    background: #fff;
    padding: 3.385vw 2.604vw;
    margin: 0 auto;
}
.login-wrapper .login-form-wrapper .login-form{
    width: 42.34375vw;
}
.login-form .login-title{
    display: block;
    color: #0d0c22;
    font-weight: 600;
    font-size: 2.24vw;
    line-height: 2.24vw;
    margin-bottom: 1.25vw;
}
.login-form .login-subtitle{
    display: block;
    color: #808080;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.458vw;
    margin-bottom: 4vw;
}
.login-form a:not(.btn){
    color: #0057B5;
}
.login-form .form-group{
    position: relative;
}
.login-form label{
    color: #0d0c22;
    font-weight: 500;
    font-size: 1.25vw;
    line-height: 1.25vw;
}
.login-form .form-control{
    height: 5vw;
    border-radius: 0 0.78125vw 0.78125vw 0 !important;
    background-color: #fbfbf6;
    border: none;
    box-shadow: none;
    color: #808080;
    font-size: 1.198vw;
}
.login-form .form-control::placeholder{
    color: #000;
    opacity: 0.2;
}
.login-form select.form-control{
    background-image: url("../images/Icon ionic-ios-arrow-forward.svg");
    background-position: calc(100% - 1.5625vw) center;
    background-size: 1.354vw 0.729vw ;
    background-repeat: no-repeat;
    appearance: none;
}
.login-form .show-password{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5625vw;
    background: url("../images/Group 329-2.svg") center no-repeat;
    background-size: contain ;
    width: 1.979vw;
    height: 1.302vw;
    z-index: 99;
}
.login-form .input-group-text{
    background-color: #fbfbf6;
    border: none;
    border-radius: 0.78125vw 0 0 0.78125vw;
    text-align: center;
    width: 5vw;
}
.login-form .input-group-text img{
    width: 1.875vw;
    height: 1.875vw;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}
.login-form .sign-with{
    display: block;
    font-weight: 300;
    font-size: 1.25vw;
    line-height: 0.75vw;
    text-align: center;
    color: #808080;
}
.login-form .btn-google, .login-form .btn-facebook{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    min-width: 10.9375vw;
    height: 3.75vw;
    border-radius: 0.78125vw;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.3);
    font-weight: bold;
    font-size: 1.25vw;
    margin: 1vw 0.5vw;
}
.login-form .btn-google{
    background: #fff;
    border: 0.104vw solid #ccc;
    color: #000;
}
.login-form .btn-facebook{
    background: #3b5998;
    color: #fff;
}
.login-form .btn-google img, .login-form .btn-facebook img{
    width: 2.292vw;
    height: 2.292vw;
    object-fit: contain;
    object-position: center;
    margin-right: 0.5vw;
}
.custom-control-label::before,
.custom-control-label::after {
    top: 0;
}
.verification-text{
    display: block;
    color: #000;
    font-size: 1.09375vw;
    letter-spacing: 0.05em;
    line-height: 1.40625vw;
    text-align: center;
    margin-top: 4.167vw;
}
.verification-code{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2.604vw auto 4.427vw;
}
.verification-code .vCode-input {
    width: 5.417vw;
    height: 5.417vw;
    border: none;
    border-radius: 1.042vw;
    background: #f2f2f2;
    color: #000;
    box-shadow: none !important;
    font-weight: normal;
    font-size: 2.708vw;
    margin: 0 0.3125vw;
    text-align: center;
    transition: all 0.25s ease-in-out;
}
.verification-code .vCode-input:focus {
    border-color: #FC4041;
}
.verification-code .vCode-input::-moz-selection {
    background: transparent;
}
.verification-code .vCode-input::selection {
    background: transparent;
}
.code-text{
    display: block;
    color: #000;
    font-size: 1.09375vw;
    letter-spacing: 0.05em;
    line-height: 1.40625vw;
    text-align: center;
}


.fancy-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.fancy {
    display: block;
    width: 100%;
    color: #000;
    font-size: 1.146vw;
    letter-spacing: 0.05em;
    line-height: 1.458vw;
    text-transform: uppercase;
    text-align: center;
    margin: 1.302vw auto;
}
.fancy span {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
    width: 22.396vw;
    margin: 0 auto;
}
.fancy span:before,
.fancy span:after {
    background: #e6e6e6;
    content: "";
    display: inline-block;
    height: 0.052vw;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
.fancy span:before {
    right: 1.302vw;
    margin-left: -50%;
}
.fancy span:after {
    left: 1.302vw;
    margin-right: -50%;
}
/* Relation  */
.relation-group{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    clear: both;
}
.relation-group .relation-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    height: 5.26vw;
    width: 31%;
    border-radius: 0.78125vw;
    background: #fbfbf6;
    color: #808080;
    padding: 1.5625vw;
    font-size: 1.198vw;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.relation-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.relation-label .checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5625vw;
    height: 1.458vw;
    width: 1.458vw;
    background-color: transparent;
    border: 0.208vw solid #808080;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
}
/* On mouse-over, add a grey background color */
.relation-label:hover input ~ .checkmark {
    background-color: rgba(128, 128, 128, 0.7);
}

/* When the radio button is checked, add a blue background */
.relation-label input:checked ~ .checkmark {
    background-color: #808080;
}
.terms-modal-wrapper{
    position: relative;
    display: block;
    width: 100%;
}
.terms-modal-wrapper .terms-title{
    display: block;
    color: #0d0c22;
    font-weight: bold;
    font-size: 2.1875vw;
    letter-spacing: 0.05em;
    line-height: 2.1875vw;
    text-align: center;
    margin: 5vw auto 2vw;
}
.terms-modal-wrapper .terms-description{
    display: block;
    font-size: 1.25vw;
    letter-spacing: 0.05em;
    line-height: 1.667vw;
}
.password-changed{
    display: block;
    margin: 6.771vw auto 8vw;
    text-align: center;
}
.password-changed img{
    width: 5.208vw;
    object-fit: contain;
    object-position: center;
}
/* Special Offers */
.installment-special-offers{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 0.78125vw;
    background: linear-gradient(#FF9801 0%, #FF9801 100%);
    color: #fff;
    padding: 1.042vw 2.604vw;
}
.installment-special-offers .installment-title{
    display: inline-block;
    font-weight: 600;
    font-size: 1.771vw;
    letter-spacing: 0.08em;
    line-height: 1.042vw;
    margin: 0 2.604vw;
}
.installment-special-offers .divider{
    display: inline-block;
    width: 0.26vw;
    height: 4.84375vw;
    background: #fff;
    border-radius: 1vw;
    margin: 0 3.854vw;
}
.installment-special-offers .btn-light{
    height: 4.115vw;
    background: #fff;
    color: #100F2A;
    font-weight: 600;
    font-size: 1.771vw;
}
.installment-special-offers .discount-up-to{
    display: inline-block;
    font-weight: 600;
    font-size: 1.771vw;
    line-height: 1.042vw;
    margin-left: 2.083vw;
}
.special-offers-sliders .special-offers-slide{
    display: block;
    width: 100%;
    height: 31.823vw;
}
.special-offers-sliders .special-offers-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/**/
.home-title{
    display: block;
    font-weight: 600;
    font-size: 2.083vw;
    color: rgba(13, 12, 34, 0.8);
    margin: 2vw auto 1vw;
}
.home-title img{
    width: 2.03125vw;
}
.home-title a{
    font-weight: 600;
    font-size: 1.5625vw;
    color: #0057B5;
}
/* Groom & Bride */
.groom-category, .bride-category{
    position: relative;
    display: block;
    width: 28.958vw;
    max-width: 100%;
    height: 21.875vw;
    border-radius: 0.78125vw;
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.1);
    margin: 0.5vw auto;
    overflow: hidden;
}
.groom-category img, .bride-category img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.groom-category .title, .bride-category .title{
    position: absolute;
    top: 3.49vw;
    text-transform: capitalize;
    font-size: 3.646vw;
    color: #0D0C22;
    text-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.1);
}
.groom-category .title{
    left: 2.96875vw;
}
.bride-category .title{
    right: 2.96875vw;
}
/* Installment slider */
.installment-slider .item img{
    width: 12.917vw;
    height: 6.198vw;
    object-fit: cover;
    object-position: center;
}
/* Create package */
.package-create{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 0.78125vw;
    background: url("../images/package add.svg") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 21.667vw;
    padding: 5.729vw;
}
.package-create .package-title{
    display: block;
    font-weight: 600;
    font-size: 3.802vw;
    line-height: 4.115vw;
    color: #000;
    max-width: 60%;
}
/* Jars */
.jar-item{
    position: relative;
    display: block;
    width: 15.141vw;
    height: 16.545vw;
    border-radius: 0.78125vw;
    background: linear-gradient( 42deg, #e6e6e6 0%, rgba(249, 248, 248, 0) 48.11%, #e6e6e6 100%);
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.1);
    text-decoration: none !important;
    padding: 0 0.5vw;
    margin: 5vw auto 1vw;
    text-align: center;
}
.jar-item.package-item{
    width: 20.625vw;
    height: 23.698vw;
    margin: 10vw auto 1vw;
}
.jar-item .jar-img{
    display: block;
    position: relative;
    top: -3.698vw;
    width: 8.0875vw;
    margin: 0 auto;
    text-align: center;
}
.jar-item.package-item .jar-img{
    top: -6.667vw;
    width: 12.352vw;
}
.jar-item .jar-img img{
    width: 100%;
    object-fit: contain;
}
.jar-item .jar-price{
    position: absolute;
    top: 5vw;
    right: -0.5vw;
    width: 8.318vw;
    height: 3.176vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.09375vw;
    color: #f9f8f8;
    z-index: 1;
}
.jar-item .jar-price:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../images/Path 5179.svg") center no-repeat;
    background-size: contain;
    z-index: -1;
}
.jar-item.package-item .jar-price{
    position: absolute;
    top: 8.958vw;
    right: auto;
    left: -0.5vw;
    width: 9.879vw;
    height: 3.771875vw;
    font-size: 1.25vw;
}
.jar-item.package-item .jar-price:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../images/Path 2457.svg") center no-repeat;
    background-size: contain;
    z-index: -1;
}
.jar-item .jar-title{
    display: block;
    color: #100f2a;
    font-weight: 600;
    font-size: 1.302vw;
    min-height: 3.5vw;
}
.jar-item.package-item .jar-title{
    font-size: 1.40625vw;
    min-height: 3.5vw;
}
.jar-item .jar-info{
    display: block;
}
.jar-item .jar-info span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.364vw;
    border-radius: 0.521vw;
    background: #F4477C;
    color: #fff;
    font-weight: 600;
    font-size: 0.78125vw;
    padding: 0 0.75vw;
    margin: 0.25vw;
    vertical-align: middle;
}
.jar-item.package-item .jar-info span{
    height: 3.8234375vw;
    font-size: 1.25vw;
}
.jar-item .jar-info span.number{
    font-size: 1.354vw;
}
.jar-item.package-item .jar-info span.number{
    font-size: 2.24vw;
}
.package-single-icon{
    position: relative;
    display: block;
    width: 100%;
    margin: 5.99vw auto 3.385vw;
    text-align: center;
    z-index: 1;
}
.package-single-icon img{
    width: 10.677vw;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.package-single-icon:before{
    content: '';
    position: absolute;
    top: 2.34375vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url("../images/Group 7170.svg") center no-repeat;
    background-size: contain;
    width: 72.34375vw;
    height: 26.771vw;
    z-index: -1;
}
.package-single-title{
    position: relative;
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 2.708vw;
    line-height: 2.448vw;
    margin: 0 auto 1.875vw;
    text-align: center;
    z-index: 2;
}
.single-package-list{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0  0.92vw;
    text-align: center;
    z-index: 2;
}
.single-package-list li{
    display: inline-block;
    margin: 0.92vw;
}
.package-total{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 42.24vw  /* 811/19.2 */;
    height: 4.0625vw  /* 78/19.2 */;
    border-radius: 1.042vw  /* 20/19.2 */;
    background: #f9f8f8;
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.07);
    color: #000;
    margin: 7.292vw  auto  3.125vw /* 140/19.2 */ /* 60/19.2 */;
    padding: 0 5.833vw  /* 112/19.2 */;
}
.package-total .title{
    display: inline-block;
    color: #000;
    font-weight: 500;
    font-size: 1.25vw  /* 24/19.2 */;
    letter-spacing: 0.03em;
}
.package-total .total{
    display: inline-block;
    font-weight: 600;
    font-size: 0.78125vw  /* 15/19.2 */;
    letter-spacing: 0.01em;
}
.package-total .total span{
    font-weight: 300;
}
/* The 24 hours Deals */
.deals-24-hours {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: 16.71875vw;
}
.deals-24-hours.married-24-hours {
    height: 19.21875vw;
    border-radius: 0.78125vw;
    margin-top: 2vw;
    overflow: hidden;
}
.deals-24-hours .deals-block{
    display: inline-block;
    width: 20.99vw;
    height: 16.71875vw;
    background: #e6f0ff;
    color: #000;
    padding: 2.083vw;
    text-align: center;
}
.deals-24-hours .deals-block .deals-title{
    display: block;
    font-weight: 600;
    font-size: 2.083vw;
}
.deals-24-hours .deals-block .deals-text{
    display: block;
    font-size: 1.25vw;
    margin: 1.5vw auto;
}
.deals-24-hours .deals-block .btn-secondary{
    height: 3.177vw;
}
.deals-24-hours .married-24{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 52.448vw;
    height: 100%;
    background: url("../images/Group 8130.png") center no-repeat;
    background-size: cover;
    padding: 1.5625vw 3.125vw;
    color: #fff;
}
.deals-24-hours.married-24-hours .married-24{
    width: 100%;
    background: url("../images/Group 8131.png") center no-repeat;
}
.deals-24-hours .married-24 .married-title{
    display: block;
    font-weight: 900;
    font-size: 3.28125vw;
    line-height: 3.28125vw;
    text-transform: uppercase;
}
.deals-24-hours .married-24 .in-24-hours{
    display: block;
    font-weight: 500;
    font-size: 1.615vw;
    line-height: 2.083vw;
    text-transform: uppercase;
}
.deals-24-hours .married-24 img{
    display: inline-block;
    height: 12.448vw;
    margin: 0.521vw 0.521vw 0;
}
/* Categories Discounts */
.category-discount-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    text-align: center;
}
.category-discount-wrapper .category-discount{
    display: inline-block;
    width: 23.75vw;
    color: #000 !important;
    font-size: 2.083vw;
    text-decoration: none !important;
    margin: 0.9375vw 0;
}
.category-discount-wrapper .category-discount .category-img{
    display: block;
    width: 100%;
    height: 20.729vw;
}
.category-discount-wrapper .category-discount .category-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.category-discount-wrapper .category-discount .category-discount-details {
    display: block;
    background: #fbfbf6;
    padding: 2vw;
}
.category-discount-wrapper .category-discount .category-discount-title{
    display: block;
    font-weight: 600;
}
.category-discount-wrapper .category-discount .discount-discount-text{
    display: block;
}
/* */
.special-offer{
    position: relative;
    display: block;
    border-radius: 0.521vw;
    background: #fbfbf6;
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.07);
    color: #100f2a;
    padding: 1.25vw;
    margin: 0 auto;
    text-align: center;
}
.special-offer .special-offer-img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8.646vw;
    height: 8.646vw;
    background: #fff;
    border-radius: 50%;
    filter: drop-shadow(0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07));
    margin: 0 auto;
}
.special-offer .special-offer-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.special-offer .special-offer-title{
    display: block;
    font-weight: 600;
    font-size: 1.40625vw;
    line-height: 1.71875vw;
    margin: 1.146vw auto 0.521vw;
}
.special-offer .special-offer-text{
    display: block;
    font-size: 1.25vw;
    line-height: 1.667vw;
    margin-bottom: 1.458vw;
}
.special-offer .btn-secondary{
    font-size: 1.458vw;
}
/* Home Banners */
.home-banners{
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
.banner-home{
    position: relative;
    display: inline-block;
    max-width: 100%;
    border-radius: 0.78125vw;
    overflow: hidden;
}
.banner-big .banner-home{
    width: 36.198vw;
    height: 22.1875vw;
}
.banner-small{
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    margin-left: 0.625vw;
}
.banner-small .banner-home{
    display: inline-block;
    width: 17.76vw;
    height: 10.885vw;
}
.banner-home img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recommend-wrapper{
    display: block;
    width: 100%;
    background: #fbfbf6;
    filter: drop-shadow(0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.1));
    padding: 1.5625vw 0;
}
ul.recommend-list{
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
}
ul.recommend-list li{
    display: inline-block;
    width: 9.756vw;
    margin: 0.521vw;
    text-align: center;
}
.custom-title{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    background: url("../images/Group 5040.svg") center no-repeat;
    background-size: 22.149vw 15.903vw;
    color: #000;
    font-weight: 600;
    font-size: 3.125vw;
    min-height: 16vw;
    margin: 0 auto 1vw ;
}
.custom-mb{
    margin-bottom: 3.5vw;
}
/* About  */
.header-block{
    position: relative;
    display: block;
    background: linear-gradient(to right, #25C3DB 0%, #179FB4 100%);
    padding: 11.979vw 0 4vw;
    margin-top: -10vw;
    z-index: 1;
}
.header-block.contact-header{
    padding: 8vw 0 5vw;
    background: none;
}
.header-block.about-header{
    padding-bottom: 12vw;
}
.header-block .header-title{
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 2.135vw;
}
.header-block.contact-header .header-title{
    color: #0D0C22;
}
.header-block .header-text{
    display: block;
    color: #fff;
    font-size: 0.9375vw  /* 18/19.2 */;
    letter-spacing: 0.05em;
    line-height: 1.458vw  /* 28/19.2 */;
    margin: 1.25vw auto;
}
.header-block.contact-header .header-text{
    color: #808080;
}
.header-block .breadcrumb{
    align-items: center;
    background: transparent;
    margin: 1vw 0;
    padding: 0;
}
.header-block .breadcrumb li a{
    color: #fff;
    font-weight: normal;
    font-size: 0.9375vw;
    vertical-align: text-bottom;
}
.header-block.contact-header .breadcrumb li a{
    color: #808080;
}
.header-block .breadcrumb li.active{
    color: #fff;
    font-weight: normal;
    font-size: 0.9375vw;
}
.header-block.contact-header .breadcrumb li.active{
    color: #808080;
}
.header-block .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.header-block.contact-header .breadcrumb-item+.breadcrumb-item::before {
    color: #808080;
}
nav.headings{
    position: relative;
    display: block;
    width: 30.9375vw;
    border-radius: 0.78125vw;
    background: #F7F7F7;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
    padding: 2.604vw 1.302vw;
    margin: -14vw 0 2vw auto;
    z-index: 99;
}
nav.headings .headings-title{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.458vw;
    letter-spacing: 0.05em;
    margin-bottom: 0.78125vw;
}
nav.headings ol{
    display: block;
    margin: 0;
    padding: 0;
    padding-inline-start: 1.302vw;
    font-weight: 600;
    font-size: 1.042vw;
    letter-spacing: 0.05em;
}
nav.headings ol li{
    margin: 0.78125vw auto;
}
nav.headings ol li a{
    color: #000;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;
}
nav.headings ol li a:hover{
    color: #0057B5;
}
.also-you-need{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.458vw;
    letter-spacing: 0.05em;
    margin-bottom: 2.25vw;
}
.faq-title{
    display: block;
    color: #0d0c22;
    font-weight: 600;
    font-size: 1.5625vw;
    margin: 5.99vw 0 1.667vw;
    text-transform: uppercase;
}
.qa-block{
    display: block;
    margin-bottom: 1.979vw;
}
.qa-block .question{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.042vw;
    letter-spacing: 0.05em;
}
.help-center .qa-block .question{
    font-size: 1.25vw;
    color: #0057B5;
    margin-bottom: 0.78125vw;
}
.qa-block .answer{
    display: block;
    color: #808080;
    font-size: 0.9375vw;
    letter-spacing: 0.05em;
    line-height: 1.25vw;
    margin-bottom: 1.25vw;
}
.help-center .qa-block .answer{
    font-size: 1.042vw;
    color: #373737;

}
#map{
    display: block;
    width: 100%;
    height: 33.90625vw;
    margin-top: -3vw;
}
#map.map2{
    height: 21.302vw;
    margin-top: 0;
    margin-bottom: 1.667vw;
}
.contact-wrapper{
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: #fff;
    border-radius: 0.78125vw;
    margin-top: -3.646vw  /* 70/19.2 */;
    padding: 2.448vw 0;
    box-shadow: 0 3px 6px rgba(13, 37, 41, 0.08);
    z-index: 999;
    overflow: hidden;
}
.contact-wrapper .contact-info-wrapper{
    display: inline-block;
    width: 21.354vw;
    padding: 0 2.96875vw;
    border-right: 3px solid rgba(13, 12, 34, 0.07);
}
.contact-wrapper .contact-info-wrapper .contact-info-title{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.25vw;
    margin-bottom: 0.5vw;
}
.contact-wrapper .contact-info-wrapper .contact-info{
    display: block;
    margin-bottom: 4.167vw;
}
.contact-wrapper .contact-info-wrapper .contact-info-text{
    display: block;
    color: #000;
    font-weight: 500;
    font-size: 0.9375vw;
    line-height: 1.5625vw;
    margin-bottom: 0.26vw;
}
.contact-wrapper .contact-info-wrapper .contact-info-text span{
    display: inline-block;
    width: 2.5vw;
    text-align: center;
}
.contact-wrapper .contact-info-wrapper .contact-info-text span img{
    height: 1.46vw;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.contact-wrapper .contact-info-wrapper .contact-logo{
    width: 100%;
}
.contact-wrapper .contact-info-wrapper .contact-logo img{
    width: 17.519vw;
    max-width: 100%;
}
.contact-form-wrapper{
    position: relative;
    display: inline-block;
    width: 52vw;
    padding: 0 3.385vw;
}
.contact-form-wrapper .contact-form-title{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.354vw;
    line-height: 1.354vw;
}
.contact-form-wrapper .contact-form-text{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 0.9375vw;
    line-height: 1.354vw;
    margin: 0.75vw auto 2vw;
}
.contact-form .form-group{
    margin-bottom: 2.5vw;
}
.contact-form .form-control{
    min-height: 3.958vw;
    border: none;
    border-radius: 0.78125vw;
    background: #f6f6f6;
}
.contact-form .btn-primary{
    min-width: 13.854vw;
}
.about-wrapper{
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 0.78125vw;
    background: #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
    margin: -9.375vw auto 2vw;
    overflow-y: hidden;
    z-index: 2;
}
.about-wrapper .about-info{
    display: inline-block;
    width: 36.71875vw;
    /*height: 100%;*/
    background: #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
    padding: 6.615vw 3.90625vw;
}
.about-wrapper .about-info .about-title{
    display: block;
    color: #000;
    font-weight: bold;
    font-size: 1.458vw;
    margin: 1vw auto;
}
.about-wrapper .about-info .about-text{
    display: block;
    color: #808080;
    font-size: 1.458vw;
}
.about-wrapper .about-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36.71875vw;
    background: #fafafa;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
    padding: 6.615vw 3.90625vw;
}
.about-wrapper .about-icon img{
    width: 16.927vw;
    max-width: 100%;
    object-fit: contain;
}
.about-block{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.78125vw;
    background: #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
    padding: 3.49vw 3.021vw;
    margin: 1vw auto 3vw;
}
.reservation-wrapper .about-block{
    height: auto;
    padding: 2vw;
}
.about-block .about-title{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.25vw;
    margin-bottom: 1vw;
}
.about-block .login-form .about-title{
    font-size: 2vw;
    line-height: 2.25vw;
}
.about-block .about-text{
    display: block;
    color: #808080;
    font-size: 0.9375vw;
    line-height: 1.25vw;
}
.about-block .login-form .about-text{
    margin-bottom: 2.5vw;
}
.about-stats{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0.78125vw;
    background: linear-gradient(to bottom, #0057B5 0%, #0057B5 100%);
    color: #fff;
    padding: 6.25vw 5.208vw;
    margin: 3vw auto;
    overflow: hidden;
    z-index: 1;
}
.about-stats:before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    background: url("../images/Mask Group 106.svg") center no-repeat;
    background-size: contain;
    width: 73.4375vw;
    height: 17.135vw;
    z-index: -1;
}
.about-stats .media img{
    height: 3.021vw;
    object-fit: contain;
}
.about-stats .media .stat-number{
    display: block;
    font-size: 3.073vw;
    line-height: 3vw;
}
.about-stats .media .stat-text{
    display: block;
    font-size: 0.729vw;
}
/* Groom & Bride */
.groom-stories{
    position: relative;
    display: block;
    margin: 1vw auto 0;
    text-align: center;
}
.groom-stories img{
    width: 52.85vw;
    max-width: 100%;
    object-fit: contain;
}
.groom-bride-title{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    height: 5.677vw;
    border-radius: 0.78125vw;
    background: #E6F0FF;
    color: #000;
    font-weight: 600;
    font-size: 2.24vw;
    padding: 0 2.34375vw;
    margin: 4.6875vw auto;
}
.groom-bride-title-2{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: capitalize;
    height: 3.75vw;
    border-radius: 0.78125vw;
    background: #E6F0FF;
    color: #000;
    font-weight: 600;
    font-size: 1.25vw;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}
.groom-bride-title-2:before{
    content: '';
    position: absolute;
    top: -9vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    background: url("../images/Path 2435.png") center no-repeat;
    background-size: contain;
    width: 26.68vw;
    height: 18.676vw;
    z-index: -1;
}
.groom-bride-slider{
    margin-bottom: 5.208vw;
}
.groom-bride-mask{
    display: block;
    width: 100%;
    height: 25.26vw;
}
.groom-bride-mask img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.78125vw;
}
.story-img{
    position: relative;
    display: block;
    max-width: 100%;
    width: 20.99vw;
    height: 25.208vw;
    margin-bottom: 2.604vw;
    margin-left: 2.604vw;
    z-index: 1;
}
.story-img:before{
    content: '';
    position: absolute;
    bottom: -2.604vw;
    left: -2.604vw;
    width: 100%;
    height: 100%;
    background: #F9F8F8;
    border-radius: 0.78125vw;
    z-index: -1;
}
.story-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0.78125vw;
}
.story-block{
    position: relative;
    display: block;
    border-radius: 0.78125vw;
    background: #e6f0ff;
    color: #000;
    padding: 3.125vw;
    margin: 0.78125vw auto;
}
.story-block .story-title{
    display: block;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.25vw;
    margin-bottom: 1.25vw;
}
.story-block .story-text{
    display: block;
    font-size: 1.042vw;
    line-height: 1.458vw;
}
.they-choose{
    display: block;
    color: #0d0c22;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.25vw;
    margin: 4.167vw 0 1.6vw;
}
.happy-packages-wrapper{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0.78125vw;
    background: radial-gradient(rgba(255, 255, 255, 0) 0%, rgba(93, 92, 107, 0.07) 100%);
    margin-bottom: 6.51vw;
    padding: 2.083vw 0;
}
.happy-packages-wrapper .happy-packages-title{
    display: block;
    color: #373737;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.25vw;
    text-align: center;
    margin-bottom: 1.5625vw;
}
.happy-package-item{
    position: relative;
    display: block;
    width: 8.854vw;
    padding: 0.521vw;
    border-radius: 1.302vw;
    background: #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    color: #000;
    text-align: center;
}
.happy-package-item .happy-package-img{
    display: block;
    width: 100%;
    height: 7.65625vw;
    border-radius: 1.042vw;
    overflow: hidden;
}
.happy-package-item .happy-package-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.happy-package-item .happy-package-title{
    display: block;
    font-weight: 600;
    font-size: 0.78125vw;
    /*line-height: 0.78125vw;*/
    margin-bottom: 0.78125vw;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.happy-package-item .happy-package-name{
    display: block;
    font-weight: 500;
    font-size: 0.833vw;
    /*line-height: 0.677vw;*/
    margin: 0.521vw 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.groom-bride-album-title{
    position: relative;
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.5625vw;
    margin-bottom: 1.302vw;
}
.groom-bride-album-title .btn-secondary{
    height: 2.604vw;
    min-width: 11.667vw;
}
.groom-bride-album{
    position: relative;
    display: block;
    width: 100%;
    border-radius: 0.78125vw;
    overflow: hidden;
}
.groom-bride-album.height-50{
    height: 17vw;
    margin-bottom: 1.79vw;
}
.groom-bride-album.height-100{
    height: 35.885vw;
}
.groom-bride-album img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.groom-bride-video-title{
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 1.25vw;
    margin: 2.604vw 0 1.5625vw;
}
.groom-bride-video{
    display: block;
}
.payed-wrapper{
    position: relative;
    display: block;
    border-radius: 0.78125vw;
    background: rgba(13, 12, 34, 0.07);
    padding: 2.604vw 0;
    margin: 5.208vw auto;
    text-align: center;
}
.payed-wrapper .they-payed{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 67.03125vw;
    height: 4.01vw;
    border-radius: 0.78125vw;
    background: #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    color: #000;
    font-weight: 600;
    font-size: 1.25vw;
    padding: 0 1.667vw;
    margin: 0 auto;
}
.payed-wrapper .they-payed .btn-secondary{
    position: absolute;
    right: 0;
    height: 100%;
    width: 20.052vw;
}
/* Payment*/
.payment-title{
    display: block;
    color: #000;
    font-weight: 500;
    font-size: 1.5625vw;
    margin: 1.5625vw auto;
}
.payment-text{
    display: block;
    color: #000;
    font-size: 1.25vw;
}
.payment-tabs{
    display: block;
    margin: 1.5625vw auto 0.78125vw;
}
.payment-tabs .nav-tabs {
    border-bottom: none;
}
.payment-tabs .nav-tabs .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 5.78125vw;
    border-radius: 0.521vw;
    border: none;
    background: linear-gradient(#e9f1fb 0%, #f9f8f8 100%);
    font-weight: 600;
    font-size: 1.25vw;
    color: #100f2a !important;
}
.payment-tabs .nav-tabs .nav-item.show .nav-link, .payment-tabs .nav-tabs .nav-link.active {
    background: linear-gradient(#c9ebff 0%, #b7baff 100%);
}
.payment-tabs .nav-tabs .nav-link .tab-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.948vw;
    height: 4.74vw;
    border-radius: 0.521vw;
    background: #fff;
    margin-right: 1vw;
}
.payment-tabs .nav-tabs .nav-link .tab-icon img{
    width: 3.802vw;
    height: 3.854vw;
}
.choose-provider{
    display: block;
    color: #000;
    font-size: 1.146vw;
    margin: 1.25vw auto;
}
.provider-list{
    position: relative;
    display: block;
    border-radius: 0.521vw;
    background: #f9f8f8;
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.07);
    padding: 2.448vw 0;
    margin: 0 auto;
}
.provider-list .provider-item{
    align-items: center;
    height: 4.896vw;
    border-radius: 0.78125vw;
    background: #fff;
    margin: 0 8.542vw 1.25vw;
    text-align: center;
}
.provider-list .provider-item .provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.provider-list .provider-item .provider-logo img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 3.542vw;
    object-fit: contain;
    object-position: center;
}
.provider-list .provider-item .provider-title{
    display: block;
    color: #100f2a;
    font-size: 0.99vw;
    letter-spacing: 0.01em;
}
.provider-list .provider-item .provider-anchor{
    color: #0057B5;
}
.alert-payment{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.78125vw;
    background: #0057B5;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    color: #fff;
    font-size: 1.354vw;
    margin: 15px 15px 0;
}
.alert-payment img{
    height: 3.522vw;
    margin-right: 1vw;
}
.alert-payment .close {
    top: 50%;
    transform: translateY(-50%);
}
.checkout-wrapper{
    /*position: relative;*/
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
}
.confirmation-wrapper{
    display: block;
    width: 29.84375vw;
    border-radius: 0.78125vw;
    background: linear-gradient(#f9f8f8 0%, #f2f2f2 100%);
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    padding: 2.5vw;
    margin: 0 auto;
}
.checkout-wrapper .confirmation-wrapper{
    display: inline-block;
    margin: 0;
}
.confirmation-modal .confirmation-wrapper{
    background: none;
    box-shadow: none;
}
.confirmation-modal .confirmation-title{
    display: block;
    color: #000;
    text-align: center;
    font-weight: 500;
    font-size: 1.5625vw;
    line-height: 2.03125vw;
    margin-bottom: 1.25vw;
}
.confirmation-wrapper .date-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #0d0c22;
    font-size: 1.25vw;
    margin-bottom: 2.5vw;
}
.confirmation-wrapper .date-row > div{
    display: inline-flex;
    align-items: center;
}
.confirmation-wrapper .date-row .time{
    font-size: 1.146vw;
    margin-right: 1vw;
}
.confirmation-wrapper .date-row .date{
    font-size: 1.354vw;
}
.payment-promo-code{
    display: flex;
    color: #100f2a;
    align-items: center;
    font-weight: 600;
    font-size: 1.198vw;
}
.payment-promo-code .input-group{
    margin-left: 1.25vw;
}
.payment-promo-code .input-group .form-control{
    height: 3.393vw;
    border-radius: 0.521vw;
    background: #fff;
    box-shadow: 0 0.15625vw 0.3125vw rgba(13, 12, 34, 0.07);
    color: #808080;
    font-weight: normal;
    font-size: 1.198vw;
    letter-spacing: 0.08em;
    text-align: center;
}
.payment-promo-code .input-group .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.393vw;
    border-radius: 0 0.521vw 0.521vw 0;
    background: #0057B5;
    color: #fff;
}
.wrong-promo-code{
    display: block;
    color: #c93c3c;
    text-align: center;
    font-size: 1.09375vw;
    margin: 1.40625vw auto 2.34375vw;
}
.payment-total{
    display: block;
    margin: 1.042vw auto;
}
.payment-total > div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.229vw;
    font-size: 1.25vw;
    color: #100f2a;
    border-bottom: 1px solid #f2f2f2;
}
.payment-total > div:last-of-type{
    font-weight: 600;
    font-size: 1.354vw;
}
.checkout-item{
    /*position: relative;*/
    display: inline-block;
    width: 31.875vw;
    padding-top: 4.0625vw ;
    z-index: 1;
    overflow: hidden;
}
.checkout-item:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48.90625vw;
    height: 100%;
    background: #F4F4F4;
    z-index: -1;
}
.checkout-item .item-text{
    display: block;
    color: #808080;
    font-size: 1.25vw;
    line-height: 1.458vw;
    margin-bottom: 1vw;
}
.invoice-title{
    display: block;
    font-weight: 500;
    font-size: 2.1875vw;
    line-height: 2.03125vw;
    color: #000;
    margin: 1vw auto 4vw;
    text-align: center;
}
.invoice-modal .orders-list .order-item .order-details {
    display: flex;;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 2vw;
}
.invoice-modal .orders-list .order-item .order-details .item-img {
    width: 13.646vw;
    height: 12.083vw;
    border-radius: 1.5625vw;
}
.invoice-modal .orders-list .order-item .order-details .rest-amount {
    font-size: 1.25vw;
}
.invoice-modal .orders-list .order-item .order-details .payment-date {
    text-align: center;
    font-size: 0.9375vw;
    margin: 0.5vw auto;
}
.invoice-modal .orders-list .order-item .order-details .order-date {
    text-align: center;
    font-size: 1.458vw;
    margin-top: 0.5vw;
}
.invoice-modal .table tr th, .invoice-modal .table tr td{
    color: #000;
    font-size: 1.458vw;
}
.invoice-modal .table tr th{
    font-weight: 600;
}
.invoice-modal .table tr td .money-paid{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    vertical-align: middle;
    min-width: 9.427vw;
    min-height: 2.65625vw;
    border-radius: 1.302vw;
    background: #c93c3c;
    color: #fff;
    font-weight: bold;
    font-size: 1.25vw;
}
.invoice-modal hr{
    border-top: 1px solid #F9F8F8;
}
.amount-paid{
    display: block;
    width: 100%;
    height: 4.792vw;
    border-radius: 2.083vw;
    background: #f9f8f8;
    color: #000;
    font-weight: 500;
    font-size: 1.25vw;
    padding: 1.5625vw 0;
    text-align: center;
    margin: 2vw auto 4vw;
}
.rest-amount-total{
    display: block;
    width: 100%;
    color: #000;
    font-weight: 500;
    font-size: 1.5625vw;
    text-align: center;
    margin: 3vw auto 4vw;
}
.installment-period{
    display: block;
    width: 100%;
    border-radius: 0.78125vw;
    background: #f9f8f8;
    box-shadow: 0 0.15625vw 0.3125vw rgba(0, 0, 0, 0.16);
    padding: 3.125vw 3.75vw;
    margin: 2vw auto 6vw;
}
.installment-period .table tr th{
    border: none;
    color: #000;
    font-weight: 500;
    font-size: 1.042vw;
    margin-bottom: 1vw;
}
.installment-period .table tr td{
    color: #808080;
    font-size: 0.729vw;
    border-top: 1px solid rgba(128, 128, 128, 0.3);
    vertical-align: middle;
}
.installment-period .table tr td img{
    width: 7.219vw;
    height: 3.465vw;
    object-fit: contain;
    object-position: center;
}
.installment-terms-title{
    display: block;
    font-weight: 600;
    font-size: 1.5625vw;
    margin-bottom: 0.5vw;
    opacity: 0.8;
}
.installment-terms-text{
    display: block;
    font-size: 0.9375vw;
    opacity: 0.8;
}
.online-process-title{
    display: block;
    font-weight: 600;
    font-size: 1.5625vw;
    color: #100f2a;
    margin: 3vw auto 1vw;
}
.online-process-step{
    display: block;
    font-weight: 600;
    font-size: 1.25vw;
    color: #100f2a;
}
.online-process-img{
    display: block;
    width: 35.677vw;
    height: 21.71875vw;
    margin: 0.5vw auto;
    overflow: hidden;
}
.online-process-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.online-process-text{
    display: block;
    font-size: 0.9375vw;
    line-height: 1.354vw;
    color: #373737;
    margin-bottom: 1vw;
}
.direct-installment{
    display: block;
    font-weight: 600;
    font-size: 1.25vw;
    color: #100f2a;
}
.direct-installment-text{
    display: block;
    font-weight: normal;
    font-size: 0.9375vw;
    color: #707070;
}
.installment-wrapper{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 0.521vw;
    background: #f9f8f8;
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.07);
    padding: 1.146vw 1.25vw;
    margin: 1vw auto;
}
.installment-wrapper .installment-img{
    display: inline-block;
    width: 9.74vw;
    height: 9.53125vw;
    border-radius: 0.521vw;
    box-shadow: 0 0.15625vw 0.3125vw rgba(19, 19, 19, 0.07);
    overflow: hidden;
}
.installment-wrapper .installment-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.installment-wrapper .installment-details{
    display: inline-block;
    width: calc(100% - 11.407vw);
}
.installment-wrapper .installment-details .installment-title{
    display: block;
    font-size: 1.042vw;
    color: #100f2a;
    margin: 0.5vw auto;
}
.installment-wrapper .installment-details .installment-text{
    display: block;
    font-weight: 300;
    font-size: 0.9375vw;
    line-height: 1.354vw;
    color: #707070;
}
/* Chat*/
#chattingBtn{
    position: fixed;
    bottom: 1.563vw;
    right: 4.688vw;
    background: url("../images/chatting icon.svg") center no-repeat;
    background-size: contain;
    width: 4.375vw;
    height: 4.375vw;
    z-index: 9;
}
#chatBox{
    position: fixed;
    bottom: 2vw;
    right: 10vw;
    display: none;
    width: 300px;
    overflow:hidden;
    z-index: 9999;
}
#chatBox.active{
    display: block;
}
#connectSupport{
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height: 200px;
    border-radius: 20px 20px 0 20px;
    background: #f6f6f6;
    border: 1px solid #707070;
    padding: 0 20px;
}
#connectSupport .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    border-radius: 20px;
    background: linear-gradient(to left, #c9ebff 0%, #549ef6 100%);
    border: none;
    box-shadow: none;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
#chatview{
    display:none;
    width: 100%;
    height:450px;
    border-radius: 20px 20px 0 20px;
    background: #f6f6f6;
    border: 1px solid #707070;
    overflow: hidden;
}
#chatview #profile{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    background: linear-gradient(to left, #c9ebff 0%, #549ef6 100%);
    color: #fff;
}
#chatview #profile .support-title{
    display: block;
    font-weight: 600;
    font-size: 18px;
}
#chatview #profile .connecting-title{
    display: block;
    font-size: 14px;
}
.chat-messages{
    width: 100%;
    padding: 0 15px;
    overflow-y:scroll;
    overflow-x:hidden;
    -webkit-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -moz-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -ms-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    -o-transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
    transition: all 200ms cubic-bezier(0.000, 0.995, 0.990, 1.000);
}
.chat-body .chat-messages{
    height: calc(65vh - 10vw);
}
#chat-messages{
    opacity:0;
    margin-top:30px;
    height: 300px;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #c9ebff 0%, #549ef6 100%);
}
#chat-messages.animate{
    opacity:1;
    margin-top:0;
}
.chat-messages label{
    color:#aab8c2;
    font-weight:600;
    font-size:12px;
    text-align:center;
    margin: 8px auto;
    display:block;
}
.chat-messages .message{
    padding: 0 40px 40px 0 ;
    margin-bottom:45px;
    clear:both;
}
.chat-messages .message.right{
    padding: 0 0 40px 40px;
    margin-left: auto;
}
.chat-messages .message .bubble{
    position:relative;
    border-radius: 10px 10px 10px 0;
    background: #fff;
    color: #100f2a;
    padding: 10px;
    font-size: 14px;
    float:left;
}
.chat-messages .message.right .bubble{
    border-radius: 10px 0 10px 10px;
    background: #0057B5;
    color: #fff;
    float:right;
}
.chat-messages .bubble span{
    color: #aab8c2;
    font-size: 11px;
    position: absolute;
    right: 0;
    bottom: -22px;
}
.send-message{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.send-message .form-control{
    width: calc(100% - 40px);
    height: 30px;
    border-radius: 30px;
    border: none;
    background: #fff;
    box-shadow: 0 3px 6px rgba(19, 19, 19, 0.07);
    color: #808080;
    font-weight: normal;
    font-size: 12px;
    user-select: text;
}
.send-message .send-message-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    box-shadow: none;
    background: url("../images/Group 8130.svg") center no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
}
#close{
    position:absolute;
    top: 8px;
    opacity:0.8;
    right: 10px;
    width:20px;
    height:20px;
    cursor:pointer;
}
#close:hover{
    opacity:1;
}
.cx, .cy{
    background:#fff;
    position:absolute;
    width:0px;
    top:15px;
    right:15px;
    height:3px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.cx.s1, .cy.s1{
    right:0;
    width:20px;
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
.cy.s2{
    -ms-transform: rotate(50deg);
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
.cy.s3{
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
.cx.s1{
    right:0;
    width:20px;
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
.cx.s2{
    -ms-transform: rotate(140deg);
    -webkit-transform: rotate(140deg);
    transform: rotate(140deg);
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
.cx.s3{
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}
/**/
.chat-room{
    position: relative;
    display: block;
    border-radius: 0.78125vw;
    background: #f2f2f2;
    padding: 2.865vw 2.083vw;
    margin: 1vw auto;
}
/*Chat Contact List*/
.chat-room .contact-list .contact {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    z-index: 1;
}
.chat-room .booking-wrapper .nav-pills .nav-link.active .contact:before,
.chat-room .booking-wrapper .nav-pills .show>.nav-link  .contact:before{
    content: '';
    position: absolute;
    top: 0;
    left: -1.3vw;
    height: 100%;
    width: calc(100% + 8vw);
    border-radius: 1.042vw 0 0 1.042vw;
    background: #f6f6f6;
    z-index: -1;

}
.chat-room .contact-list .contact img{
    display: inline-block;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.5vw;
}
.chat-room .contact-list .contact .contact-name{
    display: inline-block;
    color: #100f2a;
    font-weight: 600;
    font-size: 0.99vw;
    letter-spacing: 0.04em;
}
.chat-room .contact-list .contact .unread{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3.75vw;
    height: 1.09375vw;
    border-radius: 0.521vw;
    background: #0057B5;
    color: #fff;
    font-weight: normal;
    font-size: 0.625vw;
}
/* 24 Deal */
.deal-24-offer{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.521vw;
    width: 18.75vw;
    max-width: 100%;
    height: 14.271vw;
    margin: 0.36vw auto;
    text-align: center;
    overflow: hidden;
}
.deal-24-offer.deal-big{
    width: 33.021vw;
    height: 33.073vw;
    margin: 0 auto;
}
.deal-24-offer img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.trending-offer{
    display: block;
    width: 100%;
    height: 29.74vw;
    border-radius: 0.521vw;
    overflow: hidden;
}
.trending-offer img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/* Car Rent */
.offer-car-rent{
    display: block;
    width: 36.09375vw;
    max-width: 100%;
    height: 8.125vw;
    border-radius: 0.521vw;
    margin: 0.365vw auto;
    overflow: hidden;
}
.offer-car-rent.classic-car{
    height: 17.083vw;
}
.offer-car-rent img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Hotel Offers*/
.offer-hotel{
    display: block;
    width: 22.135vw;
    max-width: 100%;
    height: 20.15625vw;
    border-radius: 0.521vw;
    margin: 0.5vw auto;
    overflow: hidden;
}
.offer-hotel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.for-her{
    position: relative;
    display: block;
}
.for-her{
    position: relative;
    display: block;
    margin-top: 3vw;
    margin-bottom: -15vw;
}
.for-her .for-her-title{
    display: block;
    color: #100f2a;
    font-weight: 600;
    font-size: 1.5625vw;
    line-height: 3.698vw;
}
.for-her .for-her-text{
    display: block;
    color: #808080;
    font-size: 0.9375vw;
    line-height: 1.302vw;
}
.special-jar{
    position: relative;
    display: block;
    background: linear-gradient(to left, #4D88DB, #7461C4);
    color: #fff;
    border-radius: 0.521vw;
    box-shadow: 0 0.15625vw 0.521vw rgba(0, 0, 0, 0.16);
    padding: 3.229vw 5.3125vw;
    margin: 15vw auto 3.125vw;
    z-index: 1;
}
.special-jar .special-jar-title{
    display: block;
    font-weight: 600;
    font-size: 2.76vw;
    line-height: 3.698vw;
    margin-bottom: 1.25vw;
}
.special-jar .special-jar-contents{
    display: block;
}
.special-jar .special-jar-contents li{
    position: relative;
    display: block;
    font-weight: 600;
    font-size: 1.458vw;
    line-height: 2.5vw;
}
.special-jar .special-jar-contents li i{
    font-size: 0.6vw;
    vertical-align: middle;
}
.special-jar .jar-icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 7.292vw;
    width: 15.521vw;
    object-fit: contain;
    z-index: -1;
}
.special-jar .dress-icon{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 19.354vw;
    object-fit: contain;
    z-index: -1;
}
.special-jar .btn-secondary{
    position: absolute;
    bottom: -1.8vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 14vw;
    height: 3.646vw;
}
/* Feedback */
.feedback-wrapper{
    position: relative;
    display: block;
    border-radius: 0.78125vw;
    background: #f2f2f2;
    padding: 2.448vw 5.46875vw;
}
.feedback-wrapper .feedback-form{
    position: relative;
    display: block;
    border-radius: 0.78125vw;
    background: #fff;
    padding: 1.875vw 3.5vw;
    color: #000;
}
.feedback-wrapper .feedback-form .feedback-title{
    display: block;
    font-weight: 600;
    font-size: 1.458vw;
    letter-spacing: 0.05em;
    line-height: 1.458vw;
    margin-bottom: 2.3vw;
}
.feedback-wrapper .feedback-form .feedback-text{
    display: block;
    font-weight: 500;
    font-size: 0.9375vw;
    line-height: 0.729vw;
    margin-bottom: 0.729vw;
}
.feedback-wrapper .feedback-form .feedback-text2{
    display: block;
    font-size: 0.729vw;
    line-height: 0.833vw;
    margin-bottom: 1.25vw;
}
.feedback-wrapper .feedback-form .form-group .input-group-text{
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #000;

    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.9375vw;
    width: 12vw;
}
.feedback-wrapper .feedback-form .form-group .form-control{
    height: 2.604vw;
    border-radius: 8px;
    border: none;
    background: #f9f8f8;
    font-size: 1vw;
}
.feedback-wrapper .feedback-form .form-group .form-control::placeholder{
    color: #d9d9d9;
    font-weight: normal;
    font-size: 0.9375vw;
}
.feedback-wrapper .feedback-form .form-group textarea.form-control{
    height: auto;
}
.rating-feedback{
    display: block;
    border-radius: 0.78125vw;
    background: #f9f8f8;
    text-align: center;
    padding: 2vw 0;
    margin-bottom: 1vw;
}
.rating-feedback .rating-satisfied{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    font-size: 0.8vw;
}
.rating-feedback .rating-satisfied span{
    display: inline-block;
    margin: 0 3.8vw;
}
.step-wrapper {
    display: table;
    width: 100%;
    margin: 20px auto;
    text-align: center
}

.step-wrapper li {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    width: calc(100% / 3)
}
.step-wrapper li span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #878787;
    background: #fff;
    border: 1px solid #BFBFBF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    z-index: 9;
}
.step-wrapper li.active span {
    color: #fff;
    background: #F4477C;
    border: 1px solid #F4477C;
}
.step-wrapper li span:after {
    content: attr(data-text);
    position: absolute;
    display: inline-block;
    top: 40px;
    text-transform: uppercase;
    text-align: center;
    color: #CFCFCF !important;
    width: initial;
    left: 50%;
    font-weight: bold;
    font-size: 0.833vw;
    white-space: nowrap;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}
.step-wrapper li.active span:after {
    color: #F4477C !important;
}
.step-wrapper li:before {
    background-color: #BFBFBF;
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    top: 50%;
    right: 50%;
    z-index: 0
}
.step-wrapper li:first-child:before {
    width: 0
}
.step-wrapper li.active:before {
    background-color: #F4477C
}
.reservation-confirm{
    display: block;
    width: 100%;
    max-width: 36.458vw  /* 700/19.2 */;
    background: url("../images/Group 8042.svg") center no-repeat;
    background-size: contain;
    text-align: center;
    padding: 4.167vw  /* 80/19.2 */ 7.03125vw  /* 135/19.2 */;
    margin: 40px auto;
}
.reservation-confirm > img{
    width: 7.083vw  /* 136/19.2 */;
    margin: 0 auto 1.042vw  /* 20/19.2 */;
}
.reservation-confirm h4{
    font-weight: 600;
    font-size: 1.667vw  /* 32/19.2 */;
    letter-spacing: 0.01em;
    line-height: 2.76vw  /* 53/19.2 */;
    color: #000;
}
.reservation-confirm p{
    font-size: 1.354vw  /* 26/19.2 */;
    letter-spacing: 0.01em;
    line-height: 2.03125vw  /* 39/19.2 */;
    color: #000;
}
.reservation-confirm .order-num{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.604vw  /* 50/19.2 */;
    border-radius: 0.78125vw  /* 15/19.2 */;
    background: #fff;
    font-size: 1.354vw  /* 26/19.2 */;
    border: 1px solid #F4477C;
    padding: 0 1.042vw  /* 20/19.2 */;
    margin: 1.458vw  /* 28/19.2 */ auto;
}
/* Footer */
footer{
    display:none;
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
    color: #fff;
    background: linear-gradient(#0057B5);
    border-top: 0.7vw solid #F4477C;
    z-index: 1;
    overflow: hidden;
}
.bg-footer img{
    width: 100%;
    height: 100%;
}
footer > img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
}
footer .footer-menu{
    display: block;
    margin: 4vw auto 8.333vw;
    text-align: center;
}
footer .footer-menu li{
    display: inline-block;
    margin: 0 1.042vw;
}
footer .footer-menu li a{
    display: block;
    font-size: 1.25vw;
    font-weight: 600;
    line-height: 1.198vw;
    color: #fff;
    text-transform: capitalize;
    text-decoration: none !important;
}
footer .footer-title{
    display: block;
    font-size: 1.198vw;
    font-weight: 600;
    line-height: 1.198vw;
}
footer .footer-list{
    display: block;
    margin: 1.042vw 0 2.083vw;
}
footer .footer-list li{
    display: block;
    margin: 0.521vw 0;
}
footer .footer-list li a{
    display: block;
    font-size: 0.938vw;
    line-height: 1.198vw;
    color: #fff;
}
.download-app-wrapper{
    display: block;
    margin-top: 1vw;
}
.download-app-wrapper .download-app-title{
    display: block;
    font-weight: bold;
    font-size: 1.667vw;
}
.download-app-wrapper .download-app-buttons{
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0 1vw;
}
.download-app-wrapper .download-app-buttons .download-app-button{
    display: inline-block;
    height: 3.125vw  /* 60/19.2 */;
    margin: 0.521vw 0;
}
.download-app-wrapper .download-app-buttons .download-app-button img{
    width: auto;
    height: 100%;
    object-fit: contain;
}
footer .btn-help{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8125vw ;
    width: auto;
    background: #fff;
    border-radius: 0.78125vw ;
    font-weight: 600;
    font-size: 1.09375vw;
    line-height: 1.615vw;
    color: #0057B5;
    padding: 0 0.625vw;
    vertical-align: middle;
    text-decoration: none !important;
    margin-left: 1vw;
}
footer .btn-help img{
    width: 1.667vw ;
    margin-right: 0.521vw;
}
/* Socials*/
.social-title{
    display: block;
    margin-bottom: 0.521vw;
    font-size: 0.833vw;
    font-weight: 600;
    color: #fff;
}
.socials{
    display: inline-flex;
    align-items: center;
    gap: 0 1vw;
    margin: 0;
}
.socials a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 0.781vw;
    width: 2.8125vw;
    height: 2.8125vw;
    font-size: 1.5vw ;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.25s ease-in-out;

}
.socials a img {
    width: 1.875vw  /* 36/19.2 */;
}

.socials .icon-facebook{
    background: #4267B2 !important;
}
.socials .icon-instagram{
    background: linear-gradient(to left top, #fd5949, #d6249f, #285AEB ) !important;
}
.socials .icon-twitterX{
    background: #000 !important;
}
.socials .icon-linkedin{
    background: #0077b5 !important;
}
.socials .icon-youtube{
    background: #f00 !important;
}
.socials .icon-tiktok{
    background: #000 !important;
}
footer .copyrights{
    display: block;
    margin: 3.75vw auto 1vw;
    text-align: center;
    color: #fff;
}
footer .copyrights a{
    color: #fff !important;
}
/* Responsive */
@media screen and (max-width:  1199px) {

}
@media screen and (max-width: 991px) {
    body{
        padding-top: 62px;
    }
    .container-fluid {
        padding: 0 15px;
    }
    .navbar{
        height: 62px;
        border-radius: 0 0 20px 20px !important;
        background: #fbfbf6 !important;
    }
    .navbar .container-fluid {
        padding: 0 15px;
    }
    .navbar:before{
        display: none;
    }
    .navbar .form-inline {
        border-radius: 0;
        background: none;
        box-shadow: none;
        padding: 0 10px;
        margin: 0 !important;
    }
    .navbar .navbar-nav{
        display: none;
    }
    .navbar .navbar-brand{
        margin: 0;
    }
    .navbar .navbar-brand img {
        width: auto;
        height: 36px;
    }
    .navbar .form-inline .btn.toggle-menu {
        height: auto;
        background: none;
        border-radius: 0;
        box-shadow: none;
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }
    .navbar .form-inline .btn.toggle-menu img{
        background: none;
        height: 16px;
        margin: 0 auto;
    }
    .navbar .form-inline > .btn span{
        display: none;
    }
    .btn-login , .dropdown-user{
        display: none !important;
    }
    .navbar .form-inline .search-group .form-control {
        height: 28.36px;
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 3px 6px rgba(13, 12, 34, 0.07);
        font-weight: normal;
        font-size: 12px;
    }
    .navbar .form-inline .search-group .btn {
        right: 10px;
        width: 17.35px;
        height: 18.17px;
    }
    .navbar .form-inline .search-group .btn img{
        width: 10px;
    }
    .navbar .form-inline .dropdown.dropdown-notifications .dropdown-toggle {
        width: 28px;
        height: 28px;
    }
    .navbar .form-inline .dropdown.dropdown-notifications .dropdown-toggle img {
        width: 16px;
    }
    .navbar .form-inline .dropdown.dropdown-notifications .dropdown-menu.dropdown-notifications-menu {
        width: 280px;
    }
    .dropdown-notifications-menu .notifications-header .notifications-header-title {
        font-size: 16px;
    }
    .dropdown-notifications-menu .notifications-header .badge {
        font-size: 11px;
        padding: 8px;
        border-radius: 10px;
    }
    .dropdown-notifications-menu .notifications-body .notifications-title {
        font-size: 12px;
        line-height: 2;
    }
    .notification-wrapper .notification-img {
        display: inline-block;
        background: #fff;
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }
    .select-category-title {
        font-size: 16px;
        font-weight: 600;
    }
    .category-item {
        width:62px;
        height: 64px;
        background: none;
        border-radius: 0;
        padding: 0;
    }
    .category-item.active {
        background: transparent;
        box-shadow: none;
    }
    .category-item .category-icon {
        width: 46px;
        height: 46px;
        border-radius: 10px;
        background: linear-gradient(#fcdb59 0%, #ffb900 100%);
        padding: 8px;
        margin: 0 auto;
    }
    .category-item .category-title {
        display: block;
        font-weight: normal;
        font-size: 11px;
        line-height: 26px;
        height: 26px;
        letter-spacing: 0;
        margin: 0 auto  ;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .section-title {
        font-size: 16px;
    }
    .responsive-ad{
        width: 230px;
        height: 76px;
        border-radius: 15px;
        margin: 10px auto;
    }
    .responsive-ad img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .item-wrapper {
        position: relative;
        display: block;
        width: 155px !important;
        height: auto !important;
        border-radius: 10px !important;
        box-shadow: 0 3px 6px rgba(19, 19, 19, 0.07);
        margin: 15px auto;
    }
    .item-wrapper.trip-item {
        width: 250px !important;
    }
    .item-wrapper .item-img {
        height: 130px !important;
        box-shadow: 0 3px 6px rgba(19, 19, 19, 0.07) !important;
        border-radius: 10px !important;
    }
    .item-wrapper.dress-item .item-img {
        height: 259px !important;
        border-radius: 10px;
    }
    .item-wrapper.trip-item .item-img {
        min-height: 150px;
    }
    .item-wrapper .item-details .has-installment {
        min-height: 26px;
        border-radius: 0 0 10px 10px;
        font-size: 10px;
    }
    .item-wrapper.trip-item .item-details .has-installment {
        min-height: 30px;
        font-size: 16px;
    }
    .item-wrapper .item-details .has-installment img {
        width: 16px;
        margin-right: 5px;
    }
    .item-wrapper.trip-item .item-details .has-installment img {
        width: 16px;
    }
    .item-wrapper .item-details {
        padding: 8px;
    }
    .item-wrapper.trip-item .item-details {
        padding: 12px;
    }
    .item-wrapper.home-item .item-details {
        padding: 8px;
    }
    .item-wrapper .item-details .buy-rent {
        margin-bottom: 10px;
    }
    .item-wrapper .item-details .buy-rent .btn {
        min-width: 40px;
        height: 20px;
        border-radius: 10px;
        margin: 0 7px;
        font-size: 11px;
        font-weight: 600;
    }
    .item-wrapper .item-details .item-title {
        font-size: 14px !important;
        line-height: 14px !important;
        height: 14px !important;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
    .item-wrapper.home-item .item-details .item-title {
        margin: 5px auto 8px;
    }
    .item-wrapper.trip-item .item-details .item-title{
        height: auto !important;
        white-space: normal;
        overflow: visible;
    }
    .item-wrapper.hotel-item .item-details .item-title,
    .item-wrapper.trip-item .item-details .item-title,
    .item-wrapper.car-item .item-details .item-title{
        max-width: 100%;
    }
    .item-wrapper .item-details .owner-store {
        margin-top: 12px;
    }
    .item-wrapper .item-details .owner-store .owner-logo {
        width: 20px !important;
        height: 20px !important;
        border: 1px solid #fff;
        border-radius: 6px !important;
        margin-right: 6px;
    }
    .item-wrapper.trip-item .item-details .owner-store .owner-logo {
        width: 30px !important;
        height: 30px !important;
    }
    .item-wrapper .item-details .owner-store .owner-details .owner-title {
        font-size: 10px !important;
        line-height: 12px !important;
    }
    .item-wrapper.trip-item .item-details .owner-store .owner-details .owner-title{
        font-size: 12px !important;
        line-height: 16px !important;
    }
    .item-wrapper .item-details .owner-store .owner-details .owner-location {
        font-size: 8px !important;
        line-height: 8px !important;
        margin-top: 0;
    }
    .item-wrapper .item-details .item-rating {
        border-radius: 0;
        box-shadow: none;
        background: none;
        padding: 0;
    }
    .item-wrapper.trip-item .item-details .item-rating {
        min-width: auto;
        min-height: auto;
        margin-top: 14px;
    }
    .item-wrapper .item-details .item-rating .rating-number {
        font-size: 11px !important;
        line-height: 13px;
        margin-right: 5px !important;
    }
    .item-wrapper.trip-item .item-details .item-rating .rating-number {
        font-size: 12px !important;
    }
    .item-wrapper .item-details .item-rating .rating-stars {
        font-size: 8px !important;
    }
    .item-wrapper.trip-item .item-details .item-rating .rating-stars {
        font-size: 11px !important;
    }
    .item-wrapper .item-price {
        top: auto !important;
        bottom: 10px !important;
        right: -6px;
        width: 78px;
        height: 22px;
        font-size: 10px;
        padding-top: 3px;
    }
    .item-wrapper .item-features{
        display: none;
    }
    .item-wrapper .item-details .start-from {
        display: none;
    }
    .item-wrapper .item-details .item-subtitle {
        max-width: 100%;
        font-size: 11px;
        line-height: 10px;
        height: 10px;
        margin-top: 5px;
    }
    .item-wrapper.trip-item .item-details .item-subtitle {
        max-width: 100%;
        font-size: 14px;
        line-height: 18px;
        height: auto;
        margin: 5px 0;
    }
    .item-wrapper .custom-mb {
        margin-bottom: 0;
    }
    .item-wrapper .d-flex{
        display: block !important;
    }
    footer{
        text-align: center;
        overflow: hidden;
    }
    footer:before {
        top: 50px;
        bottom: auto;
        width: 100%;
        height: 100%;
    }
    footer .footer-menu {
        margin: 40px auto 60px;
    }
    footer .footer-title {
        font-size: 16px;
        line-height: 23px;
    }
    footer .footer-list {
        display: block;
        margin: 10px 0 40px;
    }
    footer .footer-list li a {
        font-size: 12px;
        line-height: 23px;
        width: fit-content;
        margin: 0 auto;
    }
    footer .footer-menu li {
        display: block;
        margin: 15px auto;
    }
    footer .footer-menu li a {
        font-size: 16px;
        line-height: 1;
    }
    .social-title {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 16px;
    }
    .socials span {
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 15px;
        margin: 5px;
    }
    footer .btn-help {
        display: none;
        min-height: 40px;
        border-radius: 15px;
        font-size: 14px;
        padding: 6px 12px;
        margin: 0 0.521vw;
    }
    footer .btn-help img {
        width: 16px;
    }
    .download-app-wrapper {
        margin-top: 10px;
    }
    .download-app-wrapper .download-app-title {
        font-size: 14px;
    }
    .download-app-wrapper .download-app-buttons{
        display: block;
        margin-top: 10px;
    }
    .download-app-wrapper .download-app-buttons .download-app-button {
        height: 30px;
        width: auto;
        margin: 0.521vw 0;
    }
    footer .copyrights {
        /*margin: 40px auto 10px;*/
    }
    #chattingBtn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    .header-block {
        padding: 80px 0 20px;
        margin-top: -62px;
    }
    .header-block.about-header {
        padding-bottom: 90px;
    }
    .header-block .breadcrumb {
        margin: 20px 0 10px;
    }
    .header-block .breadcrumb li.active,
    .header-block .breadcrumb li a {
        font-size: 12px;
    }
    .header-block .header-title {
        font-size: 20px;
    }
    .about-wrapper {
        flex-flow: column;
        border-radius: 15px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
        margin: -80px auto 20px;
    }
    .about-wrapper .about-info {
        width: 100%;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
        padding: 30px 20px;
    }
    .about-wrapper .about-info .about-title {
        font-size: 14px;
        margin: 10px auto;
    }
    .about-wrapper .about-info .about-text {
        font-size: 11px;
    }
    .about-wrapper .about-icon {
        width: 100%;
        padding: 20px;
    }
    .about-wrapper .about-icon img {
        width: 64px;
        max-width: 100%;
    }
    .about-block {
        height: auto;
        border-radius: 15px;
        box-shadow: 0 3px 6px rgba(0, 0, 0,0.16);
        padding: 30px 20px;
        margin: 10px auto 20px;
    }
    .reservation-wrapper .about-block{
        height: auto;
        padding: 20px;
    }
    .about-block .about-title {
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 10px;
    }
    .about-block .login-form .about-title{
        font-size: 16px;
        line-height: 20px;
    }
    .about-block .about-text {
        font-size: 11px;
        line-height: 11px;
    }
    .about-block .login-form .about-text {
        margin-bottom: 20px;
    }
    .about-stats{
        padding: 20px;
    }
    .about-stats .media{
        flex-flow: column;
        justify-content: center;
        text-align: center;
    }
    .about-stats .media img {
        height: 30px;
        width: 30px;
        object-fit: contain;
        text-align: center;
        margin: 0 auto !important;
    }
    .about-stats .media .media-body {
        width: 100%;
    }
    .about-stats .media .stat-number {
        font-size: 18px;
        line-height: 20px;
        margin: 5px auto;
    }
    .about-stats .media .stat-text {
        font-size: 10px;
        margin-bottom: 20px;
    }
    .banner-slider .banner-mask {
        height: auto;
        border-radius: 15px;
    }
    .brand-item {
        width: 100px;
        margin: 10px auto;
    }
    .brand-item .brand-logo{
        border-width: 1px;
        border-radius: 15px;
        width: 96px;
        height: 96px;
    }
    .brand-item .brand-title {
        margin: 10px auto;
        font-size: 11px;
    }
    .brand-item .brand-rating {
        box-shadow: none;
        background: none;
        padding: 0;
    }
    .brand-item .brand-rating .rating-number {
        font-size: 10px;
        line-height: 10px;
    }
    .brand-item .brand-rating .rating-stars {
        font-size: 8px;
    }
    .brand-item .btn-follow {
        border-radius: 15px;
        font-size: 12px;
        line-height: 10px;
        padding: 0.781vw;
    }
    .brand-item .btn-follow img {
        width: 14px;
    }
    .sort-items .dropdown .dropdown-toggle {
        height: 34px;
        border-radius: 15px;
        box-shadow: 0 3px 6px rgba(13, 12, 34, 0.07);
        font-size: 16px;
    }
    .filter-btns .btn {
        height: 34px;
        font-size: 14px;
        line-height: 18px;
        margin-top: 15px;
    }
    .filter-btns .dropdown .dropdown-toggle .badge {
        top: 3px;
        right: 0.3vw;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    .side-menu {
        width: 240px;
        padding: 10px;
        left: -240px;
    }
    .side-menu .close-menu {
        display: none;
    }
    .side-menu ul {
        margin-top: 70px;
    }
    .side-menu ul li a {
        padding: 8px 20px;
        font-size: 14px;
    }
    .side-menu ul li.active a {
        font-size: 18px;
    }
    .side-menu ul li a img {
        width: 20px;
        height: 20px;
        margin-right: 15px;
    }
    .seller-details {
        padding-top: 50px;
    }
    .seller-details .btn-installment {
        top: 10px;
        font-size: 10px;
        line-height: 1;
    }
    .seller-details .btn-installment .installment-icon {
        margin: 0 auto 5px;
        width: 40px;
        height: 40px;
        border-radius: 15px;
    }
    .seller-details .btn-installment .installment-icon img {
        width: 30px;
    }
    .seller-details .seller-img {
        width: 100px;
        height: 100px;
    }
    .seller-details.seller-vip .seller-img:after {
        width: 24px;
        height: 24px;
    }
    .seller-details .seller-name {
        font-size: 16px;
        line-height: 1;
        margin: 8px auto;
    }
    .seller-details .seller-title {
        font-size: 11px;
        line-height: 1;
    }
    .seller-details .btn-chat {
        min-width: 100px;
        height: 28px;
        border-radius: 15px;
        font-size: 12px;
        margin: 8px auto;
    }
    .seller-details .btn-chat img {
        width: 16px;
        margin-right: 8px;
    }
    .seller-details .seller-location {
        font-size: 12px;
        line-height: 1;
        margin: 10px auto;
    }
    .seller-details .seller-info li {
        min-width: 75px;
        min-height: 24px;
        font-size: 11px;
        margin: 5px;
    }
    .seller-details .seller-info li img {
        max-width: 16px;
        max-height: 16px;
        margin-right: 10px;
    }
    .seller-details .seller-actions .btn {
        width: 100px;
        height: 34px;
        border-radius: 15px;
        margin: 8px;
    }
    .seller-details .seller-actions .btn-unfollow {
        font-size: 12px;
    }
    .seller-details .seller-actions .btn-request {
        font-size: 12px;
        line-height: 12px;
    }
    .seller-details .seller-actions .btn-unfollow img {
        width: 10px;
        margin-right: 8px;
    }

    .seller-details .seller-actions .btn-request img {
        width: 16px;
        margin-right: 8px;
    }
    .sort-items .dropdown-item {
        font-size: 12px;
        line-height: 1;
    }
    .item-single-wrapper {
        flex-flow: column-reverse;
    }
    .item-single-details,.item-single-images {
        width: 100%;
        border-radius: 15px;
        padding: 15px;
        margin: 10px auto;
    }
    .item-single-images:before {
        width: 125px;
        height: 110px;
    }
    .owl-wrapper{
        padding: 0 30px;
    }
    .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
        width: 24px;
        height: 24px;
        border-radius: 15px !important;
    }
    .owl-carousel .owl-nav button.owl-prev img, .owl-carousel .owl-nav button.owl-next img {
        width: 12px;
        height: 12px;
    }
    .owl-carousel .owl-nav button.owl-prev{
        left: -35px;
    }
    .owl-carousel .owl-nav button.owl-next {
        right: -35px;
    }
    .item-single-images .item-img {
        /*height: auto;*/
    }
    .item-single-images .item-thumbnails .item-thumbnail {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        margin: 2px;
    }
    .item-single-details .item-name {
        font-size: 16px;
    }
    .item-single-details .owner-store {
        margin-top: 10px;
    }
    .item-single-details .owner-store .owner-logo {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        margin-right: 8px;
    }
    .item-single-details .owner-store .owner-details .owner-title {
        font-size: 12px;
        line-height: 1;
    }
    .item-single-details .btn-installment {
        margin: 0 auto 10px;
        font-size: 10px;
        line-height: 1;
    }
    .item-single-details .btn-installment .installment-icon {
        width: 40px;
        height: 40px;
        border-radius: 15px;
        margin: 0 auto 5px;
    }
    .item-single-details .btn-installment .installment-icon img {
        max-width: 30px;
    }
    .item-single-details .item-rating {
        min-width: 90px;
        min-height: 12px;
        border-radius: 10px;
        padding: 4px 8px;
    }
    .item-single-details .item-rating .rating-number {
        font-size: 12px;
        line-height: 1;
    }
    .item-single-details .item-rating .rating-stars {
        font-size: 10px;
        letter-spacing: -1px;
    }
    .item-single-details .item-price {
        height: 30px;
        background: #fbfbf6;
        border: 1px solid #808080;
        border-radius: 30px;
        padding: 6px;
    }
    .item-single-details .item-price .price {
        font-size: 14px;
        margin: 0 0.521vw;
    }
    .item-single-details .item-price .price span {
        font-size: 14px;
        margin-left: 6px;
        margin-top: 0;
    }
    .item-single-details .item-price .title {
        min-width: 48px;
        height: 20px;
        border-radius: 30px;
        font-size: 11px;
    }
    .payment-wrapper {
        margin: 5px auto;
    }
    .radio-container {
        margin: 2% 0;
    }
    .radio-container .btn-payment {
        height: 26px;
        padding: 0 12px;
        border-radius: 15px;
        font-size: 12px;
    }
    .radio-container .btn-payment img {
        max-width: 16px;
        max-height: 16px;
        margin-right: 10px;
    }
    .item-single-details .btn-booking {
        height: 30px;
        border-radius: 15px;
        font-size: 12px;
    }
    .item-actions .btn {
        font-size: 11px;
        line-height: 1;
        margin-right: 10px;
        margin-top: 10px;
    }
    .item-actions .btn .img-mask {
        width: 30px;
        height: 30px;
        margin: 0 auto 8px;
    }
    .item-actions .btn .img-mask img {
        width: 14px;
    }
    .section-title {
        font-size: 18px;
        margin-top: 20px;
    }
    .section-title.single-title {
        font-size: 16px;
    }
    .details-list li {
        width: 100px;
        height: 100px;
        border-radius: 15px;
        border: 1px solid #f2f2f2;
        margin: 10px;
        padding: 10px;
    }
    .details-list li img {
        width: 48px;
        height: 48px;
    }
    .details-list li span {
        bottom: 1vw;
        font-size: 1.042vw;
        line-height: 1.042vw;
    }
    .details-list li span.badge {
        bottom: 48px;
        font-size: 18px;
    }
    .details-list li span {
        bottom: 10px;
        font-size: 12px;
        line-height: 1;
    }
    .details-block {
        border-radius: 15px;
        padding: 15px;
        margin: 10px auto;
    }
    .details-block .details-title {
        font-size: 16px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .details-block .details-text {
        font-size: 11px;
    }
    .rating-wrapper {
        border-radius: 15px;
        padding: 15px;
        margin: 10px auto;
    }

    .average-rating-wrapper .average-rating-circle {
        margin: 0 auto 10px;
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    .average-rating-wrapper .average-rating-text {
        font-size: 12px;
        margin: 10px auto;
    }
    .average-rating-wrapper .ratings-number {
        font-size: 12px;
        line-height: 1;
    }
    .rating-progress-wrapper {
        max-width: 300px;
        margin: 10px auto;
        border-left: none;
        border-right: none;
    }
    .rating-progress {
        margin: 10px auto;
    }
    .rating-progress .stars-number {
        min-width: 40px;
        font-size: 10px;
    }
    .rating-progress .progress {
        width: 180px;
        height: 10px;
        border: 1px solid #ccc !important;
        border-radius: 10px !important;
    }
    .rating-progress .rating-number {
        min-width: 40px;
        font-size: 10px;
    }
    .rate-product {
        font-size: 12px;
        line-height: 1;
    }
    .btn-customer-review {
        display: inline-flex;
        height: 30px;
        border-radius: 30px;
        border: 1px solid #ccc;
        font-size: 12px;
    }
    .rating > label:before {
        font-size: 16px;
    }
    .comments-wrapper {
        border-radius: 15px;
        padding: 15px;
    }
    .comments-wrapper .comments-title {
        font-size: 14px;
        line-height: 1;
    }
    .comments-wrapper .comments-title a {
        font-size: 12px;
        line-height: 1;
    }
    .comments-wrapper .comments-title a img {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }
    .comments-wrapper .comment-block {
        width: 100%;
        border-radius: 15px;
        padding: 15px;
        margin: 10px auto;
    }
    .comments-wrapper .comment-block .commenter-name {
        font-size: 12px;
        line-height: 1;
    }
    .comments-wrapper .comment-block .comment-text {
        font-size: 11px;
        line-height: 1;
        margin: 10px auto;
    }
    .comments-wrapper .comment-block .commenter-rating {
        font-size: 12px;
    }
    .comments-wrapper .comment-block .comment-date {
        bottom: 15px;
        right: 15px;
        font-size: 10px;
        line-height: 1;
    }
    .complain-link {
        font-size: 18px;
        margin-top: 20px;
    }
    .item-single-details .item-title {
        font-size: 12px;
        line-height: 1;
    }
    .item-single-details .btn-store {
        height: 24px;
        border-radius: 12px;
        font-size: 11px;
        margin-top: 5px;
    }
    .owl-theme .owl-dots .owl-dot.active span {
        width: 30px;
    }
    .owl-theme .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
    }
    .booking-wrapper {
        flex-direction: column;
    }
    .booking-wrapper.mt-5 {
        margin-top: 20px !important;
    }
    .booking-wrapper > div:first-of-type {
        width: 100%;
        margin-right: 0;
        border-radius: 15px;
        padding: 0;
        box-shadow: none;
    }
    .booking-wrapper .nav-pills {
        flex-flow: row !important;
        flex-wrap: nowrap;
        width: 100%;
        margin-bottom: 10px;
    }
    .booking-wrapper .nav-pills .nav-link {
        display: inline-flex;
        width: 24%;
        word-spacing: initial;
        padding: 5px;
        min-height: 30px;
        border-radius: 10px;
        font-size: 10px;
        line-height: 1.5;
        margin: 0 2% 0 0;
    }
    .booking-wrapper .nav-pills .nav-link:last-of-type {
        margin: 0;
    }
    .booking-wrapper .nav-pills .nav-link.active:before, .booking-wrapper .nav-pills .show>.nav-link:before {
        width: 100%;
        height: 60px;
        border-radius: 10px 10px 0 0;
    }
    .booking-wrapper .nav-pills .nav-link.active:after, .booking-wrapper .nav-pills .show>.nav-link:after {
        width: 100%;
        height: 4px;
        border-radius: 0;
        top: auto;
        bottom: -10px;
    }
    .booking-wrapper > div:last-of-type {
        width: 100%;
        border-radius: 15px;
        z-index: 1;
    }
    .booking-wrapper .tab-content {
        padding: 15px;
    }
    .booking-wrapper .tab-content .tab-content-title {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 16px;
    }
    .approved-wrapper {
        margin-top: 0;
        padding: 15px;
    }
    .approved-wrapper:before {
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 15px;
    }
    .orders-list .order-item {
        height: auto;
        border-radius: 15px;
        margin: 15px auto;
        flex-flow: column;
    }
    .orders-list .order-item.approved-jar {
        height: auto;
    }
    .orders-list .order-item.approved-item {
        margin-bottom: 40px;
    }
    .orders-list .order-item .order-num {
        display: none;
    }
    .orders-list .order-item .order-details {
        border-radius: 15px;
        padding: 10px;
    }
    .orders-list .order-item .order-details .item-img{
        width: 48px;
        height: 48px;
        border-radius: 10px;
        margin-right: 10px;
    }
    .orders-list .order-item.approved-jar .order-details .item-img{
        width: 48px;
        height: 62px;
    }
    .orders-list .order-item .order-details .item-title {
        font-size: 12px;
    }
    .orders-list .order-item.approved-jar .order-details .item-title {
        font-size: 12px;
        margin-top: 10px;
    }
    .orders-list .order-item .order-details .owner-store {
        margin: 5px 0;
    }
    .orders-list .order-item .order-details .owner-store .owner-logo {
        width: 20px;
        height: 20px;
        border-radius: 6px;
        margin-right: 5px;
    }
    .orders-list .order-item .order-details .owner-store .owner-title{
        font-size: 10px;
        line-height: 1;
    }
    .orders-list .order-item .order-details .order-date {
        font-size: 10px !important;
        line-height: 1;
    }
    .orders-list .order-item .order-details .order-date span:nth-of-type(2) {
    }
    .orders-list .order-item .order-details .item-price {
        font-size: 12px;
        line-height: 1;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .orders-list .order-item .order-details .order-status {
        min-width: 70px !important;
        min-height: 20px !important;
        border-radius: 20px;
        font-size: 10px !important;
    }
    .orders-list .order-item .order-action {
        width: 100%;
    }
    .orders-list .order-item .order-action .btn-pay {
        border-radius: 15px;
        font-size: 14px;
    }
    .orders-list .order-item.approved-item .cancel-wrapper {
        bottom: -30px;
        height: 50px;
        border-radius: 15px;
    }
    .orders-list .order-item.approved-item .cancel-wrapper .cancel-content {
        height: 30px;
    }
    .orders-list .order-item.approved-item .cancel-wrapper .cancel-content .btn-cancel {
        min-width: auto;
        height: 20px;
        border-radius: 10px;
        border: 1px solid #fff;
        font-size: 11px;
    }
    .orders-list .order-item.approved-item .cancel-wrapper .cancel-content .cancel-countdown {
        font-size: 11px;
    }
    .orders-list .order-item.approved-item .cancel-wrapper .cancel-content .cancel-countdown .countdown {
        font-size: 10px;
        min-width: 60px;
    }
    .orders-list .order-item.approved-jar .order-details .jar-contents > div {
        font-size: 10px;
        margin: 4px auto;
    }
    .orders-list .order-item.approved-jar .order-details .jar-contents > div .btn {
        min-width: 70px;
        height: 18px;
        font-size: 10px;
        border-radius: 15px;
    }
    .orders-list .order-item .order-action .btn-delete-order {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 24px;
        height: 24px;
    }
    .orders-list.payment-orders .order-item .order-details .payment-date {
        font-size: 10px;
        line-height: 1;
        margin: 5px 0;
    }
    .btn-primary, .btn-secondary, .btn-light, .btn-info {
        height: 40px;
        border-radius: 15px;
        font-size: 14px;
    }
    .features-group {
        margin-bottom: 15px;
    }
    .features-group .feature-item {
        max-width: 100%;
        border-radius: 15px;
        padding: 4px 8px;
        margin: 5px auto;
    }
    .features-group .feature-item .feature-img {
        width: 40px;
        height: 40px;
        border-radius: 15px;
        border: 1px solid #f2f2f2;
    }
    .features-group .feature-item .feature-img img {
        width: 24px;
        height: 24px;
    }
    .features-group .feature-item .feature-details {
        padding: 10px 20px;
        width: calc(100% - 60px);
    }
    .features-group .feature-item .feature-details .feature-title {
        font-size: 12px;
    }
    .features-group .feature-item .feature-details .feature-price {
        font-size: 12px;
    }
    .features-group .feature-item .feature-label {
        right: 15px;
        top: 15px;
    }
    .feature-label .checkmark {
        width: 20px;
        height: 20px;
        border-radius: 15px;
        border: 1px solid #707070;
    }
    .features-group .load-more {
        font-size: 16px;
        margin: 15px auto;
    }
    .chat-room {
        border-radius: 15px;
        padding: 10px;
        margin: 10px auto;
    }
    .chat-room .booking-wrapper > div:first-of-type {
        width: 100%;
        padding: 2px 5px;
        margin-bottom: 10px;
    }
    .chat-room .booking-wrapper .nav-pills {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
        margin: 0;
    }
    .chat-room .booking-wrapper .nav-pills .nav-link {
        width: auto;
        border: none;
        padding: 0;
        margin: 5px;
    }
    .chat-room .booking-wrapper .nav-pills .nav-link.active .contact:before,
    .chat-room .booking-wrapper .nav-pills .show>.nav-link .contact:before {
        display: none;
    }
    .chat-room .contact-list .contact img {
        width: 36px;
        height: 36px;
        margin: 0!important;
    }
    .chat-room .contact-list .contact .contact-name {
        display: none;
    }
    .chat-room .contact-list .contact .unread {
        display: none;
    }
    .chat-room .booking-wrapper > div:last-of-type {
        width: 100%;
        padding: 8px;
    }
    .chat-room .booking-wrapper .tab-content {
        border-radius: 15px;
        padding: 0;
    }
    .chat-body .chat-messages {
        height: calc(65vh - 20px);
    }
    #map {
        height: 200px;
        margin-top: 0;
    }
    .contact-wrapper {
        display: block;
        border-radius: 15px;
        margin-top: 15px;
        padding: 15px 0;
    }
    .contact-wrapper .contact-info-wrapper {
        width: 100%;
        padding: 0 15px;
        border: none;
    }
    .contact-wrapper .contact-info-wrapper .contact-info-title {
        font-size: 16px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .contact-wrapper .contact-info-wrapper .contact-info {
        margin-bottom: 20px;
    }
    .contact-wrapper .contact-info-wrapper .contact-info-text {
        font-size: 12px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .contact-wrapper .contact-info-wrapper .contact-info-text span {
        width: 36px;
    }
    .contact-wrapper .contact-info-wrapper .contact-info-text span img {
        height: 20px;
    }
    .contact-wrapper .contact-info-wrapper .contact-logo{
        display: none;
    }
    .contact-form-wrapper {
        width: 100%;
        padding: 15px;
    }
    .contact-form-wrapper .contact-form-title {
        font-size: 18px;
        line-height: 1;
    }
    .contact-form-wrapper .contact-form-text {
        font-size: 10px;
        line-height: 1;
        margin: 10px auto 20px;
    }
    .contact-form .form-control {
        min-height: 50px;
        border: none;
        border-radius: 15px;
    }
    .contact-form .btn-primary {
        min-width: 100px;
    }
    .schedule-title {
        font-size: 16px;
    }
    .schedule-wrapper {
        border-radius: 15px;
        padding: 15px;
        margin: 10px auto;
    }
    .schedule-wrapper .item-wrapper {
        width: 100% !important;
        margin-bottom: 10px;
    }
    .schedule-wrapper .item-wrapper .item-details {
        padding: 10px;
    }
    .schedule-wrapper .item-wrapper .item-details .item-title {
        font-size: 12px !important;
        margin-bottom: 1.25vw;
    }
    .schedule-wrapper .item-wrapper .item-price {
        bottom: 0 !important;
        font-size: 12px;
    }
    .buying-wrapper {
        border-radius: 15px;
        padding: 15px;
        width: 100%;
    }
    .buying-wrapper .buying-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .buying-wrapper .buying-text {
        font-size: 10px;
    }
    .confirm-modal .modal-dialog {
        max-width: 90%;
    }
    .confirm-modal .modal-content {
        border-radius: 15px;
    }
    .confirm-modal .modal-body {
        padding: 30px 5px;
    }

    .schedule-select-title {
        font-size: 14px;
        margin: 10px 0;
    }
    .schedule-select-title img {
        width: 16px;
        height: 16px;
    }
    .schedule-select label {
        font-size: 10px;
        margin-bottom: 8px;
        text-align: initial !important;
    }
    .schedule-select .form-control {
        height: 30px;
        border-radius: 15px;
    }
    .schedule-select.select-month .form-control {
        font-size: 10px;
    }
    .schedule-select.select-day .form-control {
        font-size: 10px;
    }
    .selected-date-block {
        font-size: 11px;
    }
    .selected-date-block .selected-date {
        height: 24px;
        border-radius: 15px;
        font-size: 12px;
        margin-left: 10px;
        padding: 6px 12px;
    }
    .schedule-select.select-time .form-control {
        font-size: 12px;
    }
    .schedule-select.select-location .form-control {
        font-size: 10px;
    }
    .enter-location {
        font-size: 11px;
    }
    #map.map2 {
        height: 140px;
        margin-top: 0;
        margin-bottom: 15px;
    }
    .w-25 {
        width: auto!important;
        min-width: 50%;
    }
    .selected-date-wrapper .title {
        font-size: 12px;
    }
    .selected-date-wrapper .date {
        font-size: 12px;
    }
    .selected-date-wrapper .time {
        font-size: 11px;
    }
    .selected-date-wrapper .time span {
        font-size: 9px;
    }
    .comments-wrapper .read-more {
        font-size: 11px;
        line-height: 1;
    }
    .error-wrapper{
        margin: 50px auto 30px;
    }
    .error-wrapper .error-icon{
        max-width: 150px;
    }
    .error-wrapper .error-title{
        font-size: 36px;
        line-height: 42px;
        margin: 20px  auto 10px;
    }
    .error-wrapper .error-text{
        font-size: 18px;
        line-height: 24px;
    }
    .header-block .header-text {
        font-size: 11px;
        line-height: 1;
    }
    nav.headings {
        border-radius: 15px;
        padding: 15px 10px;
        margin: 20px auto !important;
        width: 100%;
    }
    nav.headings .headings-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    nav.headings ol {
        padding-inline-start: 10px;
        font-size: 10px;
    }
    .also-you-need {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .qa-block {
        margin-bottom: 20px;
    }
    .qa-block .question {
        font-size: 13px;
    }
    .qa-block .answer {
        font-size: 10px;
        line-height: 1.2;
        margin-top: 4px;
        margin-bottom: 15px;
    }
    .custom-title {
        background-size: 287px 160px;
        font-size: 24px;
        min-height: 180px;
        margin: 0 auto 1vw;
    }
    .confirm-wrapper {
        margin: 20px auto;
    }
    .confirm-wrapper .confirm-icon img {
        width: 40px;
        height: 40px;
    }
    .confirm-wrapper .confirm-title {
        font-size: 20px;
        line-height: 1.5;
        margin: 10px auto;
    }
    .confirm-wrapper .confirm-text {
        font-size: 13px;
        line-height: 1.3;
        margin: 10px auto;
    }
    .confirm-wrapper .btn {
        min-width: 130px;
        height: 30px;
        border-radius: 15px;
        font-size: 12px;
        margin-top: 10px;
    }
    .groom-stories img {
        width: 60vw;
    }
    .groom-bride-title {
        height: 36px;
        border-radius: 15px;
        font-size: 14px;
        padding: 0 20px;
        margin: 40px auto;
    }
    .groom-bride-mask {
        height: 220px;
    }
    .story-img {
        width: 200px;
        height: 246px;
        margin: 0 auto 30px;
        z-index: 1;
    }
    .groom-bride-title-2 {
        height: 34px;
        border-radius: 15px;
        font-size: 14px;
    }
    .story-block {
        border-radius: 15px;
        padding: 15px;
        margin: 10px auto;
    }
    .story-block .story-title {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .story-block .story-text {
        display: block;
        font-size: 11px;
        line-height: 1;
    }
    .they-choose {
        font-size: 13px;
        line-height: 1;
        margin: 30px 0 15px;
    }
    .happy-packages-wrapper {
        border-radius: 15px;
        margin-bottom: 40px;
        padding: 20px 0;
    }
    .happy-packages-wrapper .happy-packages-title {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 15px;
    }
    .happy-package-item {
        width: 120px;
        padding: 5px 8px;
        border-radius: 15px;
    }
    .happy-package-item .happy-package-title {
        font-size: 11px;
        margin-bottom: 5px;
    }
    .happy-package-item .happy-package-img {
        height: 90px;
        border-radius: 15px;
    }
    .happy-package-item .happy-package-name {
        font-size: 11px;
        margin: 5px 0;
    }
    .groom-bride-album-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .groom-bride-album-title .btn-secondary {
        height: 24px;
        min-width: 130px;
    }
    .groom-bride-album {
        border-radius: 15px;
    }
    .groom-bride-video-title {
        font-size: 12px;
        line-height: 1;
        margin: 15px 0 10px;
    }
    .payed-wrapper {
        border-radius: 10px;
        padding: 15px 0;
        margin: 20px auto;
        text-align: center;
    }
    .payed-wrapper .they-payed {
        width: 100%;
        height: 30px;
        border-radius: 15px;
        font-size: 11px;
        padding: 0 10px;
    }
    .payed-wrapper .they-payed .btn-secondary {
        min-width: 130px;
        font-size: 10px;
    }
    .faq-title {
        font-size: 14px;
        margin: 30px 0 15px;
    }
    .help-center .qa-block .question {
        font-size: 13px;
    }
    .help-center .qa-block .answer {
        font-size: 11px;
    }
    .item-single-details .label-outdoor {
        height: 20px;
        border-radius: 15px;
        font-size: 10px;
        margin-top: 0.5vw;
        padding: 0 10px;
    }
    .item-single-details .label-branches {
        height: 20px;
        border-radius: 15px;
        font-size: 11px;
        padding: 0 10px;
        margin-top: 10px;
    }
    .features-group .feature-item .see-more {
        bottom: 2px;
        font-size: 10px !important;
    }
    .feature-label .checkmark:after {
        width: 6px;
        height: 9px;
        border-width: 0 3px 3px 0;
    }
    .features-group .feature-item.features-group .feature-item-details .feature-details {
        padding: 10px;
        width: calc(100% - 70px);
    }
    .features-group .feature-item + .features-group .feature-item-text {
        font-size: 11px;
        margin-top: 10px;
    }
    .installment-special-offers {
        flex-direction: column;
        border-radius: 15px;
        padding: 15px;
        margin: 20px auto 0;
    }
    .installment-special-offers .installment-title {
        font-size: 16px;
        line-height: 1;
        margin-bottom: 15px;
    }
    .installment-special-offers .divider {
        display: inline-block;
        width: 100px;
        height: 1px;
        border-radius: 10px;
        margin: 0;
    }
    .installment-special-offers .btn-light {
        height: 32px;
        font-size: 14px;
        margin: 15px auto;
    }
    .installment-special-offers .discount-up-to {
        font-size: 12px;
        line-height: 1;
        margin: 0 auto;
    }
    .home-title {
        font-size: 20px;
        margin: 20px auto 10px;
    }
    .home-title a {
        font-size: 12px;
    }
    .home-title img {
        width: 20px;
    }
    .groom-category, .bride-category {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }
    .installment-slider .item img {
        width: 100px;
        height: 48px;
    }
    ul.recommend-list li {
        width: auto;
        margin: 5px;
        text-align: initial;
    }
    .item-wrapper.item-recommend .item-details {
        padding: 10px;
    }
    .item-wrapper.item-recommend .item-details .item-title {
        margin: 10px auto;
    }
    .item-wrapper.item-recommend .item-details .owner-store {
        margin: 0;
        text-align: initial;
        width: 100%;
    }
    .category-discount-wrapper .category-discount {
        width: 31%;
        font-size: 2.6vw;
        margin: 4% 0;
    }
    .category-discount-wrapper .category-discount .category-img {
        height: 25vw;
    }
    .home-banners {
        flex-direction: column;
    }
    .banner-home {
        border-radius: 10px;
    }
    .banner-big .banner-home {
        width: 100%;
        height: 56vw;
        margin-bottom: 5px;
    }
    .banner-small {
        margin-left: 0;
    }
    .banner-small .banner-home {
        width: 45vw;
        height: 27vw;
        margin-bottom: 10px;
    }
    .special-offer {
        border-radius: 10px;
        padding: 15px;
        margin: 10px auto;
    }
    .special-offer .special-offer-img {
        width: 80px;
        height: 80px;
    }
    .special-offer .special-offer-title {
        font-size: 12px;
        line-height: 1;
        margin: 15px auto 10px;
    }
    .special-offer .special-offer-text {
        font-size: 11px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .special-offer .btn-secondary {
        font-size: 14px;
        min-width: 100px;
    }
    .deals-24-hours {
        height: auto;
        flex-direction: column;
    }
    .deals-24-hours .deals-block {
        width: 100%;
        height: auto;
        padding: 15px;
    }
    .deals-24-hours .deals-block .deals-title {
        font-size: 16px;
    }
    .deals-24-hours .deals-block .deals-text {
        font-size: 12px;
        margin: 10px auto;
    }
    .deals-24-hours .deals-block .btn-secondary {
        height: 32px;
        min-width: 100px;
    }
    .deals-24-hours .married-24 {
        width: 100%;
        height: 100%;
        padding: 15px;
    }
    .deals-24-hours .married-24 .married-title {
        font-size: 20px;
        line-height: 1;
    }
    .deals-24-hours .married-24 .in-24-hours {
        font-size: 12px;
        line-height: 1;
    }
    .deals-24-hours .married-24 img {
        display: inline-block;
        height: 64px;
        margin: 0.521vw 0.521vw 0;
    }
    .jar-item {
        width: 150px;
        height: 164px;
        border-radius: 15px;
        padding: 0 10px;
        margin: 50px auto 10px;
    }
    .jar-item .jar-img {
        display: block;
        position: relative;
        top: -28px;
        width: 64px;
        margin: 0 auto;
        text-align: center;
    }
    .jar-item .jar-price {
        top: 38px;
        right: -4px;
        width: 80px;
        height: 34px;
        font-size: 12px;
    }
    .jar-item .jar-title {
        font-size: 12px;
        min-height: 40px;
        margin-top: 10px;
    }
    .jar-item .jar-info span {
        height: 22px !important;
        border-radius: 8px !important;
        font-size: 11px !important;
        padding: 0 8px !important;
        margin: 2px !important;
    }
    .jar-item .jar-info span.number {
        font-size: 14px !important;
    }
    .index-header .header-images {
        margin-top: -62px !important;
        margin-bottom: 30px !important;
    }
    .gender-container {
        width: 100px;
        margin: 10px;
    }
    .gender-container .btn-gender {
        height: 125px;
        border-radius: 10px;
        padding: 10px;
        font-size: 12px;
        line-height: 1;
    }
    .gender-container .btn-gender .img-mask {
        height: 80px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .installment-banner {
        border-radius: 10px;
    }
    .installment-period {
        border-radius: 10px;
        padding: 10px;
        margin: 10px auto 25px;
    }
    .installment-period .table tr th {
        font-size: 10px;
        margin-bottom: 5px;
    }
    .installment-period .table tr td img {
        width: 60px;
        height: 30px;
    }
    .installment-period .table tr td {
        font-size: 10px;
    }
    .table-responsive::-webkit-scrollbar {
        height: 4px;
    }
    .installment-terms-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .installment-terms-text {
        font-size: 11px;
    }
    .online-process-step {
        font-size: 14px;
        text-align: center;
    }
    .online-process-title {
        font-size: 18px;
        text-align: center;
    }
    .online-process-img {
        width: 300px;
        height: 182px;
        margin: 10px auto;
    }
    .online-process-text {
        font-size: 11px;
        line-height: 1;
        margin-bottom: 10px;
        text-align: center;
    }
    .installment-wrapper {
        flex-flow: column;
        justify-content: center;text-align: center;
        border-radius: 10px;
        padding: 15px;
        margin: 10px auto;
    }
    .installment-wrapper .installment-img {
        width: 100px;
        height: 98px;
        border-radius: 10px;
        margin: 0 auto;
    }
    .installment-wrapper .installment-details {
        width: 100%;
    }
    .installment-wrapper .installment-details .installment-title {
        font-size: 14px;
        margin: 8px auto;
    }
    .installment-wrapper .installment-details .installment-text {
        font-size: 11px;
        line-height: 1;
    }
    .login-wrapper {
        margin-top: -62px;
    }
    .login-wrapper .login-icon {
        width: 25%;
    }
    .login-wrapper .login-form-wrapper{
        width: 75%;
    }
    .login-wrapper .login-form-wrapper .login-form {
        width: 80%;
        border-radius: 10px;
        padding: 15px;
    }
    .login-form .login-title {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 15px;
    }
    .login-form .login-subtitle {
        font-weight: 400;
        font-size: 11px;
        line-height: 1;
        margin-bottom: 20px;
    }
    .login-form .form-control {
        height: 40px;
        border-radius: 0 15px 15px 0 !important;
        font-size: 12px;
    }
    .login-form .show-password {
        width: 16px;
        height: 16px;
        right: 15px;
    }
    .login-form .input-group-text {
        border-radius: 15px 0 0 15px;
        width: 30px;
    }
    .login-form .input-group-text img {
        width: 14px;
        height: 14px;
    }
    .login-wrapper .login-form-wrapper br{
        display: none;
    }
    .login-wrapper .login-form-wrapper .mb-4 {
        margin-bottom: 0 !important;
    }
    .login-form .sign-with {
        font-size: 12px;
        line-height: 1;
        margin-bottom: 5px;
    }
    .login-form .btn-google, .login-form .btn-facebook {
        height: 20px;
        border-radius: 10px;
        font-size: 10px;
        margin: 10px 2px;
    }
    .login-form select.form-control {
        background-position: calc(100% - 15px) center;
        background-size: 14px 8px;
    }
    .relation-label .checkmark {
        right: 6px;
        height: 10px;
        width: 10px;
        border: 1px solid #808080;
    }
    .offer-banner {
        border-radius: 15px;
    }
    .user-notification {
        font-size: 16px;
        margin: 20px auto 10px;
    }
    .notification-block {
        border-radius: 10px;
        padding: 10px 15px 5px;
        margin: 10px auto;
    }
    .notification-block .notification-time {
        font-size: 10px;
        line-height: 1;
        margin-bottom: 5px;
    }
    .notification-block .notification-wrapper .notification-img {
        width: 20px;
        height: 20px;
        border-radius: 5px;
    }
    .notification-block .notification-wrapper .notification-name {
        font-size: 8px;
        margin: 0 8px;
    }
    .notification-wrapper .notification-details .notification-title {
        font-size: 12px;
        line-height: 1;
    }
    .notification-block .notification-wrapper .notification-details .notification-title {
        font-size: 14px;
    }
    .notification-wrapper .notification-details .notification-text {
        font-size: 10px;
        line-height: 1;
    }
    .notification-block .notification-wrapper .notification-details .notification-text {
        font-size: 12px;
        margin: 10px 0;
    }
    .dropdown-notifications-menu .notifications-body {
        padding: 10px;
        max-height: 62vh;
    }
    .dropdown-notifications-menu .notifications-header {
        padding: 10px;
    }
    .notification-wrapper {
        border-radius: 15px;
        padding: 5px;
        margin: 5px auto;
    }
    .notification-wrapper .notification-details {
        width: calc(100% - 80px);
        margin: 0 5px;
    }
    .notification-wrapper .notification-details .notification-time {
        font-size: 10px;
        line-height: 1;
        margin-top: 5px;
    }
    .orders-list.payment-orders .order-item .order-details .rest-amount {
        font-size: 10px;
        line-height: 2;
    }
    .orders-list .order-item .order-action .btn-see-invoice img {
        width: 16px;
        margin-bottom: 5px;
    }
    .orders-list .order-item .order-action .btn-see-invoice {
        border-radius: 15px;
        padding: 5px;
        font-size: 12px;
        line-height: 1;
    }
    .invoice-modal .table tr th, .invoice-modal .table tr td {
        font-size: 10px;
    }
    .invoice-modal .table tr td .money-paid {
        min-width: 64px;
        min-height: 20px;
        border-radius: 15px;
        font-size: 10px;
    }
    .amount-paid {
        height: 30px;
        border-radius: 15px;
        font-size: 11px;
        padding: 7px 0;
        margin: 5px auto 20px;
    }
    .rest-amount-total {
        font-size: 14px;
        margin: 10px auto 20px;
    }
    .package-single-icon {
        margin: 20px auto;
    }
    .package-single-icon:before {
        top: 0;
    }
    .package-single-icon img {
        width: 100px;
    }
    .package-single-title {
        font-size: 20px;
        line-height: 1;
        margin: 0 auto 20px;
    }
    .single-package-list {
        margin: 0 auto;
    }
    .single-package-list li {
        margin: 10px auto;
        padding: 0 5px;
    }
    .item-wrapper.package-single-item {
        padding: 0 8px;
    }
    .item-wrapper.package-single-item .item-details {
        padding: 8px 0;
    }
    .item-wrapper.package-single-item .category-name {
        font-size: 12px;
        margin: 5px auto;
    }
    .package-total {
        width: 80%;
        height: 40px;
        border-radius: 15px;
        margin: 15px auto 25px;
        padding: 15px;
    }
    .package-total .title {
        font-size: 16px;
    }
    .package-total .total {
        font-size: 16px;
    }
    .package-create {
        border-radius: 15px;
        width: 100%;
        height: 100px;
        padding: 15px;
        margin: 20px auto 10px;
    }
    .package-create .package-title {
        font-size: 16px;
        line-height: 1;
        max-width: 100%;
    }
    .jar-item.package-item {
        width: 175px;
        height: 200px;
        margin: 70px auto 10px;
    }
    .jar-item.package-item .jar-img {
        top: -50px;
        width: 100px;
    }
    .jar-item.package-item .jar-price {
        top: 60px;
        right: auto;
        left: -4px;
        width: 80px;
        height: 34px;
        font-size: 14px;
    }
    .jar-item.package-item .jar-title {
        font-size: 13px;
        min-height: 50px;
        margin-top: -10px;
    }
    .password-changed {
        margin: 30px auto;
    }
    .password-changed img {
        width: 40px;
    }
    .payment-title {
        font-size: 16px;
        margin: 20px auto 10px;
    }
    .payment-text {
        font-size: 13px;
    }
    .payment-tabs {
        margin: 20px auto 10px;
    }
    .payment-tabs .nav-tabs .nav-link {
        height: 40px;
        border-radius: 25px;
        font-size: 11px;
        margin: 5px auto;
    }
    .payment-tabs .nav-tabs .nav-link .tab-icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    .payment-tabs .nav-tabs .nav-link .tab-icon img {
        width: 24px;
        height: 24px;
    }
    .choose-provider {
        font-size: 14px;
        margin: 15px auto;
    }
    .provider-list {
        border-radius: 15px;
        padding: 10px 0;
    }
    .provider-list .provider-item {
        height: 36px;
        border-radius: 15px;
        margin: 15px;
    }
    .provider-list .provider-item .provider-logo img {
        max-height: 24px;
    }
    .provider-list .provider-item .provider-title {
        font-size: 11px;
    }
    .alert-payment {
        border-radius: 15px;
        font-size: 10px;
        margin: 15px 15px 0;
    }
    .alert-payment img {
        height: 16px;
        margin-right: 10px;
    }
    .confirmation-wrapper {
        width: 80%;
        border-radius: 15px;
        padding: 15px;
    }
    .confirmation-modal .confirmation-title {
        font-size: 14px;
        line-height: 1;
        margin-bottom: 15px;
    }
    .confirmation-wrapper .item-wrapper {
        margin: 10px auto;
    }
    .confirmation-wrapper .item-wrapper .item-img {
        width: 100%;
        margin: 5px auto;
    }
    .payment-promo-code {
        font-size: 10px;
    }
    .payment-promo-code .input-group {
        margin-left: 10px;
    }
    .payment-promo-code .input-group .form-control {
        height: 30px;
        border-radius: 15px;
        font-size: 12px;
    }
    .payment-promo-code .input-group .btn {
        height: 30px;
        border-radius: 0 15px 15px 0;
    }
    .payment-promo-code .input-group .btn i{
        font-size: 12px;
    }
    .wrong-promo-code {
        font-size: 12px;
        margin: 10px auto 20px;
    }
    .payment-total {
        margin: 10px auto;
    }
    .payment-total > div {
        height: 30px;
        font-size: 12px;
    }
    .payment-total > div:last-of-type {
        font-size: 14px;
    }
    .checkout-wrapper {
        display: flex;
        flex-flow: column-reverse;
    }
    .checkout-item {
        width: 100%;
        padding-top: 25px;
    }
    .checkout-item:before {
        display: none;
    }
    .checkout-item .item-wrapper {
        width: 100% !important;
    }
    .checkout-item .item-wrapper .item-img {
        margin: 10px auto;
        box-shadow: none !important;
    }
    .checkout-item .item-text {
        font-size: 11px;
        line-height: 1;
        margin-bottom: 25px;
    }
    .checkout-wrapper .confirmation-wrapper {
        width: 100%;
        margin-top: 20px;
    }
    .confirmation-wrapper .date-row {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .confirmation-wrapper .date-row .time {
        font-size: 11px;
        margin-right: 10px;
    }
    .confirmation-wrapper .date-row .date {
        font-size: 12px;
    }
    .album-item {
        width: 100%;
        height: 40vw;
        border-radius: 15px;
        margin: 10px auto;
    }
    .photographer-pages {
        width: 160px;
        height: 30px;
        margin-top: 10px;
    }
    .photographer-pages a {
        font-size: 12px;
        margin: 0 -5px;
    }
    .photographer-pages a:first-of-type {
        border-radius: 10px 0 0 10px;
    }
    .photographer-pages a:last-of-type {
        border-radius: 0 10px 10px 0;
    }
    .photographer-pages a.active {
        border-radius: 10px;
    }
    .album-item .album-details {
        opacity: 1;
        bottom: 0;
        height: 40px;
        border-radius: 0 0 10px 10px;
        padding: 10px;
    }
    .album-item .album-details .album-name {
        font-size: 11px;
        line-height: 1;
    }
    .album-item .album-details .album-date {
        font-size: 9px;
    }
    .albums-header {
        border-radius: 10px;
        height: 80px;
        padding: 15px;
    }
    .albums-header .albums-title {
        font-size: 20px;
    }
    .albums-header .albums-text {
        font-size: 14px;
    }
    .album-item .view-album {
        display: none;
    }
    .item-single-images{
        padding-top: 45px;
    }
    .item-single-images .btn-light {
        top: 10px;
        height: 26px;
        font-size: 14px;
    }
    .item-single-images .btn-light img {
        width: 16px;
    }
    .relation-group .relation-label {
        height: 40px;
        border-radius: 15px;
        padding: 10px;
        font-size: 10px;
    }
    .login-form label {
        font-size: 12px;
        line-height: 1;
        padding-top: 6px;
    }
    .custom-control-label::before, .custom-control-label::after {
        top: 4px;
    }
    .hide-responsive{
        display: none;
    }
    .estimated-time {
        font-size: 10px;
        margin-top: 10px;
    }
    .verification-text {
        font-size: 11px;
        line-height: 1.5;
        margin-top: 20px;
    }
    .verification-code .vCode-input {
        width: 7vw;
        height: 7vw;
        border-radius: 10px;
        font-size: 16px;
        margin: 0 2px;
    }
    .code-text {
        font-size: 10px;
        line-height: 1;
        margin: 15px 0;
    }
    .fancy {
        font-size: 10px;
        line-height: 1;
        margin: 10px auto;
    }
    .fancy span {
        width: 100%;
    }
    .login-form .w-50{
        width: auto !important;
        min-width: 50% !important;
    }
    .profile-wrapper {
        border-radius: 15px;
        margin-top: 20px;
    }
    .profile-wrapper .profile-header {
        height: 90px;
        padding: 0 40px;
        font-size: 24px;
    }
    .complete-profile {
        padding: 20px;
        margin-top: 30px;
    }
    .complete-profile .complete-profile-title {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .complete-profile .progress {
        height: 10px;
        border-radius: 15px;
    }
    .complete-profile .progress .progress-bar{
        border-radius: 15px;
    }
    .complete-profile .progress .progress-bar:after {
        width: 14px;
        height: 14px;
    }
    .complete-profile .progress-title {
        font-size: 10px;
        line-height: 1;
    }
    .complete-profile .btn {
        min-width: 100px;
        height: 20px;
        border-radius: 15px;
        font-size: 11px;
        margin-top: 25px;
    }
    .profile-actions {
        margin: 15px auto;
    }
    .profile-actions .btn {
        height: 30px;
        border-radius: 15px;
        font-size: 12px;
    }
    .profile-actions .btn img {
        width: 20px;
        height: 20px;
        margin: 0 10px;
    }
    .installment-default-wrapper {
        border-radius: 15px;
        padding: 15px;
        margin-top: 10px;
    }
    .installment-default-wrapper .installment-default {
        min-width: 100%;
        border-radius: 15px;
        padding: 10px;
    }
    .installment-default-wrapper .installment-default img {
        width: 48px;
        height: 48px;
    }
    .installment-default-wrapper .installment-default .installment-title {
        font-size: 11px;
        line-height: 1;
    }
    ul.installment-other-wrapper {
        border-radius: 15px;
        padding: 15px;
        margin: 10px auto;
    }
    ul.installment-other-wrapper li.installment-other {
        padding: 15px 0;
        border-bottom: 1px solid rgba(13, 12, 34, 0.07);
    }
    ul.installment-other-wrapper li.installment-other .installment-details img {
        width: 36px;
        height: 36px;
    }
    ul.installment-other-wrapper li.installment-other .installment-details .installment-title {
        font-size: 9px;
        line-height: 1;
    }
    ul.installment-other-wrapper li.installment-other .btn-light {
        font-size: 9px;
        min-width: auto;
    }
    .form-wrapper {
        border-radius: 15px;
    }
    .form-wrapper .form-header, .form-wrapper .form-body {
        padding: 15px;
    }
    .form-wrapper .form-header {
        border-bottom: 1px solid #ccc;
    }
    .form-wrapper .form-header .form-title {
        font-size: 14px;
        line-height: 1;
    }
    .form-wrapper .form-header .form-subtitle {
        font-size: 11px;
        line-height: 1;
        margin-top: 10px;
    }
    .form-style .input-group-text {
        min-width: 100px !important;
        font-size: 9px !important;
    }
    .form-style .form-control {
        height: 30px;
        border-radius: 15px !important;
        font-size: 11px;
    }
    .form-style .contact-info-title {
        font-size: 13px;
        line-height: 1;
        margin: 10px auto 15px;
    }
    .profile-wrapper .user-info {
        min-height: 100px;
        padding: 0 40px;
    }
    .profile-wrapper .user-info .user-img {
        top: -2.865vw;
        margin-top: -1.042vw;
        width: 64px;
        height: 64px;
        border-radius: 10px;
        border: 2px solid #808080;
    }
    .profile-wrapper .user-info .user-name {
        font-size: 12px;
        line-height: 1;
    }
    .profile-wrapper .user-info .user-id {
        font-size: 10px;
        line-height: 1;
    }
    .deal-24-offer {
        border-radius: 10px;
        width: 360px;
        height: auto;
        margin: 5px auto;
    }
    .deal-24-offer.deal-big {
        width: 634px;
        height: auto;
    }
    .trending-offer {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    .offer-car-rent {
        width: 700px;
        height: auto;
        border-radius: 10px;
        margin: 5px auto;
    }
    .offer-car-rent.classic-car {
        width: 700px;
        height: auto;
    }
    .offer-hotel {
        width: 425px;
        height: auto;
        border-radius: 10px;
        margin: 5px auto;
    }
    .for-her{
        margin: 20px auto;
    }
    .for-her .for-her-title {
        font-size: 18px;
        line-height: 2;
    }
    .for-her .for-her-text {
        font-size: 12px;
        line-height: 1.2;
    }
    .special-jar {
        border-radius: 10px;
        padding: 15px 30px 30px;
        margin: 60px auto 30px;
    }
    .special-jar .special-jar-title {
        font-size: 18px;
        line-height: 2;
        margin-bottom: 10px;
    }
    .special-jar .special-jar-contents li {
        font-size: 12px;
        line-height: 1.8;
    }
    .special-jar .btn-secondary {
        bottom: -17px;
        width: 150px;
        height: 34px;
    }
    .special-jar .jar-icon {
        width: auto;
        height: 60%;
    }
    .special-jar .dress-icon {
        width: auto;
        height: 200px;
    }
    .feedback-wrapper {
        border-radius: 15px;
        padding: 15px 25px;
        margin: 20px auto;
    }
    .feedback-wrapper .feedback-form {
        border-radius: 15px;
        padding: 15px 25px;
    }
    .feedback-wrapper .feedback-form .feedback-title {
        font-size: 16px;
        line-height: 1;
        margin-bottom: 15px;
    }
    .feedback-wrapper .feedback-form .feedback-text {
        font-size: 12px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .feedback-wrapper .feedback-form .feedback-text2 {
        font-size: 10px;
        line-height: 1;
        margin-bottom: 10px;
    }
    .rating-feedback {
        border-radius: 15px;
        padding: 15px 0;
        margin-bottom: 15px;
    }
    .rating-feedback .rating > label {
        margin: 0 1px;
    }
    .rating-feedback .rating > label:before {
        font-size: 14px;
    }
    .rating-feedback .rating-satisfied {
        font-size: 9px;
    }
    .rating-feedback .rating-satisfied span {
        margin: 0 25px;
    }
    .feedback-wrapper .feedback-form .form-group .form-control {
        height: 24px;
        border-radius: 8px;
        font-size: 10px;
    }
    .feedback-wrapper .feedback-form .form-group .form-control::placeholder {
        font-size: 10px;
    }
    .feedback-wrapper .feedback-form .form-group .input-group-text {
        font-size: 8px;
        width: 90px;
    }
    .link-language {
        font-size: 14px;
        margin-left: auto;
        margin-right: 20px;
    }
    *{
        scroll-margin-top: 100px;
    }
    .step-wrapper li span:after {
        font-size: 10px;
    }
    .reservation-confirm{
        max-width: 350px;
        padding: 30px;
        margin: 20px auto;
    }
    .reservation-confirm > img{
        width: 48px;
        margin: 0 auto 15px;
    }
    .reservation-confirm h4{
        font-size: 20px;
        line-height: 26px;
    }
    .reservation-confirm p{
        font-size: 14px;
        line-height: 20px;
    }
    .reservation-confirm .order-num{
        height: 34px;
        border-radius: 12px;
        font-size: 14px;
        padding: 0 15px;
        margin: 0 auto 12px;
    }
    .owl-carousel .owl-nav button.owl-prev i,
    .owl-carousel .owl-nav button.owl-next i{
        font-size: 14px;
        margin-top: 2px;
    }
    .socials {
        gap: 0 10px;
        margin: 0 auto;
    }
    .socials a {
        border-radius: 12px;
        width: 30px;
        height: 30px;
    }
    .socials a img {
        width: 20px;
    }
    .header-block.contact-header {
        padding: 60px 0 20px;
    }
}