/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body,
html {
    height: 100%;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #2B2A2B;
}

body.open {
    overflow: hidden;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

.space {
    padding: 70px 0;
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mulish', sans-serif;
    color: #2B2A2B;
}

h1 {
    font-size: 26px;
    line-height: 32px;
}

h2 {
    font-size: 22px;
    line-height: 28px;
}

h3 {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 1px;
    line-height: 23px
}

h4 {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 1px;
    line-height: 23px
}

h5 {
    font-size: 18px;
    line-height: 28px;
}

h6 {
    font-size: 18px;
    line-height: 28px;
}

strong {
    font-weight: 700;
}

a {
    color: #2B2A2B;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #2B2A2B;
    outline: 0;
    text-decoration: none;
}

.button:hover,
.button:active,
.button:focus {
    color: #ffffff;
}

p {
    color: #3E3D3E;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
}

.container-fluid {
    max-width: 1400px;
    padding: 0 15px;
}

.heading {
    margin: 0 0 20px 0;
    font-size: 30px;
    line-height: 37px;
    color: #2B2A2B;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
}

h2.heading {
    margin-right: 25px;
    display: inline-block;
    margin-bottom: 35px;
}

.heading-2 {
    font-weight: 800;
    font-size: 35px;
    line-height: 47px;
}

button {
    border: none;
}

.button {
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 30px;
    letter-spacing: 0.6px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.button-primary {
    background: #9D0A0E;
    color: #FFFFFF;
}

.button-primary:hover {
    background: #AE1014;
    color: #ffffff;
}

.button-secondary {
    background: #3E3E3E;
    color: #ffffff;
}

.button-secondary:hover {
    background: #2B2A2B;
    color: #ffffff;
}

.button-outline-primary {
    background: transparent;
    color: #ffffff;
    border: 1px solid white;
}

.button-outline-primary:hover {
    background: #9D0A0E;
    color: #ffffff;
    border: 1px solid #9D0A0E;
}

.button-outline-secondary {
    border: 1px solid #8A8989;
    background: #ffffff;
    color: #2B2A2B;
}

.button-outline-secondary:hover {
    background: #8A8989;
    border-color: #8A8989;
    color: #ffffff;
}

.button-outline-secondary:focus {
    color: #2B2A2B !important;
}

.btn-right-icon {
    padding: 0;
    width: 16px !important;
    vertical-align: middle;
    height: 12px;
    margin-left: 3px !important;
    margin-top: -1px;
}

.form-control {
    border-color: #B2B2B2;
    border-radius: 88px;
    padding: 22px 20px 22px 20px;
}

.form-group .checkmark {
    position: absolute;

    height: 21px;
    width: 21px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #B2B2B2;
    top: 0;
    left: 0;
    margin-left: 0;
    margin-top: 0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.form-group .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.form-check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkmark:after {
    left: 7px;
    top: 4px;
    width: 6px;
    height: 10px;
    border: solid #3A383A;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.form-group.checkbox {
    margin-top: 0;
    display: block;
    text-align: left;
}

.form-group.checkbox input {
    position: absolute;
    left: 0;
    top: 5px;
    margin-left: 8px;
    opacity: 0;
}

.form-group.checkbox label {
    color: #686768;
    font-size: 15px;
    display: inline-block;
    padding-left: 28px;
}

main {
    margin-top: 80px;
}

main.profile .container-fluid {
    padding: 0 15px 0 50px;
}


/*header*/
header {
    padding: 15px 0 15px 0;
    position: fixed;
    top: 0;
    z-index: 9000;
    width: 100%;
    background: white;
    transition: all .6s;
}

header.shadow-style {
    box-shadow: 0 7px 10px 0 rgba(162, 162, 162, 0.12), 0 0 1px 0 rgba(144, 144, 144, 0.25);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header nav .logo-and-help {
    display: flex;
    align-items: center;
}

header a.logo {
    display: block;
    position: relative;
    z-index: 9000;
}

header a.logo img {
    padding-top: 1px;
    width: 155px;
}

header nav ul.nav-menu li:before {
    content: "";
    position: absolute;
    width: 0;
    bottom: 0;
    left: 0;
    background: #9D0A0E;
    transition: all .7s;
    height: 1px;
}

header nav ul.nav-menu li:hover:before {
    width: 100%;
    height: 1px;
}

header nav ul {
    margin-top: 4px;
}

header nav ul li {
    display: inline-block;
    margin-left: 20px;
    position: relative;
    padding-bottom: 4px;
}

header nav ul li.registration {
    margin-left: 6px;
}

header nav ul li.social-item:nth-child(2) {
    margin-left: 6px;
}

header nav ul li.profile-menu {
    margin-left: 25px !important;
    display: none;
}

.mobile-menu .profile-menu {
    display: none;
}

body.profile-header header nav ul li.profile-menu {
    display: inline-block;
    position: relative;
    bottom: 1px;
}

body.profile-header header nav ul li.modal-btn,
body.profile-header header nav ul li.login-btn {
    display: none;
}

header nav ul li.profile-menu a {

}

header nav ul li.profile-menu span.profile-logo {
    color: #fff;
    position: relative;
    z-index: 2;
    margin-right: 4px;
    display: inline-block;
    background: #9D0A0E;
    width: 46px;
    height: 46px;
    border-radius: 80px;
    text-align: center;
    vertical-align: middle;
    padding: 10px 0 0 0;
    font-weight: 700;
    font-size: 16px;
}

header nav ul li.profile-menu .profile-name {
    display: inline-block;
    vertical-align: middle;
}

header nav ul li.profile-menu .profile-name h5 {
    color: #302F2F;
    font-weight: 700;
    font-size: 17px;
    text-transform: capitalize;
    line-height: 22px;
}


header nav ul li.profile-menu .profile-name span {
    color: #878787;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 15px;
}


header nav ul li.profile-menu .mega-menu {
    position: absolute;
    padding-top: 24px;
    width: 100%;
    display: none;

}

header nav ul li.profile-menu:hover .mega-menu {
    display: block;
}

header nav ul li.profile-menu .mega-menu ul {
    position: absolute;
    background: white;
    width: 100%;
    border-radius: 30px;
    padding: 8px 16px;
    box-shadow: 0 4px 14px 3px rgb(75 0 27 / 19%);
    margin: 0;
    z-index: 2;
}

header nav ul li.profile-menu .mega-menu ul:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 25px;
    height: 25px;
    transform: rotate(45deg);
    top: 0;
    left: 0;
    margin-left: 48px;
    margin-top: -10px;
    box-shadow: -7px -7px 10px rgb(75 0 27 / 6%);

}


header nav ul li.profile-menu .mega-menu ul li {
    display: block;
    padding: 8px 0;
    margin: 0;
}

header nav ul li.profile-menu .mega-menu ul li a {
    text-transform: capitalize;
    font-size: 16px;

}

header nav ul li.profile-menu .mega-menu ul li a img {
    width: 19px;
    height: 19px;
    vertical-align: baseline;
    margin: 0 8px -2px 0;
}

header nav ul li.profile-menu .mega-menu ul li a img.red-img {
    display: none;
}

header nav ul li.profile-menu .mega-menu ul li a:hover img.gray-img {
    display: none;
}

header nav ul li.profile-menu .mega-menu ul li a:hover img.red-img {
    display: inline-block;
}


header nav ul li.img-and-link a img {
    margin-right: 4px;
    vertical-align: sub;
}

header nav ul li.img-and-link a img.red-img {
    display: none;
}

header nav ul li.img-and-link a:hover img.gray-img {
    display: none;
}

header nav ul li.img-and-link a:hover img.red-img {
    display: inline-block;
}

header nav ul li a {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
}

header nav ul li a.button {
    text-transform: none;
    font-size: 14px;
    position: relative;
}

header nav ul li a:hover {
    color: #9D0A0E;
}

header nav ul li a img {
}

header nav ul li a img.social {
    opacity: 0.6;
    margin-top: -4px;
}

header nav ul li a:hover img.social {
    opacity: 1;
}

header nav ul.nav-menu-sec li:last-child {
    margin-left: 8px;
}


.login-menu {
    border-radius: 30px;
    position: absolute;
    z-index: 900;
    background: white;
    box-shadow: 0 2px 14px 1px rgb(75 0 27 / 14%);
    right: 0;
    top: 0;
    margin-top: 67px;
    display: none;
    width: 416px;
}

.login-menu.show {
    display: block;
}

.login-menu:before {
    content: "";
    position: absolute;
    top: 0;
    margin-top: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    margin-left: -18px;
    transform: rotate(45deg);
    z-index: 901;
    background: white;
    box-shadow: -7px -7px 10px rgb(75 0 27 / 6%);
}

.login-menu .login-header {
    position: relative;
    padding: 28px 25px 0 25px;
}

.login-menu .login-header h5 {
    font-weight: 700;
    font-size: 22px;
    text-align: center;
}

.login-menu .login-main {
    padding: 0 25px 0 25px;
    position: relative;
}

.login-menu .login-main form {
    margin-top: 20px;
}

.login-menu .login-main form .form-group {

}

.login-menu .login-main form .form-group label {
    padding-left: 0;
    position: relative;
    color: #2B2A2B;
    font-weight: 600;
    font-size: 15px;
}

.login-menu .login-main form .form-group input {
    padding: 22px 20px 22px 42px;
    margin-top: 4px;
    font-size: 15px;
    color: #686768;
}

.login-menu .login-main form .form-group img {
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: 25px;
    transform: translate(-50%, -50%);
}

.login-menu .login-main form .form-group.password {
    margin-bottom: 10px;
}

.login-menu .login-main form .form-group.password input {
    padding: 22px 43px 22px 42px;
}

.login-menu .login-main form .form-group label .show-hide {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    margin-right: 10px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    color: #515151;
    opacity: 0.6;
}

.login-menu .login-main form .form-group label .show-hide.fa-eye-slash {
    opacity: 1;
}

.login-menu .login-main .forgot-password-link {
    display: block;
    text-align: right;
    color: #777477;
    width: 140px;
    margin: 0 0 0 auto;
}

.login-menu .login-main .forgot-password-link:hover {
    color: #2B2A2B;
    text-decoration: underline;
}

.login-menu .login-main form a.button {
    display: block;
    text-align: center;
    margin-top: 13px;
}

.login-menu .login-main .border-effect {
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-menu .login-main .border-effect span:first-child,
.login-menu .login-main .border-effect span:nth-child(3) {
    display: block;
    background: #D2D2D2;
    width: 100%;
    height: 1px;
}

.login-menu .login-main .border-effect span:nth-child(2) {
    color: #515151;
    padding: 0 10px;
}

.login-menu .login-footer {
    display: block;
    padding: 0 25px 12px 25px;
}

.login-menu .login-footer a.button,
.register-modal .login-footer a.button {
    display: block;
    text-align: center;
    margin-bottom: 17px;
    border-color: #8A8989;
    position: relative;
}

.login-menu .login-footer a.button img,
.register-modal .login-footer a.button img{
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -13px;
    margin-left: 15px;
}


/*!*mobile-menu*!*/

/*.mobile-menu {*/
/*    display: block;*/
/*    width: 100%;*/
/*    background: white;*/
/*    z-index: 10001;*/
/*    text-align: center;*/
/*    padding: 0 0 40px 0;*/
/*    transition: all .6s;*/
/*    margin-top: -110vh;*/
/*    position: fixed;*/
/*    height: 100vh;*/
/*    top: 0;*/
/*    bottom: 0;*/
/*    overflow: scroll;*/
/*}*/

/*.mobile-menu.show {*/
/*    margin-top: 0;*/
/*    !*box-shadow: 0 6px 10px rgb(75 0 27 / 14%);*!*/
/*}*/

/*.mobile-menu li {*/
/*    padding: 10px 0;*/
/*}*/

/*.mobile-menu li a {*/
/*    text-transform: uppercase;*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*}*/

/*.mobile-menu li a.button {*/
/*    text-transform: capitalize;*/
/*    width: 180px;*/
/*}*/

/*.mobile-menu li.social-item {*/
/*    display: inline-block;*/
/*    padding: 10px 4px;*/
/*    opacity: 0.6;*/
/*}*/

/*.mobile-menu li:hover {*/
/*    color: #9D0A0E;*/
/*}*/

/*.mobile-menu li.social-item:hover,*/
/*.mobile-menu li.social-item:focus {*/
/*    opacity: 1;*/
/*}*/


/*.mobile-menu li a img {*/
/*    margin-right: 3px;*/
/*    vertical-align: sub;*/
/*    width: 19px;*/
/*    height: 18px;*/
/*}*/

/*.mobile-menu li.social-item a img {*/
/*    width: auto;*/
/*    height: auto;*/
/*}*/

/*.mobile-menu li a img.red-img {*/
/*    display: none;*/
/*}*/

/*.mobile-menu li a:hover img.gray-img {*/
/*    display: none;*/
/*}*/

/*.mobile-menu li a:hover img.red-img {*/
/*    display: inline-block;*/
/*}*/


/*.mobile-menu .logo-and-btn {*/
/*    display: flex;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.mobile-menu .logo-and-btn a {*/
/*    text-align: left;*/
/*    margin-left: 15px;*/
/*}*/

/*.mobile-menu .logo-and-btn .nav-btn {*/
/*    margin-right: 15px;*/
/*}*/

/*.mobile-menu ul li.profile-list {*/
/*    display: none;*/
/*}*/

/*body.profile-header .mobile-menu ul li.profile-list,*/
/*.mobile-menu ul li.img-and-link {*/
/*    text-align: left;*/
/*    display: table;*/
/*    margin: 0 auto;*/
/*    width: 100px;*/
/*}*/


.datepicker td.active, .datepicker td.active:hover {
    background: #9D0A0E !important;
}


/*intro*/


.intro {

}

.intro .intro-container {
    background: #000000 url("../images/intro-img-bgr2.jpg") no-repeat center;
    background-size: cover;
    border-radius: 30px;
    padding-bottom: 165px;
    position: relative;
}

.intro h1 {
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 39px;
    line-height: 48px;
    padding-top: 130px;
    margin-bottom: 45px;
}

.intro h1 span {
    font-weight: 800;
    font-size: 75px;
    letter-spacing: 2px;
    line-height: 90px;
    display: block;
}

.intro .search-box {
    background: white;
    border-radius: 30px;
    padding: 26px 25px 17px 15px;
    margin: 0 15px;
    position: relative;
    box-shadow: 0 9px 14px 1px rgb(75 0 27 / 14%);
    /*border: 1px solid #E8E8E8;*/
}

.intro .search-box.remove-radius {
    border-radius: 30px 30px 0 0 !important;
}

.intro .search-box.radius-option {
    border-radius: 30px 30px 30px 0;
}

.intro .search-box .block-form label {
    display: inline-block;
    vertical-align: text-bottom;
    padding-right: 14px;
}

.intro .search-box .form-control:focus {
    box-shadow: none;
}

.intro .search-box .block-form label select {
    width: auto;
}

.intro .search-box .block-form label img {
    width: 17px;
    vertical-align: baseline;
    margin-right: 5px;
}

.intro .search-box .block-form .form-group {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 18px;
}

.search-box input {
    color: #252E3A;
    border: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    -webkit-appearance: none;
    appearance: none;
    padding: 5px 10px;
    width: 100%;
    height: 35px;
    cursor: pointer;

}

.search-box input::placeholder {
    color: #252E3A;
}

.search-box select {
    background: transparent;
}

.hide-menu-choose-country {
    position: absolute;
    background: white;
    border: 1px solid #E8E8E8;
    top: 50%;
    margin-top: 184px;
    width: 470px;
    z-index: 4;
    left: 0;
    margin-left: 30px;
    border-radius: 0 0 20px 20px;
    padding-top: 0;
    display: none;
}

.hide-menu-choose-country.all-filters {
    margin-top: 183px;
}

.hide-menu-choose-country.show {
    display: block;
}

.hide-menu-choose-country.hide {
    display: none;
}

.hide-menu-choose-country ul li {
    border-bottom: 1px solid #E8E8E8;
    padding: 12px 10px 12px 16px;
    position: relative;
}

.hide-menu-choose-country ul li:hover {
    background: #E8E8E8;
}

.hide-menu-choose-country ul li:hover a {
    color: #9D0A0E;
}

.hide-menu-choose-country ul li:last-child {
    border-bottom: none;
    border-radius: 0 0 20px 20px;
}

.hide-menu-choose-country ul li a {
    font-weight: 700;
    font-size: 15px;
    display: block;
    position: relative;
    padding-left: 22px;
}

.hide-menu-choose-country ul li a img {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 0;
}

.intro .search-box label #hotelName {
    padding-left: 0 !important;
}

form {

}

form.inline-form {

}

form.inline-form .form-group {
    margin-bottom: 0;
    position: relative;
}


form.inline-form .form-group:after {
    content: "";
    position: absolute;
    right: 0;
    width: 2px;
    height: 100%;
    background: #E8E8E8;
    top: 0;
    margin-top: -1px;
    margin-right: -18px;
}

.guests-gr:after {
    display: none;
}

form .form-group {
}

form label {
    display: block;
    color: #9B9797;
    font-size: 14px;
    padding-left: 10px;
}

.search-box label img {
    max-width: 14px;
    margin-right: 5px;
    margin-top: -6px;
}

form .form-group select {
    color: #252E3A;
    border: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    -webkit-appearance: none;
    appearance: none;
    padding: 5px 10px;
    width: 100%;
    cursor: pointer;
}

form .form-group .input-group.date {
    max-width: 145px;
}

#guests,
#age {
    width: auto;
}

form .form-group .input-group input {
    border: none;
    color: #252E3A;
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
    padding: 5px 10px;
    opacity: 1;
}

form .form-group .input-group input::placeholder {
    color: #252E3A;
}


select::-ms-expand {
    display: none;
}

form a.button {
    vertical-align: top;
}

.search-box a.button.button-primary {
    font-size: 14px;
    position: absolute;
    right: 0;
    bottom: 0;
}

form a.button img {
    margin-left: 4px;
    width: 11px;
}

.person-info-block {
    position: absolute;
    background: #fff;
    padding: 20px 15px 25px 15px;
    left: 0;
    width: 275px;
    margin-left: -12px;
    margin-top: 1px;
    box-shadow: 0 9px 11px 2px rgb(75 0 27 / 14%);
    display: none;
    z-index: 10;
    border-radius: 0 0 10px 10px;
}

.person-info-block .person-info {
}

.person-info-block .person-info:not(:last-child) {
    margin-bottom: 10px;
}

.person-info-block .person-info .title {
    font-weight: bold;
    font-size: 15px;
}

.person-info-block .person-info .title span {
    display: block;
    font-size: 13px;
    font-weight: 300;
}


.person-info-block .person-info .count-info button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #B2B2B2;
    font-size: 17px;
    border-radius: 8px;
    padding-bottom: 2px;
}

.person-info-block .person-info .count-info button:hover {
    border-color: #9D0A0E;
}

.person-info-block .person-info .count-info span {
    margin: 0 10px;
    font-size: 15px;
    font-weight: bold;
    width: 17px;
    display: inline-block;
    text-align: center;
}

.person-info-block .person-info select {
    border: 1px solid #B2B2B2;
    margin-top: 20px;
    font-size: 14px;
    width: 100% !important;
    padding: 7px 30px 7px 12px;
    border-radius: 88px;
    -webkit-appearance: menulist;
    font-weight: 300;
}

.person-info-block .person-info select:hover {
    border-color: #9D0A0E;
    cursor: pointer;
}

.more-filters {
    opacity: 0;
    height: 0;
    position: absolute;
    left: 0;
    border-radius: 0 0 30px 30px;
    padding: 20px 0 20px 0;
    z-index: -1;
}

.more-filters.show {
    opacity: 1;
    height: auto;
    padding: 20px 25px 15px 15px;
    background: white;
    width: 100%;
    box-shadow: 0 14px 14px 0 rgb(75 0 27 / 14%);
    z-index: 1;
    border-top: 1px solid #E8E8E8;
    margin-top: 16px;
}

.more-filters .budget-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}


