:root {
    --clr-red: #c30000;
    --clr-black: #242424;
    --clr-gray1: #bebebe;
    --clr-gray2: #e8e8e8;
    --screen: 0 calc(135/1366 * 100vw);
}

body {
    font-size: 0.8rem;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    color: var(--clr-black);
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* HEADER */
.header-with-steps {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 60px;
    border: none;
    border-bottom: 1px solid #ddd;
    background-color: white;
    font-family: Roboto, sans-serif;
    position: relative;
    z-index: 101;
}

.header-with-steps .logo-section svg {
    width: 40.98px;
    height: auto;
}

.header-with-steps .header-steps-section .step-name-list {
    width: 100%;
    display: flex;
    column-gap: 20px;
    margin: 0;
    padding: 0;
    padding-left: 8px;
}

.header-with-steps .header-steps-section .step-name-list .step-name {
    list-style-position: inside;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #BEBEBE;
}

.header-with-steps .header-steps-section .step-name-list .step-name.steps-progress-item.step-complete {
    cursor: pointer;
}

.header-with-steps .header-steps-section .step-name-list .step-name.steps-progress-item.step-complete.step-finished {
    cursor: default;
}

.header-with-steps .header-steps-section .step-name-list .step-name.current-step {
    font-weight: 500;
    color: #242424;
}

.header-with-steps .header-steps-section .step-name-list .step-name .steps-progress-item-wrapper {
    display: none;
}

.header-with-steps .header-steps-section .step-name-list .step-name.current-step .steps-progress-item-wrapper {
    display: inline;
}


.header-with-steps .header-icons-section {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.header-with-steps .header-icons-section .header-contact {
    display: none;
}

.header-with-steps .header-icons-section .icon-wrapper a {
    width: 23.48px;
    height: 24px;
    display: flex;
    align-items: center;
}

.header-with-steps .header-icons-section .icon-wrapper a svg {
    width: 23.48px;
    height: 24px;
    fill: none;
    stroke: #c30000;
    stroke-linejoin: round;
    stroke-width: 2px;
}


.header-with-steps .header-icons-section .icon-wrapper:hover a svg .cls-1 {
    fill: #c30000;
}

/*********LOGGED MEMBER***************/
.header-with-steps .header-icons-section .logged-member {
    display: flex;
    gap: 20px;
}

.header-with-steps .header-icons-section .profile-img {
    position: relative;
    height: 24px;
    width: 24px;
    display: flex;
    cursor: pointer;
}

.header-with-steps .header-icons-section .profile-img label {
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    height: 20px;
    width: 20px;
    margin: 0;
    border: 2px solid #c30000;
    box-sizing: content-box;
    cursor: pointer;
}

.header-with-steps .header-icons-section .profile-img label img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.header-with-steps .header-icons-section .profile-img .icon-red-notification {
    position: absolute;
    font-family: 'Roboto', sans-serif !important;
    font-size: 10px;
    line-height: 13px;
    font-weight: bold;
    background-color: #c30000;
    color: white;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -11px;
    width: 16px;
    height: 16px;
}

.header-with-steps .header-icons-section .shopping-bag-icon {
    position: relative;
    height: 24px;
    cursor: pointer;
    transition: transform 200ms ease-in-out;
}

.header-with-steps .header-icons-section .shopping-bag-icon .icon-hover {
    position: absolute;
    display: grid;
    place-items: center;
    inset: 0;
    z-index: 10;
    clip-path: path('M2 7h16v15H2z');
}

.header-with-steps .header-icons-section .shopping-bag-icon .icon-hover .nr-items {
    color: #c30000;
    font-size: 10px;
    font-weight: bold;
    line-height: 13px;
    padding-top: 6px;
    z-index: 100;
    transition: color 250ms ease-in-out;
    font-family: 'Roboto';
}

.header-with-steps .header-icons-section .shopping-bag-icon:hover .icon-hover .nr-items {
    color: white;
}

.header-with-steps .header-icons-section .shopping-bag-icon .icon-hover .fill {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #c30000;
    transform: translateY(100%);
    transition: transform 250ms ease-in-out;
}

.header-with-steps .header-icons-section .shopping-bag-icon:hover .icon-hover .fill {
    transform: translateY(0);
}

/*********END LOGGED MEMBER***************/

/* Profile Modal */
.profile-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    right: 0;
}

.profile-modal.open {
    transform: translateX(0);
    pointer-events: all;
}

.profile-modal.scrolled {
    height: 100vh;
    top: 0;

}

.profile-modal {
    width: 100vw;
    height: calc(100vh - 60px);
    padding: 56px 15px 15px;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 0px;
    z-index: 1;
    transform: translateX(100%);
    transition: all 600ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    box-shadow: 0 3px 6px rgb(0 0 0 / 5%);
}

.profile-modal .header {
    padding-bottom: 19px;
    border-bottom: 1px solid #F4F4F4;
}

.profile-modal .header h2,
.profile-modal .header p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    white-space: nowrap;
}

