.disabled {
    pointer-events: none;
    opacity: 0.6;
}

.panel-title {
    color: var(--color-main-dark);
    font-size: 22px;
    text-align: center;
    font-weight: 600;
}

.panel-box {
    background: #f8f8f8;
    border: 1px solid var(--color-main-dark);
    width: 550px;
    border-radius: 5px;
    padding-top: 45px;
    padding-bottom: 45px;
    margin: 0 auto;
}

.panel-box label {
    width: calc(80% - 20px);
    margin-left: 10%;
    display: block;
    font-weight: bold;
    color: var(--color-main-dark);
}


.panel-box p {
    width: calc(80% - 20px);
    margin-left: 10%;
    display: block;
    color: var(--color-main-dark);
}

.panel-box label.required::after {
    content: '*';
    color: #b73737;
    margin-left: 3px;
}

.panel-box label.title {
    font-size: 20px;
    margin-top: 15px;
    color: #000000;
}

.panel-box input:not([type="checkbox"]) {
    width: calc(80% - 20px);
    margin-left: 10%;
    height: 30px;
    padding: 10px;
    border: 1px solid var(--color-main-dark);
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 17px;
    outline: none !important;
}

.panel-box input::placeholder {
    color: var(--color-main-dark);
}

.panel-box .row {
    width: 80%;
    margin-left: 10%;
}

.panel-box .password-force-label {
    width: 50%;
    font-size: 15px;
    color: var(--color-main-dark);
}

.panel-box p {
    width: 80%;
    margin-left: 10%;
    display: block;
}



.password-strength {
    padding-left: 10px;
    display: flex;
    width: 50%;
    justify-content: right;
}

.password-strength div {
    height: 10px;
    width: 33.3%;
    margin: 3px;
}

.password-strength .weak {
    background: #cc0101;
}

.password-strength .middle {
    background: #f1ce06;
}

.password-strength .strong {
    background: #0ab70a;
}

.password-strength .unused {
    background: #e5e5e5 !important;
}

.confirm-checkboxes {
    width: calc(80%);
    margin-left: 10%;
}

.confirm-checkboxes label {
    display: flex;
    font-size: 15px;
    margin-top: 10px
}

label.checkbox {
    padding-left: 20px;
    position: relative;
}

label.checkbox input[type="checkbox"] {
    display: block;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 1px solid var(--color-main-dark);
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
}

label.checkbox input[type="checkbox"]:checked {
    background: var(--color-main-brigth-ultra-2);
}

label.checkbox input[type="checkbox"]:checked:after {
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 8px;
    transform: rotate(37deg);
    border-bottom: 2px solid var(--color-main-dark);
    border-right: 2px solid var(--color-main-dark);
}

.confirm-checkboxes label a,
.confirm-checkboxes label span {
    display: block;
    color: var(--color-main-dark);
    text-decoration: none;
    padding-left: 10px;
}

.panel-box .g-recaptcha > div {
    margin: 0 auto;
}

.panel-box .submit-panel {
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 200px;
    margin: 0 auto;
    border: 1px solid var(--color-main-dark);
    color: var(--color-main-dark);
    background: var(--color-main-brigth-ultra-2);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
}

.error-bubble {
    background: #fffef9;
    border: 1px solid var(--color-main-dark);
    color: darkred;
    padding: 15px;
    max-width: 250px;
    position: absolute;
    transform: translateY(calc(-100% - 10px));
    border-radius: 4px;
    box-shadow: 0 -1px 7px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    text-align: center;
}

.error-bubble:after {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: #FFFFFF;
    bottom: -6px;
    border-right: 1px solid var(--color-main-dark);
    border-bottom: 1px solid var(--color-main-dark);
}

.error-input {
    background: #f7eeee;
}

.panel-box.ready {
    background: #FFFFFF;
}

.panel-box .msg-success {
    line-height: 20px;
    text-align: center;
    color: green;
    font-size: 17px;
    padding: 20px;
}

.main-profile-panel {

}

.header-toggle-panel {
    height: 50px;
    line-height: 50px;
    background: var(--color-main-super-dark);
    color: #FFFFFF;
    padding-left: 20px;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.header-toggle-panel:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #FFFFFF;
    border-left: 2px solid #FFFFFF;
    position: absolute;
    right: 25px;
    top: 15px;
    transform: rotate(225deg);
}