.more-filters .budget-count span {
    color: #252E3A;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
}

.more-filters .irs-min,
.more-filters .irs-max,
.more-filters .irs-from,
.more-filters .irs-to,
.more-filters .irs-with-grid .irs-grid,
.more-filters .irs-single {
    display: none;
}

.more-filters .irs--flat .irs-line {
    height: 4px;
    background: #E8E4E4;
    top: 10px;
}


.more-filters .irs--flat .irs-bar {
    height: 4px;
    background: #9D0A0E;
    top: 10px;
}


.more-filters .irs--flat .irs-handle {
    top: 4px;
    background-color: white;
    width: 16px;
    height: 16px;
    border-radius: 30px;
    border: 3px solid #9D0A0E;
    cursor: pointer;
}

.more-filters .irs--flat .irs-handle i {
    display: none;
}

.more-filters .irs--flat.irs-with-grid {
    height: 29px;
    padding-left: 10px;
}


.more-filters .guests-gr .filters {
    float: right;
    background: transparent;
    border: none;
    color: #686768;
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
}

.more-filters .filters.close-f {
    background: transparent;
    border: none;
    color: #686768;
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
    height: 100%;
    position: relative;
    z-index: 3;
    text-align: right;
}

.more-filters .filters.close-f img {
    margin-right: 5px;
    margin-top: -4px;
}

.more-filters .age-and-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.age-and-btn span.count-sett {
    color: #252E3A;
    display: block;
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
    padding: 5px 0;
    cursor: pointer;
}