.profile-modal nav {
    width: 100%;
    padding: 20px 0 24px;
    border-bottom: 1px solid #F4F4F4;
}

.profile-modal nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 17px;
    list-style-type: none;
    margin: 0;
}

.profile-modal nav ul li,
.profile-modal a {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #242424;
}

.profile-modal a:hover {
    color: #c30000;
}

.profile-modal a u:hover {
    color: #c30000;
}

.profile-modal .footer {
    padding: 0;
    padding-top: 15px;
    font-size: 14px;
}

/* END of Profile Modal */

/* BODY */
.main-content {
    display: flex;
    flex-direction: row;
    margin: var(--screen);
    font-size: 0.75rem;
}

/* FORMS */
.form-block, .final-message {
    display: flex;
    flex-direction: column;
}

.form-block .final-message.error-message {
    text-align: center;
    padding-right: 0;
}

.form-block .title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 19px;
}

.form-block .text {
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 15px;
    margin-bottom: 40px;
    border: none;
    border-bottom: 1px solid #E8E8E8;
}

#newSocioPopup .text.big {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}

.form-block .text a {
    color: var(--clr-red);
    text-decoration: underline;
}

.form-block form {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-block .input-top-label {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 10px;
    position: relative;
}

.form-block .input-top-label label {
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 4px;
}

.form-block .input-top-label .important {}

.form-block .input-top-label.bottom-end {
    margin-bottom: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E8E8E8;
}

.form-block .client-info {
    margin-bottom: 20px;
}

.form-block .client-info p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
}