.open .header-toggle-panel:after {
    top: 20px;
    transform: rotate(45deg);
}

.static-header {
    border-radius: 5px 5px 0 0;
}

.static-header:after {
    display: none !important;
}

.main-profile-panel .body {
    background: #f5f5f5;
    width: calc(100% - 2px);
    display: none;
    border: 1px solid var(--color-main-super-dark);
    border-top: 0;
    border-radius: 0 0 5px 5px;
    padding-bottom: 30px;
}

.main-profile-panel.open .body {
    display: block;
}

.main-profile-panel .body .title {
    padding-left: 50px;
    margin-bottom: 20px;
}

.cart-data {
    padding: 20px;
    width: calc(100% - 42px) !important;
}

.cart-data .cart-list {
    border-bottom: 1px solid var(--color-main);
    margin-bottom: 20px;
    padding-bottom: 20px;
    margin-right: 20px;
}

.cart-data .cart-list:last-child {
    border-bottom: 0 !important;
}

.cart-data .cart-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-main-super-dark);
    text-transform: uppercase;
}

.cart-data .sub-title {
    color: var(--color-main);
    font-weight: bold;
    letter-spacing: 1px;
}

.cart-data .sub-title-time {
    color: var(--color-main-super-dark);
    font-weight: normal;
    letter-spacing: 1px;
    padding: 5px 10px;
    margin-left: -3px;
    border: 1px solid #cccccc;
    background: #f8f8f8;
    border-radius: 5px;
    display: inline-block;
    text-transform: lowercase;
    margin-top: 20px;
    margin-bottom: 10px;
}

.cart-data .description {
    font-size: 14px;
}

.cart-data .quantity {
    margin-left: 20px;
}

.cart-data .quantity select {
    height: 35px;
    width: 45px;
    text-align: center;
    font-size: 20px;
}

.cart-data .no {
    line-height: 35px;
    margin-left: 10px;
}


.cart-list .price {
    font-size: 25px;
    line-height: 35px;
    font-weight: 500;
    color: var(--color-main-dark);
}

.cart-data .order-info {
    background: var(--color-main-brigth-ultra);
    padding: 10px 10px 20px 10px;
}

.cart-list input[type="radio"] {
    transform: scale(1.5);
    margin-right: 10px;
    accent-color: var(--color-main);
}

.payment-methods img {
    border-radius: 5px;
    background: #FFFFFF;
}

.order-info .total-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: var(--color-main);
}

.order-info .total-price {
    font-size: 30px;
    text-align: center;
    color: #000000;
    font-weight: 500;
}

.order-info .profile-submit {
    max-width: 200px !important;
    text-align: center;
    margin-top: 20px;
    display: block;
    text-decoration: none;
}

.invoice-data .row {
    margin-top: 20px !important;
}

.invoice-data .row label {
    display: block;
    margin-top: 10px;
    color: var(--color-main);
    font-weight: bold;
}

.invoice-data input {
    outline: none !important;
}

.invoice-data .row label.required:after {
    content: '*';
    margin-left: 4px;
    color: #c80707;
}

.general-invoice.added .required:after {
    display: none !important;
}