.search-button {
    text-align: right;
    margin-right: 70px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.search-button.hide {
    opacity: 0;
    z-index: -1;
}

.search-button button {
    color: white;
    font-size: 17px;
    background: transparent;
    border: none;
}

.search-button button img {
    margin-bottom: 5px;
    margin-right: 5px;
}

.datepicker th {
    font-weight: 700;
}

.datepicker td, .datepicker th {
    padding: 0 6px;
    font-size: 15px;
}

.datepicker.dropdown-menu {
    margin-left: -39px;
}

.datepicker:before {
    left: 70px !important;
}

.datepicker:after {
    left: 71px !important;
}


/*find-offer*/

.find-offer {

}

.find-offer h2 {
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 30px;
    line-height: 40px;
}

.find-offer .offer-block {
    display: block;

    position: relative;
    margin-top: -165px;
    overflow: hidden;
    transition: all .7s;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.find-offer .offer-block.lastCH {
    margin-top: 15px;
}

.find-offer .offer-block.lastCH .block-title {
    width: 100%;
    padding: 0;
}

.find-offer .offer {
    position: relative;
    overflow: hidden;
    transition: all .7s;
    border-radius: 35px;
    border: 5px solid white;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -khtml-border-radius: 35px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.find-offer .offer .offer-image {
    border-radius: 30px;
    width: 100%;
    transition: all .7s;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -khtml-border-radius: 30px;
}

.find-offer .offer:hover .offer-image,
.find-offer .find:hover .offer-image {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.find-offer .offer .percentage {
    position: absolute;
    top: 0;
    transform: translate(-50%, 31%);
    left: 50%;
}

.find-offer .offer .percentage img {

}

.find-offer .offer .percentage span {
    position: absolute;
    /* top: 0; */
    transform: translate(-50%, 95%);
    left: 50%;
    color: white;
}

.find-offer .offer .percentage span.percent {
    bottom: 0;
    transform: translate(-50%, -92%);
    font-weight: 800;
    font-size: 20px;

}


.find-offer .offer .block-title {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0 20px;
}

.find-offer .offer .block-title h3 {
    color: white;
    text-align: center;
    font-size: 29px;
    line-height: 38px;
    font-weight: 700;
    padding: 0 21px;
}

.find-offer .offer-block .find img {
    max-width: 52px;
}

a.find,
button.find,
button.call {
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: 0;
    left: 50%;
    background: transparent;
    border: none;
}


.find-offer .offer button.call {
    display: block;
    position: absolute;
    transform: translate(-50%, -62%);
    bottom: 0;
    left: 50%;
}

.find-offer .offer button.call {
    width: 34px;
}

.find-offer a.find .red-img,
.find-offer button.call .red-img,
.find .red-img {
    display: none;
}

.offer a.find:hover .red-img,
.offer button.call:hover .red-img,
.offer-block .find:hover .red-img {
    display: inline-block;
}

.offer a.find:hover .white-img,
.offer button.call:hover .white-img,
.offer-block .find:hover .white-img {
    display: none;
}


/*offer-slider*/

.offer-slider {
    background: #F8F8F8;
    padding-right: 0;
}

.offer-slider h3 {
    margin-right: 0;
}

.offer-slider h3 a:hover {
    color: #9D0A0E;
}

.offer-slider .offer-article {
    position: relative;
}

.content-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 30px;
    z-index: 3;
}

.offer-slider .offer-article:hover .content-overlay {
    opacity: 1;
}


.offer-slider .offer-article .stars {
    display: inline-block;
}

.stars ul {
    display: inline-block;
    column-count: auto !important;
}

.stars ul li {
    display: inline-block;
    padding: 0 !important;
}

.stars ul li:before {
    display: none;
}

.stars ul li img {
    padding: 0 !important;
}

.offer-slider .offer-article .stars img {
    width: 16px;
    display: inline-block;
}

.offer-slider .offer-article .image-block-offer {
    background: url("../images/shape.png") no-repeat center;
    background-size: cover;
    position: relative;
    border-radius: 30px;
}

/*.offer-slider .offer-article .image-block-offer:after {*/
/*    content: "";*/
/*    background-image: linear-gradient(rgb(0 0 0/50%),rgb(0 0 0/50%));*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    z-index: -2;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    border-radius: 30px;*/
/*    transition: all .3s;*/
/*}*/

/*.offer-slider .offer-article:hover .image-block-offer:after {*/
/*    z-index: 1;*/
/*}*/

.offer-slider .offer-article .image-block-offer img.place-image {
    border-radius: 30px;
    position: relative;
    z-index: -1;
}

.offer-slider .offer-article .image-block-offer .place-and-price {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 15px;
    width: 100%;
    margin-bottom: 10px;
    color: white;
}

.offer-slider .offer-article .image-block-offer .place-and-price .place {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.offer-slider .offer-article .image-block-offer .place-and-price .place img {
    width: 14px;
    display: inline-block;
    margin-top: -9px;
    margin-right: 3px;
}

.offer-slider .offer-article .image-block-offer .place-and-price .price {
    font-weight: 800;
    font-size: 24px;
}

.offer-slider .offer-article .image-block-offer .place-and-price .price span {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
}

.offer-slider .offer-article .image-block-offer span.promo {
    position: absolute;
    top: 0;
    margin-top: 20px;
    margin-left: 15px;
    background: #9D0A0E;
    color: white;
    padding: 2px 19px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 21px;
}

.offer-slider .offer-article .place-info {
    padding: 15px;
}

.offer-slider .offer-article .place-info h3 {

    margin-bottom: 7px;
}

.stars {

}

.stars img {
    width: 17px;
    display: inline-block;
    vertical-align: baseline;
    margin-bottom: -1px;
}

.stars img:last-child {
    padding-right: 3px;
}

.stars .star-info {
    font-weight: 700;
    font-size: 16px;
    padding: 0 4px;
}

.stars .comments {
    color: #686768;
    font-size: 14px;
}

.offer-slider .offer-article .time {
    margin-top: 7px;
}

.offer-slider .offer-article .time img {
    width: 21px;
    display: inline-block;
    margin-right: 4px;
    margin-top: -4px;
}

.offer-slider .offer-article .time span {
    color: #9D0A0E;
    font-weight: 700;
    font-size: 16px;
}

.see-all {
    vertical-align: baseline;
    color: #777477;
    font-size: 16px;
    transition: all .9s;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.see-all img {
    margin-left: 4px;
    transition: all .9s;
    height: 11px;
}

.see-all img.red-arrow {
    display: none;
}

.see-all:hover img.red-arrow {
    display: inline-block;
    margin-left: 7px;
}

.see-all.back {
    top: auto;
    bottom: auto;
}

.see-all.back img {
    margin: -3px 4px 0 0;
}

.see-all.back:hover img.red-arrow {
    margin-right: 4px;
    margin-left: 0;
}

.see-all:hover img.gray-arrow {
    display: none;
}

.see-all:hover {
    color: #9D0A0E;
}

.see-all:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #9D0A0E;
    transition: all .2s;
}

.see-all:hover:after {
    width: 100%;
    height: 1px;
}

.see-more {
    position: absolute;
    transform: translate(-50%, 0);
    bottom: 0;
    left: 50%;
    margin: 0 auto;
    width: 205px;
    font-size: 16px;
    transition: all .3s;
    z-index: -1;
}

.see-more img {
    width: 14px !important;
    display: inline-block !important;
    margin-left: 3px;
}

.offer-article:hover .see-more {
    transform: translate(-50%, 50%);
    bottom: 50%;
    z-index: 5;
}

.owl-carousel .owl-stage {
    padding-left: 0 !important;
}

.owl-carousel .owl-item {
    opacity: 0.3;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
    right: auto;
    position: absolute;
    top: 25%;
    margin-left: -30px;
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 0;
    top: 25%;
    margin-right: 70px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 100%;
    box-shadow: 0 5px 13px 0 rgb(46 41 255 / 20%);
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: #9D0A0E;
}

.owl-carousel .owl-nav button.owl-prev:after {
    content: "";
    background: url("../images/left-arrow-red.svg") no-repeat center;
    position: absolute;
    background-size: 100%;
    width: 18px;
    height: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

/*.owl-carousel .owl-nav button:hover {*/
/*    background: #9D0A0E;*/
/*}*/

.owl-carousel .owl-nav button.owl-prev:hover:after {
    background: url("../images/left-arrow-white.svg") no-repeat center;
}

.owl-carousel .owl-nav button.owl-next:after {
    content: "";
    background: url("../images/right-arrow-red.svg") no-repeat center;
    position: absolute;
    background-size: 100%;
    width: 18px;
    height: 100%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

.owl-carousel .owl-nav button.owl-next:hover:after {
    background: url("../images/right-arrow-white.svg") no-repeat center;

}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    font-size: 0;
}

.owl-carousel .owl-dots {
    display: none;
}


/*type-of-vacation*/

.type-of-vacation {

}

.type-of-vacation .type {
    display: block;
    margin: 25px 0 20px 0;
}


.type-of-vacation .type .img-block {
    box-shadow: 0 9px 14px 1px rgb(75 0 27 / 14%);
    background: white;
    border-radius: 26px;
    padding: 30px;
    text-align: center;
    width: 112px;
    height: 115px;
    margin: 0 auto;
    transition: all .6s;
}

.type-of-vacation .type .img-block img.white-img {
    display: none;
}

.type-of-vacation .type .img-block img {
    max-height: 55px;
}

.type-of-vacation .type span {
    color: #2B2A2B;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-top: 17px;
    font-size: 18px;
    line-height: 25px;
}

.type-of-vacation .type:hover .img-block {
    background: #9D0A0E;
}

.type-of-vacation .type:hover .img-block img.white-img {
    display: inline-block;
}

.type-of-vacation .type:hover .img-block img.red-img {
    display: none;
}


/*top-destination*/


.top-destination {
    background: #F8F8F8;
}

.top-destination .offer-image-block {
    border-radius: 36px;
    border: 4px solid white;
    position: relative;
    display: block;
    margin-bottom: 18px;
    transition: all .6s;
}

.top-destination .offer-image-block h4 {
    color: white;
    font-weight: 700;
    font-size: 25px;
    text-align: center;
}

.top-destination .offer-image-block img {
    width: 100%;
    border-radius: 30px;
}

.top-destination button.find {
    background: transparent;
    border: none;
    position: absolute;
    transform: initial;
    transition: all .4s;
    max-width: 0;
    height: 0;
    left: 50%;
    margin-left: -25px;
}

.top-destination .offer-image-block:hover button.find {
    max-width: 100%;
    height: 77px;
    bottom: 50%;
    margin-bottom: -51px;
    z-index: 3;
}

.top-destination button.find img.red-img {
    display: none;
}

.top-destination button.find:hover img.white-img {
    display: none;
}

.top-destination button.find:hover img.red-img {
    display: inline-block;
}

.top-destination button.find img {
    width: 50px;
}

.top-destination .offer-image-block .place-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100px;
    z-index: 4;
    transition: all .4s;
}

.top-destination .offer-image-block:hover .place-info {
    transform: translate(-50%, -190%);
}

.top-destination .offer-image-block:after {
    content: "";
    background-image: linear-gradient(rgb(0 0 0/17%), rgb(0 0 0/17%));
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    bottom: 0;
    left: 0;
    border-radius: 30px;
    transition: all .6s;
}

.top-destination .offer-image-block:hover:after {
    z-index: 2;
}

.top-destination .offer-image-block:hover img {
    opacity: 1;
    -webkit-animation: flash 1.2s;
    animation: flash 1.2s;
}

@-webkit-keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: .4;
    }
    100% {
        opacity: 1;
    }
}


/*recommended ofers*/

.recommended,
.abroad-offers {
    background: white;
}

.recommended .promo {
    font-weight: 700;
}

.recommended .promo span {
    text-transform: capitalize;
    font-weight: 400;
    margin-left: 4px;
}

.place-info ul {
    margin-top: 4px;
    column-count: 2;
}

.place-info ul li {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    padding-left: 17px;
    position: relative;
    line-height: 19px;
    margin-bottom: 5px;
}

.place-info ul li:before {
    content: "";
    background: url("../images/check.svg") center no-repeat;
    background-size: 100%;
    position: absolute;
    width: 14px;
    height: 14px;
    left: 0;
    top: 0;
    margin-top: 2px;
}


/*newsletter*/

.newsletter {
    padding-left: 0;
    padding-right: 0;
}

.newsletter h6 {
    margin: 20px auto 30px auto;
    max-width: 465px;
}

.newsletter .newsletter-block {
    text-align: center;
}

.newsletter .newsletter-block img.newsletter-logo {
    width: 90px;
}

.newsletter form {

}

.newsletter form .form-group {
    position: relative;
}

.newsletter form .form-group input {
    border: 1px solid #B2B2B2;
    border-radius: 88px;
    padding: 22px 15px 22px 45px;
    margin-bottom: 20px;
    font-size: 15px;
}

.newsletter form .form-group input::placeholder {
    font-size: 14px;
}

.newsletter form .form-group:after {
    display: none;
}

.newsletter form .form-group .email-logo {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 18px;
    margin-left: 20px;
}

.newsletter form a.button {
    float: none;
    margin-bottom: 20px;
    display: block;
    margin-top: -2px;
}


/*footer*/

footer {
    background: #F8F8F8;
    padding: 100px 40px 20px 40px;
}

footer h4 {
    letter-spacing: 0;
    font-size: 18px;
    margin-bottom: 25px;
}

footer .travel-info {
    margin-bottom: 25px;
}

footer span {
    color: #252E3A;
    font-size: 16px;
    display: block;
    font-weight: normal;
    line-height: 25px;
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a {
    font-size: 16px;
    color: #686768;

}

footer ul li a:hover {
    color: #9D0A0E;
}

footer ul li a img {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 4px;
}

footer ul li.phone a {
    color: #2B2A2B;
    font-weight: bold;
}

footer ul li.phone a img {
    margin-top: 2px;
}

footer ul li.email a {
    color: #2B2A2B;
    text-decoration: underline;
}

footer ul li.email a,
footer ul li.phone a {
    position: relative;
    padding-left: 25px;
}

footer ul li.email a:hover,
footer ul li.phone a:hover {
    color: #9D0A0E;
}

footer ul li a img.red-img {
    display: none;
}

footer ul li a:hover img.white-img {
    display: none;
}

footer ul li a:hover img.red-img {
    display: inline-block;
}

footer .copyright {
    margin: 80px 0 0 0;
    color: #686768;
    font-size: 16px;
}


/*intro-searching page*/


.intro-searching {
    background: #F8F8F8;
    padding: 60px 0;
}

.intro-searching .search-box {
    box-shadow: 0 5px 14px 1px rgb(75 0 27 / 14%);
}


.intro-searching .type-of-vacation {
    margin: 80px 40px 20px 40px;
}


.intro-searching .more-filters.show {
    box-shadow: 0 10px 14px 0 rgb(75 0 27 / 14%);
    margin-top: 0;
    border-top: none;
}

.intro-searching .search-button button {
    color: #686768;
}

.intro-searching label[for=hotelName] {
    padding-bottom: 0;
    padding-left: 0;
    margin: 0 10px 0 10px;
    display: inline-block;
}

.intro-searching #hotelName {
    width: auto;
    display: inline-block;
    margin-left: 15px;
}

.search-block {
    position: relative;
}

.intro-searching .hide-menu-choose-country {
    margin-top: -31px;
    margin-left: 14.5px;
}

.intro-searching .form-group.hotel-name:after {
    display: none;
}


.intro-searching .form-group.hotel-name {
    border-bottom: 1px solid #E8E8E8;
    padding-bottom: 13px;
    margin-bottom: 15px;
}

.owl-theme .owl-nav {
    margin-top: 0;
}


/*travel club*/

.travel-club {

}

.travel-club .travelClub-block {
    background: transparent;
    height: 100%;
    width: 100%;
    display: flex;
    padding: 30px 20px 26px 30px;
    overflow: hidden;
    transition: all .6s;
    position: absolute;
    top: 0;
    right: 0;
}

.travel-club .travelClub-info {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.travel-club .travelClub-info .image-cont {
    background: url("../images/travelClub-bgr.jpg") center no-repeat;
    border-radius: 30px;
    background-size: cover;
    min-height: 480px;
}

.travel-club .travelClub-info:hover .image-cont {
    transform: scale(1.1);
}

.travel-club .travelClub-block img.bookImg {
    transition: all .6s;
}

.travel-club .travelClub-block:hover img.bookImg {
    /*transform: scale(1.1);*/
}

.travel-club .travelClub-block.sec {
    /*background: url("../images/travelClub-bgr-shape.png") center no-repeat, url("../images/travelClub-bgr2.png") center no-repeat;*/
    /*background-size: cover;*/
    background: transparent;
}

.travel-club .image-cont {
    background: url("../images/travelClub-bgr2.jpg") center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    transition: all .6s;
}

.travel-club .vacation-info:hover .image-cont {
    transform: scale(1.1);
}

.travel-club .travelClub-block.sec:hover {
    /*!*background-size: 120%;*!*/
    /*transform: grow(1.072, 1.072);*/
    /*-webkit-transform: scale(1.072, 1.072);*/
    /*-moz-transform: scale(1.072, 1.072);*/
    /*-ms-transform: scale(1.072, 1.072);*/
}

.travel-club .vacation-info {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.travel-club h3 {
    line-height: 44px;
    margin-bottom: 25px;
    padding-top: 55px;
}

.travel-club .travelClub-block a.button img {
    width: 13px;
    margin-left: 4px;
}

.travel-club h3,
.travel-club p {
    color: white;
    margin-right: 0;
    padding-right: 15px;
}

.travel-club p {
    margin-bottom: 38px;
    font-size: 23px;
    line-height: 30px;
    letter-spacing: 0.3px;
}


/*vacation-places*/

.vacation-places {
    background: #F8F8F8;
}

.vacation-places h1 {
    display: block;
    font-weight: 800;
    margin: 25px 15px 31px 0;

}

.place-info-block {
    background: white;
    border-radius: 30px;
    padding: 25px 0 25px 25px;
    position: relative;
    margin-bottom: 32px;
}

.place-info-block .place-info a.place-name {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 10px;
    color: #2B2A2B;
    display: block;
    line-height: 38px;
}

.place-info-block .place-info a.place-name:hover {
    color: #9D0A0E;
}

.place-info-block .place-image {
    /*background: url("../images/place-image-shape.") center no-repeat;*/
    position: relative;
    border-radius: 30px;
}

.place-info-block .place-image img {
    width: 100%;
    border-radius: 30px;
    position: relative;
}

.place-info-block .place-image a {
    position: relative;
    display: block;
}

.place-info-block .place-image a:before {
    content: "";
    position: absolute;
    background-image: linear-gradient(rgb(0 0 0/0), rgb(0 0 0/50%));
    height: 40%;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 30px;
    z-index: 3;
}

.place-info-block .place-image img:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
}

.place-info-block .place-info {
}

.place-info-block .stars {
    margin-bottom: 3px;
}

.place-info-block .place {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;

}

.place-info-block .place img {
    margin-right: 1px;
    margin-top: -5px;
}

.place-info-block .place-info ul {

}

.place-info-block .place-info ul.list-extra {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    width: 100%;
}

.place-info-block .place-info ul.list-extra li {

}

.place-info-block .place-info ul li {
    margin-bottom: 8px;
}

.place-info-block .place-info p {
    color: #686768;
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
    margin-bottom: 0;
}

.vacation-places .filter-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vacation-places .filter-buttons {
    display: inline-block;
    text-align: right;
}

.vacation-places .filter-buttons a {
    display: inline-block;
    margin: 4px 0 5px 8px;
    width: 233px;
    position: relative;
    text-align: center;
    padding: 12px 0 12px 0;
}


.vacation-places .filter-buttons a:first-child {
    margin-left: 0;
}

.vacation-places .filter-buttons a img {
    margin-top: -6px;
    margin-right: 3px;
}

.vacation-places .filter-buttons a img.white-img {
    display: none;
}

.vacation-places .filter-buttons a:hover img.gray-img {
    display: none;
}

.vacation-places .filter-buttons a:hover img.white-img {
    display: inline-block;
}

ul.comments {
    float: right;
}

ul.comments li {
    margin-bottom: 23px;
    color: #686768;
    font-size: 16px;
}

ul.comments li img {
    width: 23px;
    margin-top: -7px;
    margin-right: 2px;
}

ul.comments li:first-child img {
    margin-top: -2px;
}

ul.comments li span {
    font-weight: 700;
    color: #2B2A2B;
    margin-left: 3px;
}

.place-info-block .reservation-and-comments {
    text-align: center;
}

.place-info-block .reservation-and-comments span.total-price {
    font-weight: 700;
    display: block;
    font-size: 28px;
    line-height: 32px;
}

.place-info-block .reservation-and-comments span.a-day {
    color: #515151;
    font-size: 16px;
    display: block;
    margin-bottom: 30px;
}

.place-info-block .reservation-and-comments .reviews {
    color: #515151;
    font-size: 16px;
}

.place-info-block .reservation-and-comments .reviews span {
    font-weight: 700;
    color: #2B2A2B;
    padding-left: 3px;
}

.place-info-block .reservation-and-comments .reviews ul {
    margin-bottom: 20px;
}

.place-info-block .reservation-and-comments .reviews ul li {
    display: inline-block;
    padding: 0 1px;
}

.place-info-block .reservation-and-comments .reviews ul li img {
    width: 24px;
}

.place-info-block .reservation-and-comments a.button {
    display: block;
    width: 80%;
    margin: 0 auto 13px auto;
}

.place-info-block:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background: #E8E8E8;
    /* left: 0; */
    top: 0;
    right: 23%;
}


/*breadcrumbs*/


ul.breadcrumbs {
    text-align: center;
    padding-top: 30px;
}

ul.breadcrumbs li {
    display: inline-block;
    padding-right: 4px;
}


ul.breadcrumbs li.active a {
    color: white;
    background: #2B2A2B;

}

ul.breadcrumbs li a {
    color: #585757;
    display: block;
    width: 40px;
    height: 40px;
    font-size: 17px;
    padding: 6px 0;
    border-radius: 8px;
    font-weight: 700;

}

ul.breadcrumbs li a:hover {
    background: #2B2A2B;
    color: #ffffff;
}

ul.breadcrumbs li a img {
    margin-top: -2px;
}

ul.breadcrumbs li a img.white-img {
    display: none;
}

ul.breadcrumbs li a:hover img.gray-img {
    display: none;
}

ul.breadcrumbs li a:hover img.white-img {
    display: inline-block;
}


/*place-details page*/

.hotel-detail {
    padding: 40px 0 80px 0;
    margin-bottom: 2px;
    background: #F8F8F8;
}

.hotel-detail h1 {
    margin: 30px 0 11px 0;
}

.hotel-detail .hotel-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hotel-detail .hotel-info .stars {
    margin-right: 10px;
    margin-bottom: 30px;
}

.hotel-detail .hotel-info .stars ul li img {
    width: 21px
}

.hotel-detail .hotel-info .stars span {

}

.hotel-detail .hotel-info .stars span.location-hotel {
    font-weight: 600;
    font-size: 17px;
    padding: 0 10px 0 15px;
}

.hotel-detail .hotel-info .stars span.location-hotel img {
    width: 15px;
    padding-right: 1px;
}

.hotel-detail .hotel-info .stars a {
    font-size: 15px;
    vertical-align: middle;
    margin-left: 13px;
    position: relative;
    bottom: 1px;
    top: auto;
    padding: 0;
}

.hotel-detail .hotel-info .buttons {
    margin-bottom: 30px;
    margin-top: -1px;
}

.hotel-detail .hotel-info .buttons a.button-secondary {
    margin: 0 10px 0 0;
}

.gallery {
    position: relative;
}

.gallery img {
    border-radius: 30px;
    transition: all .6s;
}

.gallery a.see-more {

}

.gallery a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 27px;
}

.gallery a:hover img {
    transform: scale(1.2);
}

.gallery a.see-more img {
    border-radius: 0;
}

.gallery .more-images {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    width: 182px;
    margin-bottom: 0;
}

.gallery .more-images img {
    border: 0;
    border-radius: 0;
    width: 16px;
    margin: 0 2px 0 0;
    transform: none !important;

}

.relative-block {
    position: relative;
}

.gallery a:hover .more-images img {
    transform: none;
}

.gallery .more-images img.red-img {
    display: none;
}

.gallery .button-outline-primary:hover {
    background: white;
    border: white;
    color: #9D0A0E;
}

.gallery .button-outline-primary:hover img.red-img {
    display: inline-block;
}

.gallery .button-outline-primary:hover img.white-img {
    display: none;
}

.gallery .more-gallery a {
    margin: 0 !important;
}

/*.comments .gallery a:hover img {*/
/*    border: 2px solid red;*/
/*}*/


/*extras*/

.extras {
    text-align: center;
    padding: 20px 0 15px 0;
}

.extras .extra {
    color: #535253;
    font-weight: 500;
    line-height: 19px;
}

.extras .extra.more-extra a {
    color: #9D0A0E;
    font-weight: 500;
    display: block;
}

.extras .extra img {
    display: block;
    margin: 0 auto 8px auto;
    height: 38px;
}


/*rreservation-info-search*/

.reservation-info-search {
    border: 1px solid #C8C8C8;
    border-radius: 24px;
    padding: 18px 20px;
    margin: 15px 0 35px 0;
}

.reservation-info-search form {

}

.reservation-info-search .form-group {

}

.reservation-info-search .form-info {
    color: #515151;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    height: 100%;
    padding: 5px 8px;
}

.reservation-info-search .form-info:after {
    content: "";
    position: absolute;
    right: 0;
    width: 2px;
    height: 100%;
    background: #E8E8E8;
    top: 0;
    margin-top: -1px;
    margin-right: -15px;
}

.reservation-info-search .form-info span:nth-child(1) {
    color: #252E3A;
    font-size: 16px;
    line-height: 26px;
    font-weight: 800;
    display: block;
    margin-top: 5px;
}

.reservation-info-search .form-info span:nth-child(2) {
    color: #757575;
    display: block;
    font-size: 14px;
    line-height: 15px;
}


.reservation-info-search .form-info.lastCH:after {
    display: none;
}


.reservation-info-search .form-group label {
    color: #515151;
    font-weight: 600;
    font-size: 15px;
}

.reservation-info-search .form-group input {
    width: 100%;
    background: transparent;
    padding-bottom: 0;
}

.reservation-info-search .form-group select {
    background: transparent;
    color: #2B2A2B;
    opacity: 1;
}


.reservation-info-search .form-group span {
    padding-left: 10px;
    color: #757575;
}

.reservation-info-search .change {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.reservation-info-search .change a {

}

.reservation-info-search .form-group:after {
    margin-right: -20px;
}


/*free-rooms*/

.free-rooms {

}

.free-rooms .room-info-reservation {
    background: white;
    border-radius: 24px;
    padding: 25px 28px 20px 30px;
    margin-bottom: 30px;
}

.free-rooms .room-info-reservation h3 {
    font-weight: 700;
    font-size: 21px;
    line-height: 30px;
}

.free-rooms .room-info-reservation .beds {
    color: #515151;
    font-size: 15px;
}

.free-rooms .room-info-reservation .beds img {
    max-width: 22px;
    margin-top: -2px;
}

.free-rooms .room-info-reservation .beds img:first-child {
    margin-left: 4px;
}

.free-rooms .room-info-reservation .beds span {
    padding: 0 4px;
}

.free-rooms .room-info-reservation .beds span:first-child {
    padding: 0 4px 0 0;
}

.free-rooms .room-info-reservation ul {
    max-width: 231px;
}

.free-rooms .room-info-reservation ul li {
    position: relative;
    color: #2B2A2B;
    font-size: 15px;
    padding-left: 23px;
}

.free-rooms .room-info-reservation ul li:first-child {
    margin-bottom: 10px;
}

.free-rooms .room-info-reservation ul li img {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 1px;
}

.free-rooms .room-info-reservation ul li:nth-child(2) img {
    margin-top: 5px;
}

.free-rooms .room-info-reservation .prices {
    text-align: right;
    color: #716E6E;
    width: 203px;
}

.free-rooms .room-info-reservation .prices span {
    display: block;
}

.free-rooms .room-info-reservation .prices span.total-price {
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    color: #2B2A2B;
}

.free-rooms .room-info-reservation .prices span.a-day {
    color: #515151;
    font-size: 16px;
    margin-bottom: 7px;
}

.free-rooms .room-info-reservation .prices img {
    margin-right: 4px;
    margin-top: -1px;
}

.free-rooms .room-info-reservation a.button {
    display: block;
    width: 256px;
    text-align: center;
}


/*more-extras*/

.more-extras {
    border-top: 1px solid #C8C8C8;
    border-bottom: 1px solid #C8C8C8;
    padding: 45px 0;
    margin: 30px 0;
}

.more-extras h2 {
    margin-bottom: 20px;

}

.more-extras h3 {
    color: #2B2A2B;
    font-weight: 700;
    margin-bottom: 10px;
}

.more-extras ul {
    margin-bottom: 10px;
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
}

.more-extras ul li {
    margin-bottom: 10px;
    font-size: 15px;
    padding-left: 20px;
}


/*description*/

.description {
    border-bottom: 1px solid #C8C8C8;
    padding: 15px 0 45px 0;
}


.description h2 {
    margin-bottom: 20px;
}

.description p {
    color: #2B2A2B;
    font-size: 16px;
    line-height: 24px;
}


/*room-info-table*/

.room-info-table {
    padding: 45px 0;
    border-bottom: 1px solid #C8C8C8;
}

.room-info-table .button {
    width: 165px;
    display: inline-block;
    text-align: center;
    padding: 12px 0;
    margin-right: 20px;
    border: none;
}

.room-info-table .button-secondary img {
    margin-left: 3px;
    width: 11px;
    margin-top: -3px;
}

.room-info-table .button-primary img {
    /*margin-left: 3px;*/
    /*width: 13px;*/
    /*margin-top: -1px;*/
}

.room-info-table table {
    margin-top: 30px;
    border: 1px solid #C8C8C8;
    border-radius: 24px 24px 0 0;
    background: white;
    border-collapse: separate !important;
    min-width: 680px;
}

.room-info-table table tr {
    border-bottom: 1px solid #C8C8C8;
}

.room-info-table table tr:nth-child(even) {
    background: #F8F8F8;
}


.room-info-table table tr th {
    border-right: 1px solid #C8C8C8;
    vertical-align: middle;
    color: #2B2A2B;
    font-weight: 700;
    font-size: 15px;
    padding: 5px 0;
}

.room-info-table table tr th:last-child,
.room-info-table table tr td:last-child {
    border-right: none;
}

.room-info-table table tr th span {
    display: block;
    text-align: center;
    color: #AE1014;
    font-weight: 700;
    font-size: 16px;
}

.room-info-table table tr th div {
    display: flex;
    justify-content: space-around;
    color: #000000;
    font-weight: 700;
    font-size: 15px;
}

.room-info-table table tr th div span {
    color: #000000;
    font-weight: 700;
    font-size: 15px;
}

.room-info-table table tr td {
    border-right: 1px solid #C8C8C8;
    color: #515151;
    font-size: 15px;
    padding: 10px 0;
    border-top: 1px solid #C8C8C8;
}

.room-info-table table tr td span {
    display: block;
    text-align: center;
    color: #000000;
    font-weight: 600;
    font-size: 15px;
}

.room-info-table .info-table {
    margin-top: 30px;
}

.room-info-table .info-table p {
    color: #2B2A2B;
    font-weight: 700;
    margin-bottom: 20px;

}

.room-info-table .info-table p:nth-child(2) {
    margin-bottom: 4px;
}

.room-info-table .info-table p:nth-child(3) {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.room-info-table .info-table p:last-child {
    margin-bottom: 0;
}


/*guests-comments*/

.guests-comments {
    padding: 45px 0 60px 0;
    border-bottom: 1px solid #C8C8C8;
}

.guests-comments h2 {
    margin-bottom: 20px;
}

.guests-comments .stars {

}

.guests-comments .stars ul li img {
    width: 23px;
}

.guests-comments .stars span {
    font-size: 17px;
}

.guests-comments .stars span.star-info {
    margin-right: 30px;
}

.guests-comments .stars span.comments {
    margin-right: 30px;
}

.guests-comments .stars span.comment-count {
    font-weight: 700;
    color: #2B2A2B;
    margin-right: 2px;
}


/*location-map*/


.location-map {
    padding: 45px 0;
}

.location-map h3 {
    margin-bottom: 15px;
}

.gmap_canvas {
    border-radius: 30px;
}


.location-map h4 {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 31px;
    margin: 20px 0 23px 0;
}

.location-map .location {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.location-map .location img {
    position: absolute;
    left: 0;
    margin-top: 4px;
    width: 14px;
}

.location-map a {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    display: block;
    padding-left: 20px;
    position: relative;
}

.location-map a:hover {
    color: #9D0A0E;
}

.location-map a img {
    margin-bottom: 15px;
    position: absolute;
    left: 0;
    margin-top: 5px;
    width: 15px;
}

.location-map a img.red-img {
    display: none;
}

.location-map a:hover img.gray-img {
    display: none;
}

.location-map a:hover img.red-img {
    display: inline-block;
}

.location-map a.email-info {

}

.location-map a.email-info img {
    margin-top: 9px;
}


.hotel-detail.fix-info {
    background: white;
    padding: 12px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 -7px 15px -8px rgb(0 0 64 / 12%);
    display: none;
    margin: 0;
}

.hotel-detail.fix-info.fixed {
    display: block;
}

.hotel-detail.fix-info .place-title {
    font-weight: 800;
    font-size: 28px;
    line-height: 38px;
    margin: 0 0 4px 0;
    display: block;
}

.hotel-detail.fix-info .hotel-info .stars ul li img {
    width: 19px;
}

.hotel-detail.fix-info .hotel-info .stars span.location-hotel {
    font-size: 16px;
    margin-right: 10px;
}

.hotel-detail.fix-info .hotel-info .stars a {
    margin-left: 0;
}


.hotel-detail.fix-info .buttons {
    text-align: right;
}

.hotel-detail.fix-info .buttons #commentLoc {
    margin-right: 10px;
}

.hotel-detail.fix-info .hotel-info .stars {
    margin-bottom: 0;
}


/*reservation page*/

.reservation {
    background: #F8F8F8;
    margin-bottom: 2px;
}

.reservation h4 {
    font-size: 25px;
    letter-spacing: 0;
    line-height: 32px;
    margin-bottom: 20px;
    padding-left: 25px;
}

.reservation .reservation-info {
    border: 1px solid #C8C8C8;
    border-radius: 24px;
    padding-top: 35px;
}

.reservation .info-row {
    border-bottom: 1px solid #C8C8C8;
    padding: 25px 30px 25px 30px;
}

.reservation .info-row:last-child {
    border: none;
}

.reservation form {

}

.reservation-info form .form-group {
    margin: 0;
}

.reservation-info form label {
    padding-left: 0;
    color: #515151;
    font-weight: 600;
    font-size: 16px;
}

.reservation-info form input {
    padding-left: 0;
    background: transparent;
    color: #2B2A2B;
    font-weight: 800;
    border: none;
    font-size: 17px;
    opacity: 1;
    padding-bottom: 0;
    height: auto;
}

.reservation-info form input.datepicker {
    color: #2B2A2B;
    font-weight: 800;
    border: none;
    font-size: 17px;
    padding-left: 0;
    padding-bottom: 0;
    background: transparent;
}

.reservation-info form input::placeholder {
    color: #2B2A2B;
}

.reservation-info form input:disabled {
    background: transparent;
}

.reservation-info form select {
    padding-left: 0;
    background: transparent;
    color: #2B2A2B;
    font-weight: 800;
    border: none;
    font-size: 17px;
    opacity: 1;
    padding-bottom: 0;
    height: auto;
}

.reservation-info form span {
    color: #757575;
    font-size: 14px;
}

.reservation .info-row .you-choose {

}

.reservation .info-row .you-choose h5 {
    font-weight: 800;
    color: #2B2A2B;
    font-size: 17px;
}

.reservation .info-row .you-choose span {
    color: #515151;
    font-size: 15px;
}


/*personal-info*/

.personal-info {
    background: white;
    border-radius: 24px;
    margin-top: 35px;
    padding: 30px 30px 20px 30px;
}

.reservation .personal-info h4 {
    padding-left: 0 !important;
    margin-bottom: 45px;
}

.personal-info form .form-group {
    margin-bottom: 22px;
}

.personal-info form label {
    padding-left: 0;
    color: #2B2A2B;
    font-weight: 700;
    font-size: 16px;
}

.personal-info form textarea.form-control {
    background-color: transparent;
    opacity: 1;
    resize: none;
    padding: 11px 20px;
    height: 50px;
    margin-top: 3px;
}

.personal-info form input {
    border-radius: 88px;
    border: 1px solid #B2B2B2;
    margin-top: 3px;
    padding: 24px 20px;
    color: #686768;
    font-size: 15px;
}

.personal-info form input::placeholder {
    color: #686768;
}


/*payment-amount*/


.payment-amount {
    border-radius: 24px;
    margin-top: 35px;
    padding: 40px 30px 30px 30px;
    border: 1px solid #C8C8C8;
}

.payment-amount .amount {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
}

.payment-amount .amount h4 {
    padding-left: 0;
    margin-bottom: 0;
}

.payment-amount .amount span {
    color: #2B2A2B;
    font-weight: 800;
    font-size: 22px;
    line-height: 30px;
}

.payment-amount .amount .amount-info {
    text-align: right;
}

.payment-amount .amount .amount-info .discount {
    margin-top: 5px;
}

.payment-amount .amount .discount span {
    font-weight: 600;
    font-size: 16px;
}

.payment-amount .amount .discount span span {
    font-weight: 800;
    font-size: 20px;
    margin-left: 5px;
}

.payment .payment-amount .amount {
    margin-bottom: 0;
}

.payment-amount form label a {
    color: #686768;
    text-decoration: underline;
    font-size: 15px;
}

.payment-amount form label a:hover {
    text-decoration: none;
    color: #9D0A0E;
}


/*confirm-reservation*/


.confirm-reservation {
    margin-top: 35px;
}

.confirm-reservation a.button {
    display: block;
    margin-bottom: 25px;
    text-align: center;
    height: 48px;
}

.confirm-reservation a.button-secondary {
    font-size: 14px;
    padding-top: 13px;
}

.confirm-reservation a.button img {
    width: 19px;
    margin-top: -3px;
    margin-right: 6px;
}

.confirm-reservation a.see-all {
    margin-top: 12px;
    display: table;
}


/*comments*/

.guest-reviews {
    padding: 25px 0;
    margin-bottom: 25px;
}

.guest-reviews h2 {
    margin-bottom: 15px;
}

.guest-reviews .reviews-info {

}

.guest-reviews .reviews-info span {
    display: inline-block;
    font-size: 16px;
}

.guest-reviews .reviews-info span.star-info {
    background: #9D0A0E;
    color: white;
    border-radius: 88px;
    padding: 4px 18px;
    font-weight: 700;
    margin-right: 10px;
    font-size: 17px;
}

.guest-reviews .reviews-info span.reviews {
    color: #686768;

}

.guest-reviews .reviews-info span.reviews-count {
    font-weight: 700;
    color: #2B2A2B;
    margin-right: 3px;
}

.guest-reviews ul {
    margin-top: 30px;
}


.guest-reviews ul li {
    display: inline-block;
    font-weight: 500;
    font-size: 17px;
    position: relative;
    padding: 0 25px 0 30px;
}

.guest-reviews ul li img {
    width: 23px;
    margin: 0;
    position: absolute;
    left: 0;
    height: 23px;
}

.guest-reviews ul li .stars {

}

.guest-reviews ul li .stars ul {
    margin-top: 6px;
}

.guest-reviews ul li .stars ul li {

}

.guest-reviews ul li .stars ul li img {
    margin: 0;
    position: static;
}

.guest-reviews ul li .stars span {
    font-size: 18px;
    padding: 0 0 0 10px;
    margin-top: 0;
    vertical-align: text-bottom;
}


/*guest-comment-block*/

.guest-comment-block {
    background: white;
    border-radius: 24px;
    padding: 35px 25px 25px 25px;
    margin-bottom: 20px;
}

.guest-comment-block h4 {
    letter-spacing: 0;
    font-size: 23px;
    line-height: 29px;
    margin-bottom: 5px;
}


.guest-comment-block .stars ul li img {
    width: 18px;
}

.guest-comment-block .comment-block {
    position: relative;
    padding-left: 45px;
    font-weight: 700;
    font-size: 20px;

}

.guest-comment-block .comment-block img {
    width: 32px;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -1px;
}

.guest-comment-block .comment-block p {
    color: #2B2A2B;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 6px;
    line-height: 22px;
    margin-top: 10px;
}

.guest-comment-block .comment-block a {
    color: #777477;
    font-weight: 400;
    font-size: 13px;
}

.guest-comment-block .comment-block a:hover {
    color: #2B2A2B;
    text-decoration: underline;
}


/*client-opinion*/

.client-opinion {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 630px;
    margin: 60px auto 0 auto;
    display: none;
}

.client-opinion.show {
    display: block;
}

.client-opinion h5 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 35px;
    font-size: 25px;
}

.client-opinion .rate {

}

.rate .rate-component {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 18px;
}

.rate .rate-component img {
    width: 23px;
    margin-right: 4px;
    height: 23px;
    margin-top: -5px;
}

.rate .stars {
    margin-bottom: 12px;
}

.rate .stars ul li {

}

.rate .stars ul li img {
    margin: 0;
    width: 25px;
}

.rate .button-outline-secondary {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 25px;
}

.rate button img {
    width: 20px;
    margin: -4px 3px 0 0;
}

.rate button:hover {
    color: #ffffff;
    background: #9D0A0E;
    border-color: #9D0A0E;
}

.rate button img.white-img {
    display: none;
}

.rate button:hover img.gray-img {
    display: none;
}

.rate button:hover img.white-img {
    display: inline-block;
}


.rate form {
    margin-top: 45px;
}

.rate form .form-group {
    margin-bottom: 20px;
}

.rate form .form-group label {
    color: #2B2A2B;
    font-weight: 700;
    font-size: 16px;
    padding: 0;
}

.rate form .form-group input {
    border: 1px solid #B2B2B2;
    border-radius: 88px;
    padding: 22px 20px 22px 20px;
    margin-top: 4px;
    font-size: 15px;
}

.rate form .form-group input::placeholder {
    color: #686768;
    font-size: 14px;
}


.rate form .form-group textarea {
    border-radius: 18px;
    border: 1px solid #B2B2B2;
    font-size: 15px;
    padding: 12px 15px 22px 18px;
    margin-top: 4px;
}

.rate form .form-group textarea::placeholder {
    color: #686768;
    margin-top: 4px;
    font-size: 14px;
}

.rate form .button-primary {
    display: table;
    margin: 20px auto 0 auto;
    width: 270px;
    text-align: center;
}


.show-form-btn {
    text-align: center;
    margin-top: 60px;
}

.show-form-btn.hide {
    display: none;
}

.show-form-btn button {
    border: none;
    box-shadow: none;
    width: 270px;

}


/*modal*/

.modal {
    z-index: 10002;
}

.modal h5 {
    font-weight: 700;
    font-size: 22px;
}

.rate-modal h5 {
    font-weight: 800;
}

.modal-dialog {
    max-width: 480px;
}

.modal .close {
    padding: 0;
    margin: 0 0 0 30px;
    position: absolute;
    opacity: 1;
    left: 0;
    transform: translate(-50%, -56%);
    top: 50%;
    height: auto;
}


.modal .close span {
    color: #515151;
    font-size: 33px;
}

.modal .modal-content {
    border-radius: 30px;
    -webkit-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 5px 7px rgba(0, 0, 0, 0.4);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.4);
}

.modal .modal-header {
    justify-content: center;
    border-bottom: 1px solid #D2D2D2;
    position: relative;
    padding: 23px 10px;
}

.modal.show .modal-dialog {
    margin-top: 100px;
}

.modal-body {
    padding: 15px 20px 0 20px;
}

.modal-body form {
    margin-top: 20px;
}

.modal-body form label {
    padding-left: 0;
    position: relative;
    color: #2B2A2B;
    font-weight: 600;
    font-size: 15px;
}

.modal-body form label img {
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: 25px;
    transform: translate(-50%, -50%);

}

.modal-body form label .show-hide {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0;
    margin-right: 10px;
    cursor: pointer;
    transform: translate(-50%, -50%);
    color: #515151;
    opacity: 0.6;
}

.modal-body form input {
    padding: 22px 20px 22px 42px;
    margin-top: 4px;
    font-size: 15px;
    color: #686768;
}

.modal-body form .form-group.password input {
    padding: 22px 43px 22px 42px;
}

.modal-body form input::placeholder {
    color: #686768;
}


.modal-body .forgot-password {
    display: block;
    text-align: right;
    color: #777477;
    width: 140px;
    margin: 0 0 0 auto;
}

.modal-body .forgot-password:hover {
    color: #2B2A2B;
    text-decoration: underline;
}

.modal-body form a.button {
    display: block;
    text-align: center;
    margin-top: 13px;
}

.modal-body form .form-group.password {
    margin-bottom: 10px;
}

.modal-body .border-effect {
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-body .border-effect span:first-child,
.modal-body .border-effect span:nth-child(3) {
    display: block;
    background: #D2D2D2;
    width: 170px;
    height: 1px;
}

.modal-body .border-effect span:nth-child(2) {
    color: #515151;
}

.modal-body .border-effect span:nth-child(3) {

}

.modal-footer {
    border: none;
    display: block;
    padding: 0 20px 20px 20px;

}

.modal-footer a.button {
    display: block;
    text-align: center;
    margin-bottom: 17px;
    border-color: #8A8989;
    position: relative;
}

.modal-footer a.button img {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -13px;
    margin-left: 15px;
}


header.open .modal .modal-content {
    box-shadow: 0 10px 14px 0 rgb(75 0 27 / 14%);
    -webkit-box-shadow: 0 10px 13px 0 rgb(75 0 27 / 14%);
    -moz-box-shadow: 0 10px 13px 0 rgb(75 0 27 / 14%);
}

/*register modal*/

.modal-body p {
    color: #2B2A2B;
    font-weight: 700;
    text-align: center;
    line-height: 23px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.register-modal .modal-body form input {
    padding: 22px 20px 22px 42px;
}


.register-modal .cancel-register {
    display: block;
    text-align: center;
    margin: 26px auto 10px auto;
    color: #777477;
    position: static;
    transform: none;
    float: none;
    font-size: 14px;
    font-weight: 400;
}

.register-modal .cancel-register:hover {
    color: #2B2A2B;
    text-decoration: underline;

}

.register-modal .login-link {
    color: #777477;
    margin-top: 25px;
}

.register-modal .login-link a {
    color: #777477;
}

.register-modal .login-link a:hover {
    color: #2B2A2B;
    text-decoration: underline;
}

/*profile page*/


main.profile .button {
    min-width: 160px;
    text-align: center;
}

.intro-profile {
    background: #F8F8F8;
    padding: 35px 0 115px 0;
    margin-bottom: 2px;
}

.profile-sidebar {

}

.intro-profile h3 {
    margin: 12px 15px 15px 25px;
}

.profile-sidebar .bonus {
    background: #9D0A0E;
    color: #fff;
    padding: 14px 25px 14px 25px;
    border-radius: 24px 24px 0 0;
    font-size: 16px;
}

.profile-sidebar .bonus img {
    margin-right: 8px;
    width: 25px;
    margin-top: -2px;
}

.profile-sidebar .bonus span {
    font-weight: 700;
    margin-left: 15px;
    font-size: 18px;
    display: inline;
}

.profile-sidebar ul {
    border: 1px solid #C8C8C8;
    padding: 0 25px;
    border-radius: 0 0 24px 24px;
}

.profile-sidebar ul li {
    padding: 24px 0;
    border-bottom: 1px solid #C8C8C8;
}

.profile-sidebar ul li:last-child {
    border: none;
}

.profile-sidebar ul li a {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    align-items: center;
}

.profile-sidebar ul li a:hover {
    color: #9D0A0E;
}

.profile-sidebar ul li a img {
    margin-top: 2px;
    margin-left: 12px;
    max-width: 7px;
}

.profile-sidebar ul li a span {

}

.profile-sidebar .link-name-and-icon {
    font-size: 16px;
}

.profile-sidebar .link-icon {
    position: relative;
    /*border: 10px solid white;*/
    /*border-radius: 80px;*/
    margin-right: 18px;
    text-align: center;
    display: inline-block;

}

.profile-sidebar .link-icon:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100px;
    background: white;
    width: 42px;
    height: 42px;
}

.profile-sidebar .link-icon img {
    max-width: 19px;
    max-height: 19px;
    margin: -3px 0 0 0;
    position: relative;

}

.profile-sidebar .link-icon img.red-img {
    display: none;
}

.profile-sidebar ul li a:hover .link-icon img.gray-img {
    display: none;
}

.profile-sidebar ul li a:hover .link-icon img.red-img {
    display: inline-block;
}

.profile-sidebar .link-icon img.white-img {
    display: none;
}

.profile-sidebar ul li.active .link-icon img.gray-img,
.profile-sidebar ul li.active .link-icon img.red-img {
    display: none !important;
}

.profile-sidebar ul li.active .link-icon img.white-img {
    display: inline-block;
}


.profile-sidebar ul li.active .link-icon:before {
    background: #9D0A0E;
}

.level-type {
    background: #9D0A0E;
    color: #fff;
    border-radius: 30px;
    padding: 3px 24px;
    vertical-align: super;
    display: inline-block;
    position: relative;
    letter-spacing: 0.4px;
    top: 3px;
}

.how-to-raise-level {
    background: #fff;
    display: table;
    border: 1px solid #9D0A0E;
    border-radius: 20px;
    color: #9D0A0E;
    padding: 15px 35px 15px 20px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 60px;
    margin-left: 25px;
}

.how-to-raise-level span {
    font-weight: 700;
}

.intro-profile .hotel-image {
    text-align: center;
}

.level-type-info-blocks {
    margin-top: -35px;
}

.level-type-info-blocks .level-type-info {
    background: white;
    box-shadow: 0 7px 20px 1px rgb(75 0 27 / 11%);
    border-radius: 24px;
    height: 100%;
    padding: 25px 20px;
}

.level-type-info-blocks .level-type-info .level-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.level-type-info-blocks .level-type-info .level-name h5 {
    margin: 0;
    font-weight: 800;
    font-size: 22px;
}

.level-type-info-blocks .level-type-info .level-name img {
    width: 20px;
}

.level-type-info-blocks .level-type-info ul li {
    font-size: 15px;
    color: #000000;
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
}

.level-type-info-blocks .level-type-info ul li:before {
    content: "";
    position: absolute;
    left: 0;
    background: url("../images/gray-check.svg") center no-repeat;
    background-size: 100%;
    width: 15px;
    height: 15px;
    top: 0;
    margin-top: 4px;
}

.friends-list {
    padding: 25px 0 40px 0;
}

.friends-list ul {
    border-bottom: 1px solid #D9D9D9;
}

.friends-list ul li {
    display: inline-block;
    padding: 0 15px 14px 15px;
    position: relative;
    margin-right: 15px;
}

.friends-list ul li:last-child {
    margin-right: 0;
}

.friends-list ul li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #9D0A0E;
    height: 1px;
    width: 0;
    transition: all .3s;
    margin-bottom: -1px;
}

.friends-list ul li.active:before {
    width: 100%;
}

.friends-list ul li:hover:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #9D0A0E;
    height: 1px;
    width: 100%;
    transition: all .6s;
}