.client-info .red-pass-choice {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.red-pass-choice.disabled {
    opacity: 0.5;
}

.red-pass-choice p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.form-block .choice {
    padding: 20px;
    border: 1px solid #E8E8E8;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    margin-bottom: 10px;
    height: 420px;
}

.form-block .choice .choice-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin: 0;
    margin-bottom: 20px;
    padding: 0;
    font-family: "Roboto", sans-serif;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.form-block .choice .choice-title .arrow {
   font-size: 7px;
}

.form-block form input[type="text"] {
    padding: 1rem;
    font-size: 1.2rem;
    border: 1px var(--clr-gray1) solid;
    font-family: "Roboto", sans-serif;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 50px;
}

.form-block form input[type="text"]:invalid {
    border-color: var(--clr-red);
}

.form-block form input[type="text"]:invalid+label {
    color: var(--clr-red);
}

.form-block form input[type=text]:focus {
    outline: none;
    border-color: var(--clr-black);
}

.form-block form input[type=text]:focus+label {
    color: var(--clr-black);
}

.form-block form input[type="number"] {
    padding: 1rem;
    font-size: 1.2rem;
    border: 1px var(--clr-gray1) solid;
    font-family: "Roboto", sans-serif;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 50px;
}

.form-block form input[type="number"]:invalid {
    border-color: var(--clr-red);
}

.form-block form input[type="number"]:invalid+label {
    color: var(--clr-red);
}

.form-block form input[type=number]:focus {
    outline: none;
    border-color: var(--clr-black);
}

.form-block form input[type=number]:focus+label {
    color: var(--clr-black);
}

.form-block form select {
    border-style: solid;
    border-color: var(--clr-gray1);
    border-width: 1px;
    font-size: 1.1rem;
    padding: 0.2rem;
    font-family: 'Roboto Condensed', sans-serif;
    transition: border-color .2s ease;
    height: 50px;
}

.form-block form select:focus {
    outline: none;
    border-color: var(--clr-black);
}

.form-block form select:invalid {
    border-color: var(--clr-red);
}

.form-block form select:invalid+label {
    color: var(--clr-red);
}

.form-block form select:disabled+label {
    /* color: var(--clr-red); */
}

.form-block form input[type="submit"],
.popUpMessage input[type="submit"], button[type="button"]{
    text-align: center;
    margin-top: 20px;
    width: 100%;
    border: none;
    background-size: 100% 200%;
    background-image: linear-gradient(to top, var(--clr-red) 50%, var(--clr-black) 0);
    background-position: top;
    transition: background-position 0.5s;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    height: 50px;
}

.form-block form input[type="submit"]:hover,
.popUpMessage input[type="submit"]:hover {
    background-position: bottom;
    cursor: pointer;
}

button[type="button"]:hover,
.popUpMessage button[type="button"]:hover {
    background-position: bottom;
    cursor: pointer;
}

.form-block form .not-active {
    opacity: 0.35;
    pointer-events: none;
}

.form-block form .choice-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-block form .choice-input.option-group {

}

.form-block form .choice-input .radio-inputs {
    display: flex;
    flex-direction: column;
    height: 200px;
}

.popUpMessage .radio-inputs {
    overflow-y: overlay;
    height: 100px;
}

.popUpMessage .radio-inputs .selected-option {
    margin-top: 10px;
}

.delete-member {
    margin-left: auto;
    width: 20px;
    height: 20px;
    align-self: center;
    text-align: center;
    padding: 0;
    background: none;
    color: black;
    border: 0;
    transition: color 0.5s;
}

.delete-member:hover {
    color: var(--clr-red);
    cursor: pointer;
}

.mandatory-disclaimer {
    display: block;
    margin-top: 1.2rem;
    font-size: 0.6rem;
}

.form-block form .choice-input .radio-inputs .radio-input {
    display: flex;
    align-items: center;
}

.form-block form .choice-input.text-group .input-top-label {
    width: 30%;
}

.form-block form .choice-input.option-group .input-top-label {
    width: 50%;
}

.info-section {
    display: initial;
    padding-left: calc(68.5/1366 * 100vw);
    padding-bottom: 60px;
}

.action-resume {
    display: block !important;
    width: 100vw;
    background-color: #F4F4F4;
}

.action-resume.fixed {
    position: fixed;
}

.resume-wrapper {
    display: flex;
    column-gap: 10px;
    padding: 21px 20px 19px 15px;
    opacity: 1;
    margin-top: 0;
    transition: margin-top 250ms ease-in-out, opacity 100ms ease-in-out 150ms;
}

.resume-wrapper .text-wrapper .title {
    margin: 0;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
}

.resume-wrapper .text-wrapper .sub-title {
    font-family: Roboto, sans-serif !important;
    margin: 0;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 18px;
    color: #888888;
    text-transform: uppercase;
}

.selected-options {
    color: #888888;
}

.resume-wrapper .text-wrapper h3 {
    font-family: "Roboto Condensed", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #242424;
    text-transform: none;
    text-align: left;
    padding-bottom: 5px;
    margin: 0;
    margin-top: 35px;
}

.action-resume .resume-wrapper .text-wrapper .nr-option {
    margin: 0;
    margin-bottom: 9px;
}

.action-resume .resume-wrapper .text-wrapper .nr-option p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}

.radio-input {
    position: relative;
}

.radio-input input[type='radio'] {
    display: none;
}

.radio-input label:before {
    content: " ";
    display: inline-block;
    position: relative;
    top: 3px;
    margin: 0 10px 0 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--clr-gray1);
    background-color: transparent;
}

.radio-input input[type=radio]:checked+label:after {
    border-radius: 15px;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 16px;
    left: 5px;
    content: " ";
    display: block;
    background: var(--clr-black);
}