.general-invoice.added input {
    border: 0 !important;
    pointer-events: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.general-invoice .change-data {
    display: none;
}

.general-invoice.added .change-data {
    display: block;
}

.general-invoice.added .profile-submit {
    display: none;
}

.general-invoice.added label {
    border: 0 !important;
    pointer-events: none !important;
    background: transparent !important;
}

.invoice-data .row input:not([type="checkbox"]) {
    display: block;
    width: 100%;
    max-width: 300px;
    margin-top: 5px;
    height: 25px;
    padding: 5px;
    border: 1px solid #888888;
}

.invoice-data .row input[type="checkbox"] {
    transform: scale(1.4);
    margin-right: 10px;
    accent-color: var(--color-main);
}

.invoice-data.disabled {
    display: none;
}

.no-padding {
    padding: 0 !important;
}

.profile-row {
    padding-left: 50px;
    position: relative;
}

.profile-row label {
    color: var(--color-main);
    display: block;
    width: 150px;
    line-height: 35px;
}

.profile-row .input-row {
    width: calc(100% - 150px);
}

.profile-row input {
    border: 0;
    border-bottom: 1px solid var(--color-main) !important;
    outline: none;
    display: block;
    width: 100%;
    height: 35px;
    background: transparent;
    font-size: 16px;
    color: #000000;
    pointer-events: none;
    transition: all 0.3s;
}

.profile-row .edit-profile {
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
}

.unlock {
    pointer-events: auto !important;
    background: #f9f9f9 !important;
}

.profile-submit, .change-data {
    background: var(--color-main);
    color: #FFFFFF;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    max-width: 220px;
    margin: 0 auto;
    text-decoration: none;
    border: 0;
}

.profile-submit.align-left, .change-data.align-left {
    margin-left: 0;
}

.profile-submit.gradient,
.change-data.gradient {
    background: linear-gradient(var(--color-main-middle-dark), var(--color-main-super-dark));
}

.profile-submit:hover,
.change-data:hover {
    opacity: 0.8;
}

.change-data {
    max-width: 220px;
}

.inactive {
    pointer-events: none;
}

.ready input {
    background: rgb(240, 255, 240);
}

.ready .la {
    color: #00aa00;
}

.tabs-panel {
    width: 100%;
    display: flex;
}

.tab-button {
    width: calc(100% / 4);
    text-align: center;
    height: 50px;
    line-height: 50px;
    background: var(--color-main-super-dark);
    color: #FFFFFF;
    text-transform: uppercase;
    cursor: pointer;
}

.tab-button.active {
    background: #f3f3f3;
    color: #000000;
    font-weight: 600;
    cursor: default;
}

.club-card {
    position: relative;
    width: 400px;
    height: 250px;
    margin: 0 auto;
    border: 1px solid var(--color-main-super-dark);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.56);
    background: linear-gradient(120deg, #FFFFFF, rgba(112, 97, 50, 0.42));
}

.club-card .top {
    width: 200px;
    height: 50px;
    top: 0;
    left: calc(50% - 100px);
    background: var(--color-main-dark);
    position: absolute;
    border-radius: 0 0 10px 10px;
}

.club-card .top img {
    width: 80%;
    display: block;
    margin: 10px auto 0;
}


.club-card .bottom {
    width: 200px;
    height: 50px;
    bottom: 0;
    left: calc(50% - 100px);
    background: var(--color-main-dark);
    position: absolute;
    border-radius: 10px 10px 0 0;
    color: #FFFFFF !important;
    text-align: center;
    line-height: 50px;
}

.club-card .bottom .font-bold {
    font-size: 18px;
}

.club-card-title {
    margin-top: 70px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-main);
    font-size: 15px;
}

.club-card-owner {
    text-align: center;
    margin-top: 30px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
}

.subscriptions {
    display: flex;
    width: 100%;
}

.header-subs {
    line-height: 60px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.subscriptions div:nth-child(1) .header-subs {
    color: #398739;
}

.subscriptions div:nth-child(2) .header-subs {
    color: coral;
}

.subscriptions div:nth-child(3) .header-subs {
    color: #d680b1;
}


.subscriptions div:nth-child(4) .header-subs {
    color: #00788e;
}


.body-subs {
    background: #f1f1f1 !important;
    padding: 20px;
}


.body-subs.selected {
    background: #FFFFFF !important;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
    border-radius: 5px;
    border: 1px solid var(--color-main);
}

.body-subs .price {
    text-align: center;
    font-size: 30px;
}

.body-subs .months {
    text-align: center;
    font-size: 20px;
    color: var(--color-main-dark);
    font-weight: 500;
}

.body-subs .text {
    height: 135px;
    font-size: 14px;
    overflow-y: hidden;
    margin-bottom: 20px;
}

.subscribe-selected .title, .subscribe-active {
    line-height: 60px;
    text-align: center;
    color: var(--color-main);
    font-weight: bold;
    text-transform: uppercase;
}

.subscribe-selected-option {
    color: #000000;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
    display: block;
    cursor: pointer !important;
}

.subscribe-selected-option:hover {
    color: var(--color-main) !important;
}

.remove-from-cart {
    color: #000000;
    line-height: 15px;
    text-decoration: none;
    display: flex;
    cursor: pointer !important;
    font-size: 14px;
}

.remove-from-cart i {
    margin-right: 5px;
}

.remove-from-cart:hover {
    color: darkred;
}

.subscribe-active {
    color: #188ebe;
    display: none;
}


.subscribe-selected, .subscription-button {
    display: none;
}

.visible-option {
    display: block !important;
}


/*region Cart */

.order-steps {
    width: 100%;
}

.order-steps .step {
    text-align: center;
    border-top: 6px solid var(--color-main-brigth-ultra-2);
    margin: 7px;
    padding-top: 10px;
}

.order-steps .step.active {
    border-top: 6px solid var(--color-main);
}

.no-cart-data {
    font-size: 22px !important;
    color: var(--color-main-dark);
    text-align: center;
    display: none;
    font-weight: normal;
    margin-top: 30px;
}

.no-cart-data.show {
    display: block;
}

.sub-text {
    font-size: 15px;
}

/*endregion*/

/*region Booking panel */
.booking-panel {
    padding-top: 25px;
    padding-bottom: 25px !important;
    height: auto !important;
}

.booking-panel .title {
    text-align: center;
    font-size: 25px;
    color: var(--color-main);
    text-transform: uppercase;
    font-weight: bold;
}

.select-time {
    position: relative;
    margin: 10px;
    width: calc(50% - 20px);
}

.select-time select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 15px;
    border: 1px solid var(--color-main-dark);
    display: block;
    outline: none !important;
    background: #FFFFFF;
    border-radius: 4px;
    color: var(--color-main-super-dark) !important;
}