.friends-list ul li a {
    font-size: 16px;
    color: #3E3E3E;
    font-weight: 700;
}

.friends-list ul li.active a {
    color: #9D0A0E;
}

.friends-list ul li a:hover {
    color: #9D0A0E;
}

.friends-list .invite-friends-btn {
    text-align: right;
}

.friends .invite-friends-btn button.invite {
    border: none;
    box-shadow: none;
    margin-top: -15px;
    padding: 14px 32px;
}

.friends.friends-info .invite-friends-btn button.invite {
    margin-top: 0;
}

.friends .invite-friends-btn button img {
    margin-top: 2px;
    margin-right: 3px;
    vertical-align: top;
    width: 16px;
}

.friends .user-info-block {
    background: white;
    box-shadow: 0 8px 14px 0 rgb(75 0 27 / 7%);
    border-radius: 24px;
    padding: 18px 30px 20px 30px;
    margin-bottom: 30px;
}

.friends .user-info-block:last-child {
    margin-bottom: 0;
}

.friends .user-info-block h3 {
    margin: 0 15px 3px 0;
    font-weight: 800;
    font-size: 24px;
    line-height: 28px;
}

.friends .user-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.friends .user-info-block ul {

}

.friends .user-info-block .level-type {
    top: 4px;
}

.friends .user-info ul li {
    display: inline-block;
    position: relative;
    margin-right: 25px;
}