.form-block form .choice-input.option-group .radio-label {
    margin: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.form-block form .choice-input.option-group .radio-label:hover {
    cursor: pointer;
}

.form-block p {
    margin: 0 0 10px;
}

.form-block p .important {}

.divider {
    width: 100%;
    padding: 1px;
    background-color: var(--clr-gray2);
    margin: 3rem 0;
}

.divider.first-one {
    margin: 1rem 0;
}

.form-block .current-choice {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
}

.form-block .current-choice .title {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.form-block .current-choice .selected {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
}

.form-block .current-choice span {
    margin: 0.1rem 0;
}

.form-block form .extra-members-title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
}

.form-block form .extra-members-added {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-block form #addMember {
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--clr-gray1);
    font-size: 0.875rem;
    padding: 1rem;
}

.form-block form #addMember:hover {
    cursor: pointer;
}

.form-block textarea {
    resize: none;
    padding: 1rem;
    height: 100px;
    font-size: 1.2rem;
    border: 1px var(--clr-gray1) solid;
    font-family: "Roboto", sans-serif;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-block textarea:focus {
    outline: none;
    border-color: var(--clr-black);
}

.form-block .choice.hide {
    height: 64px;
    overflow: hidden;
}

.form-block .choice .choice-title .memberButton {
    padding: 0.5rem;
}

.form-block .choice .choice-title .memberButton:hover {
    cursor: pointer;
}

.form-block form input[type="checkbox"] {}

input[type="checkbox"]:checked {}

.form-block form .extra-members-checkbox,
.popUpMessage .extra-members-checkbox,
.red-pass-choice {
    display: inline-flex;
    position: relative;
    align-items: flex-start;
}

.popUpMessage .extra-members-checkbox {
    align-items: center;
}

.form-block form .extra-members-checkbox>label,
.popUpMessage .extra-members-checkbox>label {
    
}

.form-block form .extra-members-checkbox>input,
.popUpMessage .extra-members-checkbox>input,
.red-pass-choice>input {
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid var(--clr-gray1);
    outline: none;
    transition-duration: 0.2s;
    background-color: white;
    cursor: pointer;
    margin-right: 10px;
}

.form-block form .extra-members-checkbox>input:checked,
.popUpMessage .extra-members-checkbox>input:checked,
.red-pass-choice>input:checked{
    border: 1px solid var(--clr-black);
    background-color: #242424;
}

.form-block form .extra-members-checkbox>input:checked+label::before,
.popUpMessage .extra-members-checkbox>input:checked+label::before,
.red-pass-choice>input:checked+label::before {
    content: url('data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="12.149px" height="8.78px" viewBox="0 0 12.149 8.78" enable-background="new 0 0 12.149 8.78" xml:space="preserve"%3E%3Cpolyline fill="none" stroke="%23FFFFFF" stroke-width="1.681" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points=" 0.84,4.691 4.203,7.939 11.309,0.84 " /%3E%3C/svg%3E');
    display: flex;
    position: absolute;
    left: 8px;
    top: 8px;
    cursor: pointer;
}

.form-block form .extra-members-checkbox>input:active,
.popUpMessage .extra-members-checkbox>input:active,
.red-pass-choice>input:active{
    border: 2px solid var(--clr-gray1);
}

#extraMembersDiv input[type=checkbox] {
    display: none;
}

#extraMembersDiv label::before {
    display: none;
}

#extraMembersDiv .selected-option {
    width: 100%;
}

#extraMembersDiv .extra-members-checkbox {
   width: 100%;
   justify-content: space-between;
   margin-bottom: 15px;
}

.form-block form .disclaimer {
    font-size: 0.6875rem;
    margin: 1rem 0;
    font-family: "Roboto Condensed", Arial, sans-serif;
}

.form-block form a {
    color: var(--clr-red);
    text-decoration: underline;
}

.form-block form .disclaimer .important {}

.adjacent-seats {
    background-color: #F4F4F4;
    padding: 20px;
    margin-top: 20px;
}

.adjacent-seats p:first-child {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    text-transform: none;
}