.select-time .la {
    position: absolute;
    font-size: 30px;
    right: 5px;
    top: 10px;
    color: var(--color-main-dark);
}

.ticket-row {
    width: 820px;
    margin: 0 auto;
}

.ticket-row.header div {
    width: 200px;
    font-weight: bold;
    padding: 0 15px;
}

.ticket-row.ticket {
    width: 800px;
    height: 45px;
    border: 1px solid var(--color-main);
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 35px;
    background: #FFFFFF;
}


.ticket-row.ticket:last-child {
    margin-bottom: 0 !important;
}

.ticket-row.ticket div {
    width: 200px;
    padding: 15px;
}

.ticket-row.ticket div.no-padding {
    padding: 0 !important;
}

.ticket-row .counter {
    display: block;
    padding: 0 !important;
    height: 36px !important;
    width: 36px !important;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    font-weight: bold;
    text-align: center;
    line-height: 38px;
    margin: 3px;

}

.ticket-row .counter-btn {
    display: block;
    padding: 0 !important;
    height: 38px !important;
    width: 38px !important;
    background: var(--color-main);
    color: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 38px;
    margin-top: 3px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ticket-row .counter-btn:hover {
    opacity: 0.9;
}

.ticket-row.total {
    width: 800px;
    border-top: 2px solid var(--color-main-super-dark);
    padding-top: 10px;
    margin-top: -15px !important;
}

.ticket-row.total * {
    font-size: 18px;
}

.booking-panel .pay-btn {
    color: #FFFFFF;
    background: var(--color-main);
    width: 100px;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}

.booking-panel .pay-btn:hover {
    opacity: 0.9;
}

/*endregion*/


.password-change-form {
    background: #FFFFFF;
    padding: 20px 50px 10px 20px;
    margin-left: 30px;
    margin-top: 20px;
    border: 1px solid var(--color-main-dark);
    position: relative;
    display: none;
}

.password-change-form.open {
    display: block;
}

.password-change-form .close:after {
    cursor: pointer;
    content: '✕';
    top: -1px;
    right: -1px;
    position: absolute;
    height: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    border: 1px solid var(--color-main-dark);
}
.password-change-form .close:after:hover {
    background: #f1f1f1;
}
.password-change-form .profile-row {
    padding-left: 0 !important;
    margin-bottom: 10px;
}
.password-change-form input {
    pointer-events: auto !important;
    border-bottom: 1px solid #cccccc !important;
    background: #f5f5f5;
    border-radius: 3px;
    padding-left: 10px;

}
.vertical-space {
    transform: translateY(15px);
    display: inline-block;
    width: auto !important;
    white-space: nowrap;
    max-width: none !important;
}


/*** new design ***/

.box-greed-element {
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: block;
    width: calc(100%/4 - 25px);
    margin: 10px;
    border: 1px solid #cccccc;
}