.friends .user-info ul li .info-comp {
    position: relative;
    display: block;
}

.friends .user-info ul li span {
    background: #9D0A0E;
    color: #fff;
    border-radius: 100px;
    position: absolute;
    display: block;
    text-align: center;
    padding: 1px 7px 1px 7px;
    font-size: 13px;
    top: 0;
    right: 0;
    margin-right: -10px;
    margin-top: -6px;
}

.friends .user-info-block a.button img {
    width: 13px;
    margin-left: 4px;
}

.friends .user-info-block a.button.disabled {
    pointer-events: none;
    cursor: default;
    opacity: 0.2;
}

.friends .user-info-block a.button {
    margin-left: 20px;
    padding: 12px 44px;
}


.friends .invite-friends-btn .modal button.close {
    margin: 0 10px 0 0;
    padding: 0;
    transform: translate(-50%, -62%);
    left: auto;
    right: 0;
    opacity: 1;
}

.friends .invite-friends-btn .modal button.close:hover {
    opacity: .75;
}

.friends .invite-friends-btn .modal .modal-header {
    justify-content: flex-start;
    padding: 23px 20px;
}

.friends .invite-friends-btn .modal .link-info {
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    margin: 30px 0 15px 0;
    opacity: 1;
}

.friends .invite-friends-btn .modal .inline-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.friends .invite-friends-btn .modal input {
    background: transparent;
    padding: 24px 20px;
    margin: 0;
}