.adjacent-seats p:last-child {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 18px;
    text-transform: none;
}

/** MAP POP UP **/
#mapPopUp {
    position: fixed;
    inset: 0;
    background-color: rgba(36,36,36,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 102;
}

#mapPopUp img {
    max-height: calc((345 / 375) * 100vw);
    transform: rotateZ(90deg);
    z-index: 10;
}

#closePopUp {
    position: absolute;
    top: 120px;
    right: 15px;
    cursor: pointer;
    z-index: 100;
    width: 24px;
    height: 24px;
    transition: transform 300ms ease-in-out;
}

#closePopUp:hover {
    transform: rotateZ(90deg);
}

#closePopUp:hover .line {
    background-color: #c30000;
}

#closePopUp .line {
    width: 28px;
    height: 2px;
    position: absolute;
    top: 50%;
    background-color: #242424;
    
}

#closePopUp .line:first-of-type {
    transform: rotateZ(45deg);
}

#closePopUp .line:last-of-type {
    transform: rotateZ(-45deg);
}

#mapButton:hover {
    cursor: pointer;
}

#closePopUp:hover {
    cursor: pointer;
}

/* SAFETY DISCLAIMERS */
.safety-disclaimers {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
    padding: var(--screen);
    margin-top: auto;
    height: 74px;
}

.safety-disclaimers .disclaimer {
    display: flex;
    align-items: center;
}

.safety-disclaimers .disclaimer img {
    width: 24px;
    margin: 24px;
}

.safety-disclaimers,
.safety-disclaimers a {
    color: black;
    text-decoration: underline;
}

.final-message .title {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 36.5px;
}

.final-message .text {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 28.5px;
}

.final-message #finishButton {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    border: none;
    background-size: 100% 200%;
    background-image: linear-gradient(to top, var(--clr-red) 50%, var(--clr-black) 0);
    background-position: top;
    transition: background-position 0.5s;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    height: 50px;
}

.final-message #finishButton:hover {
    background-position: bottom;
    cursor: pointer;
}

/* FOOTER */

.footer-2021 {
    width: 100%;
}

.footer-2021.store-2022 .upper-footer {
    flex-direction: column;
    row-gap: 30px;
}

.footer-2021 .upper-footer {
    display: flex;
    padding: 23px calc((15 / 375) * 100vw) 50px;
    border: none;
    border-bottom: 1px solid #ddd;
}

.grey-footer {
    /*height: 113px;*/
    width: 100%;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    padding-left: 24px;
}

.grey-footer .item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.grey-footer .item:first-of-type {
    margin-bottom: 25px;
}

.grey-footer .item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.grey-footer .item p,
.grey-footer .item a {
    font-family: roboto;
    font-size: 14px;
    line-height: 18px;
    color: #242424;
    margin: 0;
    margin-top: 5px;
}

.footer-2021 .lower-footer {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
}

.footer-2021 .lower-footer .language-selector {
    display: flex;
    align-items: center;
    margin-bottom: 29px;
}

.footer-2021 .lower-footer .language-selector .language-item {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #242424;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.footer-2021 .lower-footer .language-selector .language-item.selected,
.footer-2021 .lower-footer .language-selector .language-item:hover,
.footer-2021 .lower-footer .language-selector .language-item:focus {
    font-weight: bold;
    color: #c30000;
}

.footer-2021 .lower-footer .language-selector .language-item:not(:last-of-type) {
    margin-right: calc((18 / 375) * 100vw);
}

.footer-2021 .lower-footer .footer-links {
    display: flex;
    flex-flow: column;
    column-gap: min(calc((36 / 375) * 100vw), 50px);
    row-gap: 17px;
    align-items: flex-start;
    margin-bottom: 19px;
}

.footer-2021 .lower-footer .footer-links a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #242424;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.footer-2021 .lower-footer .footer-links a:hover,
.footer-2021 .lower-footer .footer-links a:focus {
    color: #c30000;
}


.footer-2021 .lower-footer .footer-copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #242424;
    margin: 0;
    padding: 0;
}

a {
    transition: 0.2s;
    color: black;
}