.friends .invite-friends-btn .modal label {
    width: 60%;
    margin-bottom: 15px;
}

.friends .invite-friends-btn .modal .modal-dialog {
    max-width: 575px;
}

.friends .invite-friends-btn .modal .copy-btn {
    margin-bottom: 15px;
}

.friends .invite-friends-btn .modal .copy-btn img {
    vertical-align: middle;
    margin-top: -2px;
    width: 20px;
}

.friends .invite-friends-btn .modal .copy-btn img.white-img {
    display: none;
}

.friends .invite-friends-btn .modal .copy-btn:hover img.gray-img {
    display: none;
}

.friends .invite-friends-btn .modal .copy-btn:hover img.white-img {
    display: inline-block;
}

.friends .invite-friends-btn .modal .send-message {
    margin-top: 0;
    display: table;
    padding: 12px 70px;
}

.friends .invite-friends-btn .modal .modal-footer {
    padding: 0 20px 55px 20px;
}


.intro-profile .heading,
.user-title .heading {
    display: inline-block;
}

.friends .user-title {
    padding: 30px 0;
    border-bottom: 1px solid #D5D5D5;
}

.friends .user-title h3 {
    margin: 0 15px 3px 0;
    font-weight: 800;
}

.friends .see-all.back {
    margin-top: 20px;
    display: table;
}

.friends .user-title .user-info .invite-friends-btn {
    margin-left: 20px;
}


.map-visit-place {
    margin: 60px 0 30px 0;
}

.map-visit-place .visit-info {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 22px;
    line-height: 27px;
}

.map-visit-place .gmap_canvas {
    border-radius: 24px;
}

.friends .modal form textarea {
    background: transparent;
    padding: 12px 20px;
    margin: 0;
    max-height: 50px;
    min-height: 50px;
    resize: none;
}


.map-visit-place .mapouter {
    position: relative;
    text-align: right;
    height: 400px;
    width: 100%;
}

.map-visit-place .gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 400px;
    width: 100%;
}


/*places-visited*/

.places-visited {
    background: white;
    box-shadow: 0 8px 14px 0 rgb(75 0 27 / 7%);
    border-radius: 24px;
    padding: 18px 20px 18px 20px;
    margin-bottom: 30px;
}

.places-visited:last-child {
    margin-bottom: 0;
}

.places-visited a {
    font-weight: 800;
    font-size: 21px;
    line-height: 27px;
    margin-bottom: 5px;
    display: block;
}

.places-visited a:hover {
    color: #9D0A0E;
}

.places-visited .hotel-image {
    border-radius: 14px;
}

.places-visited .place-images {
    margin: 0 20px;
}

.places-visited span {
    font-weight: 600;
    font-size: 15px;
}

.places-visited .place {
    font-weight: 700;
    font-size: 15px;
    margin-top: 5px;
}

.places-visited .place img {
    margin-top: -5px;
    margin-right: 1px;
}

.places-visited .stars img.like {
    width: 34px;
    margin-right: 8px;
}

.places-visited .stars img {
    width: 20px;
    vertical-align: middle;
}

.places-visited .place-images li {
    display: inline-block;
    margin-right: -20px;
    margin-bottom: -5px;
}

.places-visited .place-images li a {

}

.places-visited .place-images li a img {
    width: 52px;
}


/*my-reservations*/

.my-reservations {

}

.my-reservations h3 {
    margin-left: 0;
    margin-bottom: 40px;
}

.my-reservations article {
    background: white;
    box-shadow: 0 8px 14px 0 rgb(75 0 27 / 7%);
    border-radius: 24px;
    margin-bottom: 30px;
}

.my-reservations article:last-child {
    margin-bottom: 0;
}

.reservation-block {
    padding: 18px 20px 11px 20px;
}

.disabled-collapse {
    display: none !important;
}

.reservation-block.active {
    cursor: pointer;
}

.reservation-block a.hotel-image {
    pointer-events: none;
    cursor: default;
    opacity: 0.4;
    display: block;
}

.reservation-block a.hotel-image img {
    border-radius: 14px;
    margin-bottom: 10px;
}

.reservation-block.active a.hotel-image {
    pointer-events: none;
    cursor: pointer;
    opacity: 1;
}

.reservation-block .reservation-details {
    margin-bottom: 10px;
    margin-left: -12px;
}

.reservation-block .reservation-info {
    margin: 20px 0 0 0;
}

.reservation-block .reservation-details span:first-child {
    display: table;
    background: #9D9D9D;
    color: #fff;
    border-radius: 88px;
    padding: 3px 24px;
    margin-bottom: 10px;
}

.reservation-block.active .reservation-details span:first-child {
    background: #298D2D;
}

.reservation-block .reservation-details span.date-of-reservation {
    font-weight: 800;
    font-size: 20px;
    line-height: 27px;
    display: block;
}

.reservation-block .reservation-details .place {
    font-weight: 600;
    font-size: 15px;
}

.reservation-block .price {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 10px;
}

.reservation-block .buttons {
    text-align: right;
}

.reservation-block .buttons a {
    margin-left: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

.reservation-block .buttons .invoice:focus {
    color: #2B2A2B;
}

.reservation-block .buttons .invoice img {
    width: 19px;
    margin-top: -4px;
    margin-right: 4px;
}

.reservation-block .buttons .invoice .white-img {
    display: none;
}

.reservation-block .buttons .invoice:hover .gray-img {
    display: none;
}

.reservation-block .buttons .invoice:hover .white-img {
    display: inline-block;
}

.my-reservations article .reservation-info form {
    border-top: 1px solid #DEDEDE;
    padding: 20px 0;
}

.my-reservations article .you-choose h5 {
    font-weight: 800;
    color: #2B2A2B;
    font-size: 17px;
}

.my-reservations article .reservation-info {
    padding: 0 20px;
}

.my-reservations article .you-choose {
    border-top: 1px solid #DEDEDE;
    padding: 16px 0 20px 0;
}

.my-reservations article .you-choose span {
    color: #515151;
    font-size: 15px;
}

.comment-the-hotel {
    border-top: 1px solid #AFA1A1;
    padding: 11px 20px 15px 20px;
}

.comment-the-hotel button {
    border: none;
    background: transparent;
    text-decoration: underline;
    font-size: 16px;
    color: #2B2A2B;
    font-weight: 600;
    display: block;
}

.comment-the-hotel button img {
    width: 25px;
    margin-right: 5px;
    margin-top: -6px;
}

.comment-the-hotel button:hover {
    color: #9D0A0E;
    text-decoration: none;
}

.comment-the-hotel button img.red-img {
    display: none;
}

.comment-the-hotel button:hover img.gray-img {
    display: none;
}

.comment-the-hotel button:hover img.red-img {
    display: inline-block;
}

.my-reservations .your-reservation-info {
    border: none;
    padding: 0;
}

.my-reservations .your-reservation-info .info-row {
    border-top: 1px solid #C8C8C8;
    padding: 18px 0 18px 0;
    border-bottom: none;
}

.my-reservations .your-reservation-info .info-row:last-child {
    padding: 0;
}


/*my-reviews*/

.my-reviews {

}

.my-reviews h3 {
    margin: 12px 15px 40px 0;
}

.my-reviews .reviews-info {
    margin-left: -12px;
}

.rate-block,
article.your-review {
    background: white;
    box-shadow: 0 8px 14px 0 rgb(75 0 27 / 7%);
    border-radius: 24px;
    margin-bottom: 30px;
    padding: 25px 20px 25px 20px;
}

article.your-review:last-child {
    margin-bottom: 0;
}

.my-reviews h5 {
    font-weight: 800;
    font-size: 20px;
    line-height: 26px;
    margin-top: 6px;
}

.rate-block span {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin: 2px 0 10px 0;
}

.rate-block button.button-primary {
    border: none;
}

.rate-block button img {
    width: 22px;
    margin: -5px 3px 0 0;
}

.rate-block a.hotel-image {

}

.rate-block a.hotel-image img,
.shared-review a.hotel-image img {
    border-radius: 14px;
}

.my-reviews span {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin: 2px 0 10px 0;
}

.shared-review .review-info {
    margin: 15px 0 22px 0;
}

.shared-review .review-info img.like {
    width: 34px;
    margin-right: 10px;
}

.shared-review .review-info span {
    margin-right: 10px;
    display: inline;
    font-weight: 700;
    font-size: 19px;
    vertical-align: middle;
}

.shared-review .review-info .stars {
    display: inline-block;
}

.shared-review .review-info .stars img {
    width: 20px;
    margin-bottom: -5px;
}

.shared-review p {
    color: #2B2A2B;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
}

article.your-review .btn-details {
    border: none;
    background: transparent;
    color: #777477;
    font-size: 15px;
    text-align: left;
    display: none;
}

article.your-review .btn-details.collapsed {
    display: inline-block;
}

article.your-review .btn-details:hover {
    color: #2B2A2B;
}

.my-reviews .review-check {
    display: table;
}

.review-check {
    color: #fff;
    border-radius: 88px;
    padding: 3px 26px;
    margin-bottom: 10px;
    background: #298D2D;
}

.btn-details.hide {
    opacity: 0;
    position: relative;
    z-index: -1;
}

.btn-details.sec {
    margin-top: 10px;
}


/*rate modal*/

.rate-modal {

}

.rate-modal .modal-dialog {
    max-width: 575px;
}

.rate-modal .modal-header {
    display: block;
    padding: 23px 25px 35px 25px;
}

.rate-modal .modal-header h5.modal-title {
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 22px;
}

.rate-modal .modal-header img {
    border-radius: 14px;
}

.rate-modal .modal-header span {
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0;
}

.rate-modal h5 {
    margin-top: 0;
}

.rate-modal .modal-title {
    margin-top: 0;
}

.rate-modal .close {
    margin: 22px 20px 0 30px;
    left: auto;
    transform: none;
    top: 0;
    right: 0;
}

.my-reviews .rate-modal .close {
    margin: 15px 20px 0 30px;
}

.rate-modal .modal-body {
    padding: 40px 25px 18px 25px;
}

.rate-modal .modal-body form {
    margin-top: 35px;
}


/*payment*/


.payment {
    background: #F8F8F8;
    margin-bottom: 2px;
}

.your-reservation-info {
    border: 1px solid #C8C8C8;
    border-radius: 24px;
    padding-top: 35px;
}

.payment h4 {
    font-size: 25px;
    letter-spacing: 0;
    line-height: 32px;
    margin-bottom: 25px;
    padding-left: 25px;
}

.your-reservation-info .info-row {
    border-bottom: 1px solid #C8C8C8;
    padding: 20px 30px 25px 30px;
}

.your-reservation-info .info-row:last-child {
    border: none;
}

.your-reservation-info .info-row .selected-reservation {
    color: #515151;
    font-weight: 600;
    font-size: 16px;
}

.your-reservation-info .info-row .selected-reservation span {
    font-weight: 800;
    font-size: 17px;
    display: block;
    color: #2B2A2B;
    margin-top: 6px;
}

.your-reservation-info .info-row .selected-reservation div {
    color: #757575;
    font-size: 14px;
}

.your-reservation-info .info-row .you-choose h5 {
    font-weight: 800;
    color: #2B2A2B;
    font-size: 17px;
}

.your-reservation-info .info-row .you-choose span {
    color: #515151;
    font-size: 15px;
    line-height: 20px;
}

.payment .personal-info h4 {
    padding-left: 0;
}

.personal-info .invoice-checkbox label {
    font-weight: 400;
}

.personal-info .user-type {
    border-bottom: 1px solid #D9D9D9;
    margin: 30px 0;
}

.personal-info .profile-info label span.address-inf {
    font-weight: 400;
    font-size: 14px;
    color: #8d8d8d;
}

.personal-info .profile-info.legally {
    display: none;
}

.personal-info .profile-info.legally.show {
    display: block !important;
}

.personal-info .profile-info.individual.hide {
    display: none;
}

.personal-info .user-type.hide,
.personal-info .profile-info.hide {
    display: none;
}

.personal-info .user-type button {
    display: block;
    text-align: center;
    font-weight: 700;
    color: #3E3E3E;
    position: relative;
    transition: all .3s;
    padding-bottom: 13px;
    font-size: 16px;
    border: none;
    background: transparent;
    width: 100%;
}

.personal-info .user-type button.active {
    color: #9D0A0E;
}

.personal-info .user-type button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: #9D0A0E;
    transition: all .3s;
    margin-bottom: -1px;
}