a:hover {
    color: var(--clr-red);
    font-weight: bold;
}

/* NEW SOCIO POPUP */
#newSocioPopup {
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

#newSocioPopup form {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 40px 125px;
    border: 1px solid var(--clr-gray1);
}

#newSocioPopup h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 29px;
    text-align: center;
}

#newSocioPopup .popUpMessage {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 40px 125px;
}

#newSocioPopup .popUpButton {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    border: none;
    background-size: 100% 200%;
    background-image: linear-gradient(to top, var(--clr-red) 50%, var(--clr-black) 0);
    background-position: top;
    transition: background-position 0.5s;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    height: 50px;
}

#newSocioPopup .popUpButton.not-active {
    opacity: 0.5;
    pointer-events: none;
}

#newSocioPopup img {
    width: 120px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

#newSocioPopup .newSocioPopupCancel {
    background-image: linear-gradient(to top, var(--clr-black) 50%, white 0);
    border: solid 1px #242424;
    color: #242424;
}

#newSocioPopup .newSocioPopupCancel:hover {
    color: white;
}

#newSocioPopup .newSocioPopUp-NameNumber {
    border: 1px solid #E8E8E8;
    padding: 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

#newSocioPopup .popUpButton:hover {
    background-position: bottom;
    cursor: pointer;
}

#newSocioPopup .memberInfo {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
}

#newSocioPopup .seat-inputs {
    display: flex;
    flex-direction: column;
}

#newSocioPopup .seat-input {
    display: flex;
    align-items: center;
}

#newSocioPopup .radio-label {
    margin: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

#newSocioPopupChooseSeatForm {
    position: relative;
}

#loadingScreen {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    /*background-color: rgba(61, 61, 61, 0.95);*/
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
}