.personal-info .user-type button.active:before {
    width: 100%;
}

.personal-info .user-type button:hover {
    color: #9D0A0E;
}

.personal-info .user-type button:hover:before {
    width: 100%;
}

.personal-info form .form-group.dds {
    margin-top: -10px
}

.personal-info form .form-group.dds label {
    font-weight: 400;
}

.personal-info form .form-group select {
    border-radius: 88px;
    border: 1px solid #B2B2B2;
    margin-top: 3px;
    padding: 11px 20px;
    color: #686768;
    font-size: 15px;
    font-weight: 400;
    background: #fff url("../images/Polygon.svg") right 0.75rem center/8px 10px no-repeat;
    background-position-x: 96%;
    background-size: 12px;
    background-position-y: 22px;
    opacity: 1;
    height: 50px;
}

.personal-info form .form-group .form-control:disabled,
.personal-info form .form-group .form-control[readonly] {
    background-color: transparent;
    opacity: 1;
    resize: none;
    padding: 11px 20px;
    height: 50px;
    margin-top: 3px;
}


.payment-method {
    background: white;
    margin-top: 35px;
    padding: 30px;
    border-radius: 24px;
}

.payment-method form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.payment-method h4 {
    padding-left: 0;
}

.payment-method form .form-group {
    /*border: 1px solid #B2B2B2;*/
    /*border-radius: 10px;*/
    /*!*display: inline-block;*!*/
    /*!*margin-right: 10px;*!*/
    /*text-align: center;*/
    /*padding: 10px;*/
    /*vertical-align: top;*/
    /*height: 146px;*/
    /*width: 121px;*/
}

.payment-method form .form-group label.active {
    border: 1px solid #9D0A0E;
}

.payment-method form .form-group img {
    margin: 10px 0;
    height: 48px;
}

.payment-method form .form-group label {
    color: #2B2A2B;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid #B2B2B2;
    border-radius: 10px;
    /* display: inline-block; */
    /* margin-right: 10px; */
    text-align: center;
    padding: 10px;
    vertical-align: top;
    height: 146px;
    width: 121px;
    cursor: pointer;
}

.payment-method form .form-group input {
    display: block;
    text-align: center;
    margin: 6px auto 0 auto;
    position: static;
    width: 23px;
    height: 23px;
}

.payment-method form .form-group input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #D4D4D4;
    border-radius: 100px;
}

.payment-method form .form-group input[type="radio"]:checked {
    border: 5px solid #9D0A0E;
}

.pay-now {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.pay-now a.button {
    min-width: 290px;
    text-align: center;
    display: block;
    margin-bottom: 3px;
}

.fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 95px;
    padding: 10px 10px 5px 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.3);
}

.fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 95px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #9D0A0E;
}


ul.countdown-timer {
    column-count: auto;
    display: inline-block;
    margin-top: 0;
}

ul.countdown-timer li {
    display: inline-block;
    padding: 0;
    color: #9D0A0E;
    font-weight: 700;
    font-size: 16px;
}

ul.countdown-timer li.seperator {
    margin: 0 -2px;
}

ul.countdown-timer li:before {
    display: none;
}



/*body.profile-header .mobile-menu li.login-btn,*/
/*body.profile-header .mobile-menu li.modal-btn.registration {*/
/*    display: none;*/
/*}*/


/*body.profile-header .mobile-menu .profile-menu {*/
/*    display: block;*/
/*}*/

/*body.profile-header .mobile-menu span.profile-logo {*/
/*    color: #fff;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    display: block;*/
/*    background: #9D0A0E;*/
/*    width: 46px;*/
/*    height: 46px;*/
/*    border-radius: 80px;*/
/*    text-align: center;*/
/*    vertical-align: middle;*/
/*    padding: 10px 0 0 0;*/
/*    font-weight: 700;*/
/*    font-size: 16px;*/
/*    margin: 0 auto 3px auto;*/
/*}*/

/*body.profile-header .mobile-menu .profile-name h5 {*/
/*    color: #302F2F;*/
/*    font-weight: 700;*/
/*    font-size: 17px;*/
/*    text-transform: capitalize;*/
/*    line-height: 22px;*/
/*}*/

/*body.profile-header .mobile-menu .profile-name span {*/
/*    color: #878787;*/
/*    font-weight: 600;*/
/*    text-transform: capitalize;*/
/*    font-size: 14px;*/
/*}*/


/*forgot-password*/

.forgot-password {
    background: #F8F8F8;
    padding: 60px 0 150px 0;
}

.forgot-password .forgot-pass-form {
    background: #fff;
    max-width: 498px;
    border-radius: 24px;
    padding: 35px 35px 50px 35px;
    margin: 0 auto;
}

.forgot-password .forgot-pass-form h5 {
    font-weight: 700;
    font-size: 23px;
    margin-bottom: 20px;
}

.forgot-password .forgot-pass-form p {
    color: #2B2A2B;
    font-size: 17px;
    line-height: 25px;
}

.forgot-password .forgot-pass-form form {

}

.forgot-password .forgot-pass-form form input {
    padding-left: 40px;
}

.forgot-password .forgot-pass-form form .button {
    border: none;
    width: 100%;
}

.forgot-password .forgot-pass-form form .form-group {
    margin-bottom: 25px;
}

.forgot-password .forgot-pass-form form .form-group label {
    position: relative;
    padding: 0;
}

.forgot-password .forgot-pass-form form .form-group label img {
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: 25px;
    transform: translate(-50%, -50%);
}

.intro.loyalty-program .intro-container {
    background: url("../images/loyalty-intro-bgr.jpg") center no-repeat;
    background-size: cover;
    padding: 55px 0 15px 0;
}

.intro.loyalty-program  .intro-container img {
    margin-bottom: -70px;
}

.intro.loyalty-program .intro-container h1 {
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.intro.loyalty-program .intro-container p {
    color: #fff;
    font-size: 19px;
    line-height: 26px;
}

.intro.loyalty-program .intro-container .intro-info {
    padding-left: 50px;
}

.loyalty-offers {
}

.loyalty-offers .loyalty-offer-block {
    margin-top: 90px;
}

.loyalty-offers .loyalty-offer-block h3 {
    color: #878787;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 19px;
    letter-spacing: 0;
    line-height: 27px;
}

.loyalty-offers .loyalty-offer-block h4 {
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 38px;
}

.loyalty-offers .loyalty-offer-block p {
    padding: 0 20px 0 0;
}

.loyalty-offers .loyalty-offer-block.even .loyalty-info {
    padding-left: 20px;
}

.loyalty-offers .loyalty-offer-block.even p {
    padding: 0;
}

.loyalty-offers .loyalty-offer-block .offer-image {
    border-radius: 30px;
}

.block-information {
    background: #F8F8F8;
}

.block-information img {
    height: 50px;
}

.block-information p {
    margin: 15px 0 25px 0;
    font-size: 16px;
    line-height: 25px;
    padding-right: 20px;
}
.block-information p.footerP {
    padding: 0;
    margin: 40px 0 0 0;
    font-size: 18px;
    line-height: 26px;
}

.register-block {

}

.register-block .text-block {
    text-align: center;
}

.register-block .text-block img {
    width: 100px;
    margin-bottom: 30px;
}

.register-block .text-block .heading {
    font-size: 35px;
    line-height: 42px;
}

.register-block .text-block .button {
    min-width: 190px;
}


/*destinations*/

.destinations {
    background: #F8F8F8;
    position: relative;
}

.destinations:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: #fff;
    z-index: 0;
}

.destinations .heading-2 {
    margin-bottom: 40px;
}

.destinations .dest-cont {
    padding: 0 35px;
    position: relative;
    z-index: 10;
}

.destinations .destination-block {
    background: #fff;
    padding: 6px;
    border-radius: 30px;
    margin-bottom: 45px;
}

.destinations .destination-block .destination-image {
    overflow: hidden;
    display: block;
    border-radius: 30px 30px 0 0;
}

.destinations .destination-block .destination-image img {
    transition: all .6s;
    width: 100%;
}

.destinations .destination-block .destination-image img:hover {
    transform: scale(1.2);
}

.destination-block .destination-info {
    padding: 25px 25px 18px 25px;
}

.destination-block .destination-info h3 {
    font-size: 27px;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.destination-block .destination-info h3 a:hover {
    color: #9D0A0E;;
}

.destination-block .destination-info .hotel-count {
    color: #686768;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 20px;
    display: block;
}

.destination-block .destination-info .top-hotels {
    color: #686768;
    font-size: 15px;
}

.destination-block .destination-info .top-hotels .top-hotel {
    color: #2B2A2B;
    font-weight: 600;
    font-size: 17px;
    margin-top: 7px;
}

.text-page,
.review-block {
    background: #F8F8F8;
    border: 1px solid #C8C8C8;
}

.text-page h1 {
    margin-bottom: 15px;
}

.text-page .intro-text h5 {
    font-weight: 800;
    font-size: 28px;
    line-height: 39px;
    padding-right: 260px;
    margin-bottom: 30px;

}

.text-page p {
    font-size: 16px;
    line-height: 25px;
    color: #2B2A2B;
}

.text-page .text-information h5 {
    font-weight: 700;
    font-size: 27px;
    margin-bottom: 20px;
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid #C8C8C8;
}

.text-page ul li {
    color: #2B2A2B;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
}

.review-block .client-opinion {
    margin-top: 0;
}

.thank-you {
    background: #F8F8F8;
}

.thank-you .thank-you-block {
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 0 25px 60px 25px;
}
.thank-you .thank-you-block h6 {
    margin: 10px 0;
}

.thank-you .thank-you-block p {
    color: #2B2A2B;
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 25px;
    line-height: 29px;
}

.thank-you .thank-you-block img {
    margin-top: -35px;
}

.profile-settings form select {
    border: 1px solid #B2B2B2;
    height: 46px;
    position: relative;
    background: url("../images/select-arrow.svg") no-repeat right;
    background-position-x: 96%;
    background-size: 12px;
    /*-webkit-appearance: menulist;*/

}
.profile-settings .heading {
    margin-left: 0;
}


.settings-block {
    background: #fff;
    padding: 20px 0 60px 0;
    border-radius: 40px;
    margin: 40px 0 0 0;
}

.settings-block h5 {
    padding-left: 100px;
    margin: 40px 0;
    font-weight: 700;
    font-size: 26px;
}

.settings-block .settings-nav {
    border-bottom: 1px solid #D9D9D9;
}

.settings-block .settings-nav a {
    display: block;
    width: 100%;
    padding: 5px 0 12px 0;
    font-weight: 700;
    color: #3E3E3E;
    font-size: 16px;
    position: relative;
    text-align: center;
    transition: all .6s;
    height: 100%;
}

.settings-block .settings-nav a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #9D0A0E;
    height: 1px;
    width: 0;
    transition: all .3s;
    margin-bottom: -1px;
}

.settings-block .settings-nav a:hover:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: #9D0A0E;
    height: 1px;
    width: 100%;
    transition: all .6s;
}

.settings-block .settings-nav a.active:before {
    width: 100%;
}

.settings-block .settings-nav a:hover {
    color: #9D0A0E;
}

.settings-block .settings-nav a.active {
    color: #9D0A0E;
}

.settings-block form {
    padding: 0 100px;
}

.settings-block form .form-group {
    margin-bottom: 30px;
}

.settings-block form label {
    color: #2B2A2B;
    font-weight: 700;
    font-size: 15px;
    padding: 0;
}

.settings-block form input,
.settings-block form select {
    color: #686768;
    font-weight: 400;
    margin-top: 4px;
    padding-left: 20px;
}