.selected-group {
    margin: 0.2rem 0;
    padding: 1rem;
    border: 1px var(--clr-gray2) solid;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.selected-group .selected-title {
    font-weight: bold;
    font-size: 1.3rem;
    padding-bottom: 0.5rem;
}

.selected-group .selected-title:not(:first-child) {
    margin-top: 40px !important;
}

.selected-option p {
    margin: 0;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
}

.selected-group .selected-subtext {
    font-size: 0.8rem;
    color: #cdcdcd;
    font-weight: normal;
}

.error-message {
    color: var(--clr-red);
    text-align: left;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

/* MOBILE AND OTHER RESOLUTIONS */
@media (min-width: 768px) {
    :root {
        --screen: 0 calc(135/1366 * 100vw);
    }

    .final-message .text {
        margin-bottom: 30px;
    }

    #mapPopUp img {
        max-height: unset;
        transform: rotateZ(0);
    }

    #closePopUp {
        top: 95px;
        right: 25px;
    }

    .header-with-steps {
        padding: 0 24px;
        height: 70px;
    }

    .header-with-steps .logo-section img {
        width: 40px;
    }

    .header-with-steps .header-steps-section .step-name-list {
        padding-left: 20px;
    }

    .header-with-steps .header-icons-section {
        display: flex;
        align-items: center;
        column-gap: 30px;
    }

    .header-with-steps .header-icons-section .header-contact {
        display: initial;
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
        margin: 0;
        padding: 0;
        color: #242424;
    }

    .header-with-steps .header-steps-section .step-name-list .step-name .steps-progress-item-wrapper {
        display: inline;
    }

    /* Profile Modal */
    .profile-modal.open {
        transform: translateX(0);
    }

    .profile-modal.open {
        opacity: 1;
    }

    .profile-modal.scrolled {
        height: auto;
    }

    .profile-modal {
        opacity: 0;
        top: 70px;
    }

    .header .profile-modal {
        top: 110px;
    }

    .profile-modal.store {
        padding: 30px 30px 20px 30px;
    }

    .header.fixed .profile-modal {
        top: 71px;
    }

    .profile-modal {
        width: clamp(277px, calc((277 / 1366) * 100vw), 325px);
        height: auto;
        padding: 25px 21px 20px 30px;
        right: 0;
        transition: all 600ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
        z-index: 1001;
    }

    .profile-modal .header {
        padding-bottom: 14px;
    }

    .profile-modal nav {
        padding: 20px 0;
    }

    .profile-modal .footer {
        padding-top: 19px;
    }

    /* END of Profile Modal */

    .form-block, .final-message {
        min-width: calc((604.5 / 1366) * 100vw);
        max-width: calc((604.5 / 1366) * 100vw);
        margin-top: 40px;
        margin-bottom: 66.5px;
        padding: 0;
        padding-right: calc(68.5/1366 * 100vw);
        border-right: 1px solid #E8E8E8;
        min-height: calc(100vh - 181px - 70px - 42.5px - 66.5px);
    }

    .form-block .text {
        font-size: 14px;
        line-height: 18px;
        padding-bottom: 29px;
        margin-bottom: 30px;
    }

    .form-block .choice .choice-title {
        margin-bottom: 19px !important;
    }

    .info-section {
        display: initial;
        padding-left: calc(68.5/1366 * 100vw);
        padding-bottom: 60px;
    }
    
    .action-resume {
        width: 100%;
        min-width: calc((423 / 1366) * 100vw);
        margin: 0;
        margin-top: 42.5px;
    }

    .action-resume.fixed {
        top: -20px;
        max-width: calc((423 / 1366) * 100vw);
    }
    
    .form-block .input-top-label.bottom-end {
        margin-bottom: 32px;
        padding-bottom: 30px;
    }

    .resume-wrapper {
        padding: 22px 35px 25px 15px;
    }

    .resume-wrapper .text-wrapper .title {
        margin-bottom: 7px;
    }

    .info-message-wrapper {
        width: 100%;
        display: flex !important;
        padding-top: 56px;
    }

    .info-message-wrapper .info-message {
        color: #BEBEBE;
        font-size: 14px;
        line-height: 18px;
        margin-left: 12px;
    }

    .info-message-wrapper .icon-wrapper img {
        width: 24px;
        height: 24px;
    }

    #newSocioPopup .newSocioPopUp-NameNumber {
        width: calc(622/1366 * 100vw);
    }

    #newSocioPopup .text.big {
        padding-bottom: 30px;
    }

    /* FOOTER */
    .footer-2021 .grey-footer {
        align-items: center;
        justify-content: flex-start;
        padding: 0 50px;
    }

    .footer-2021.store-2022 .upper-footer {
        flex-direction: row;
    }

    .footer-2021 .upper-footer {
        padding: 50px 0 63px;
    }

    .grey-footer {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 50px;
    }

    .grey-footer .item:first-of-type {
        margin-bottom: 0;
        margin-right: 100px;
    }

    .footer-2021 .lower-footer {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        row-gap: 19px;
        padding: 50px;
    }

    .footer-2021 .lower-footer .language-selector {
        margin-right: calc((30 / 1366) * 100vw);
        margin-bottom: 0;
    }

    .footer-2021 .lower-footer .language-selector .language-item:not(:last-of-type) {
        margin-right: calc((10 / 1366) * 100vw);
    }

    .footer-2021 .lower-footer .footer-links {
        flex-grow: 2;
        margin-right: calc((30 / 1366) * 100vw);
        margin-bottom: 0;
        flex-flow: row;
        column-gap: 20px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 510px) {
    :root {
        --screen: 1rem 2rem;
    }

    .main-content {
        flex-direction: column;
    }
    
    .info-section {
        padding-left: 0;
    }
    
    .icon-wrapper {
        text-align: center;
        margin-bottom: 10px;
    }

    .icon-wrapper img {
        width: 10%;
    }

    .action-resume.fixed {
        position: static;
    }

    .action-resume {
        width: 100%;
    }
    

    .form-block form {
        width: 100%;
    }

    .form-block .choice {
        flex-direction: column;
        max-height: 1000px;
        height: 800px;
    }

    .form-block form .choice-input {
        flex-direction: column;
    }

    .form-block form .choice-input.option-group .input-top-label {
        width: 100%;
    }

    .form-block form .choice-input.text-group .input-top-label {
        width: 100%;
    }

}