﻿
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

/* Text */
h1, h2, h3, p, a {
    font-family: Roboto, sans-serif;
    color: #242424;
}

    a:hover {
        color: #c30000;
        text-decoration: none;
    }

.red {
    color: #c30000;
}

.grey {
    color: #888888;
}

.uppercase {
    text-transform: uppercase;
}
/* END of Text */

.container-fluid {
    max-width: 1600px;
    padding-left: 0;
    padding-right: 0;
}

.desktop-only {
    display: none;
}

/* Price tables */
.price-table .price-table-line {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .price-table .price-table-line.total {
        font-weight: bold;
    }

    .price-table .price-table-line:not(:last-child) {
        margin-bottom: 7px;
    }

    .price-table .price-table-line p:first-child {
        font-size: 14px;
        line-height: 17px;
        margin: 0;
    }

    .price-table .price-table-line p:last-child {
        font-size: 16px;
        line-height: 19px;
        margin: 0;
    }
/* END of Price tables */

/* Buttons */
.button-area .button.dark {
    margin-top: 40px;
    margin-bottom: 18px;
}
.button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    border: solid 1px #242424;
    height: 50px;
    font-family: Roboto;
    font-size: 18px;
    line-height: 18px;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    margin: 0;
    padding: 10px 30px;
    cursor: pointer;
    transition: color 250ms ease-in-out, border-color 250ms ease-in-out;
    z-index: 10;
}

    .button.no-fill {
        border: solid 1px #242424;
    }

    .button:before {
        background-color: #c30000;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-transform-origin: bottom center;
        transform-origin: bottom center;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transition: -webkit-transform 250ms ease-in-out;
        transition: -webkit-transform 250ms ease-in-out;
        transition: transform 250ms ease-in-out;
        transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
        z-index: 1;
    }

    .button > * {
        position: relative;
    }

    .button span {
        position: relative;
        z-index: 10;
        color: #242424;
        font-size: 18px;
        line-height: 22px;
    }

    .button > span {
        line-height: 1;
        text-decoration: none;
    }

    .button:hover {
        color: #ffffff;
    }

    .button.disabled,
    .button.disabled * {
        pointer-events: none !important;
    }

    .button.disabled {
        opacity: 0.35;
        display: flex;
    }

    .button.light {
        border: 1px solid #242424;
        margin: 40px 0 18px 0;
    }
        .button.light span {
            color: #242424;
        }

    .button.light::before {
        background-color: transparent;
    }

    .button.dark {
        border-color: transparent !important;
        background-color: #242424 !important;
        color: white !important;
        border: none;
    }
        .button.dark span{
            color: white !important;
        }

        .button.dark:hover {
            border-color: #C30000 !important;
        }

        .button.dark.invalid {
            background: #bebebe;
            border-color: #bebebe;
            cursor: default;
        }

            .button.dark.invalid:hover {
                background: #bebebe !important;
                border-color: #bebebe !important;
            }

            .button.dark.invalid:before {
                background-color: #bebebe !important;
            }

.link-button {
    display: block;
    position: relative;
    cursor: pointer;
    max-width: max-content;
}

a:hover p.link svg.arrow {
    transform: translateX(5px) !important;
    transition: transform 0.3s ease !important;
}

a:hover p.link.reversed svg.arrow {
    transform: translateX(-5px) scaleX(-1) !important;
    transition: transform 0.3s ease !important;
}

p.link {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #242424;
    line-height: 24px;
    text-decoration: none;
}

    p.link span {
        display: flex;
        align-items: center;
    }

    p.link svg.arrow {
        transform: translateX(0) !important;
        transition: transform 0.3s ease !important;
        stroke: #242424;
        stroke-width: 5px;
        width: 5px;
        height: 8px;
        fill: none;
        margin-left: 10px;
    }

    p.link.reversed span {
        flex-direction: row-reverse;
        justify-content: flex-end;
    }

    p.link.reversed svg.arrow {
        transform: scaleX(-1) !important;
        margin-left: 0;
        margin-right: 10px;
    }


/* END of Buttons */

.download-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .download-section p.title {
        margin: 0 !important;
    }

    .download-section a {
        color: #242424;
        font-size: 14px;
        font-weight: 400;
        line-height: 17px;
        margin: 0;
    }

        .download-section a:hover {
            color: #c30000;
        }

.two-side {
    display: flex;
    flex-direction: column-reverse;
}

    .two-side > *:first-child {
        padding: 20px 15px 0;
    }

.footer-2021 .grey-footer {
    margin: 0 !important;
}

/* Form Inputs */
/* remove default styling*/
.generic-form input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


.read-only input, .read-only label {
    color: #BEBEBE;
    pointer-events: none;
}
/*
.generic-form .form-textbox.read-only input {
    border: 1px solid rgb(190, 190, 190, 0.35);
}*/

    /*END  remove default styling*/
    .generic-form {
        color: #242424;
        margin-bottom: 60px !important;
    }

        .generic-form .title {
            font-size: 18px;
            font-weight: 500;
            line-height: 22px;
            margin: 0;
            margin-bottom: 9px;
            padding: 0;
            font-family: "Roboto", sans-serif;
        }

    .generic-form .small-title {
        font-size: 18px;
        font-weight: 500;
        line-height: 22px;
        margin: 0;
        margin-bottom: 20px;
    }

    /*Text boxes*/
    .generic-form .form-textbox {
        position: relative;
    }

        .generic-form .form-textbox:not(:last-of-type) {
            margin-bottom: 10px;
        }

    .generic-form .submit-button {
        position: relative;
    }

    .generic-form .form-textbox label {
        display: block;
        margin-bottom: 4px;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 17px;
        text-transform: uppercase;
    }
    .generic-form .form-textbox label span.max-75 {
        text-transform: none;
    }

    .generic-form .form-textbox input,
    .generic-form .form-textbox textarea {
        appearance: none;
        position: relative;
        font-size: 18px;
        font-weight: 400;
        line-height: 18px;
        width: 100%;
        max-height: 50px;
        padding: 15px 20px;
        border: 1px solid #BEBEBE;
    }

    .generic-form .form-textbox textarea {
        max-height: 110px;
    }

        .generic-form .form-textbox input:focus,
        .generic-form .form-textbox textarea:focus {
            outline: none;
            border: 1px solid #242424;
        }

    .generic-form .trio {
        display: flex;
        justify-content: space-between;
        gap: min(calc(10 / 375) * 100vw), 10px);
    }

        .generic-form .trio > .form-textbox {
            max-width: calc((108.33 / 345) * 100%) !important;
        }

            .generic-form .trio > .form-textbox.dual {
                column-gap: min(calc(10 / 375) * 100vw), 10px);
                max-width: calc((226.66 / 345) * 100%) !important;
            }

                .generic-form .trio > .form-textbox.dual input {
                    max-width: calc((108.33 / 226.66) * 100%) !important;
                }

    .generic-form .form-textbox.dual {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

        .generic-form .form-textbox.dual label {
            min-width: 100%;
        }

        .generic-form .form-textbox.dual input {
            display: block;
        }

    .generic-form .form-textbox.phone input:before {
        content: '+351';
        position: absolute;
        left: 0;
    }

    .generic-form .form-textbox.dual input:first-of-type {
        max-width: calc((226 / 345) * 100%);
    }

    .generic-form .form-textbox.dual input:last-of-type {
        max-width: calc((112 / 345) * 100%);
    }

    /* é necessário? */
    /*.generic-form .form-textbox .input-button {
    position: absolute;
    top: 50%;
    right: 20px;
    opacity: 100%;
    cursor: pointer;
}

    .generic-form .form-textbox .input-button.disabled {
        opacity: 35%;
        pointer-events: none;
        cursor: default;
    }*/

    .generic-form .error-msg,
    .generic-form .form-textbox p.error-msg {
        opacity: 0;
        transition: all 200ms ease-in-out;
        font-size: 11px;
        font-family: 'Roboto Condensed';
        font-weight: 400;
        line-height: 13px;
        color: #c30000;
        padding: 3px 0px 0px;
        position: absolute;
        right: 0;
        top: 100%;
        text-align: right;
        max-height: 0px;
        padding: 0;
    }

    .generic-form .check p.error-msg {
        text-align: left;
    }

    .generic-form.error .error-msg,
    .generic-form .form-textbox.error .error-msg,
    .generic-form .check.error .error-msg {
        opacity: 1;
        padding: 5px 0 0;
        max-height: 15px;
        transition: all 300ms ease-out;
    }

    .generic-form .form-textbox.error label {
        color: #c30000;
    }

    .generic-form .form-textbox.error input:not(.valid) {
        border-color: #c30000;
    }

    .generic-form .form-textbox.error input.valid {
        border-color: #BEBEBE;
    }

    .generic-form .duo-formtextbox {
        display: flex;
        gap: 20px;
    }
    /*END of Text Boxes*/

    /*Check Boxes*/
    .generic-form .checkboxes {
        margin: 10px 0 20px;
    }

        .generic-form .checkboxes.triple {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .generic-form .checkboxes .check:not(:last-of-type) {
            margin-bottom: 10px;
        }

        .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:not(:checked),
        .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:checked {
            display: none;
        }

            .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:not(:checked) + label,
            .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:checked + label {
                position: relative;
                padding-left: 30px;
                cursor: pointer;
                color: rgb(36, 36, 36);
                font-size: 14px;
                font-weight: 400;
                white-space: pre-wrap;
                margin: 0;
            }

                /* checkbox aspect */
                .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:not(:checked) + label:before,
                .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:checked + label:before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0px;
                    width: 20px;
                    height: 20px;
                    border: 1px solid #bbb;
                    background: #fff;
                    transition: all 200ms ease-in-out;
                }

                .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:checked + label:before {
                    background: #242424;
                    border: none;
                }

                /* checked mark aspect */
                .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:not(:checked) + label:after,
                .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:checked + label:after {
                    content: url("/images/iconCheckWhite.svg");
                    position: absolute;
                    top: 0px;
                    left: 0px;
                    width: 20px;
                    height: 20px;
                    text-align: center;
                    transition: all .2s;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                /* checked mark aspect changes */
                .generic-form .checkboxes input.slb-checkbox[type="checkbox"]:not(:checked) + label:after {
                    opacity: 0;
                    transform: scale(0);
                }
    /*END of Check Boxes*/

    /* Radio buttons*/
    .generic-form .radio-wrapper {
        margin: 0;
        margin-bottom: 19px;
    }

    .generic-form input.slb-radio[type="radio"] {
        display: none;
    }

        .generic-form input.slb-radio[type="radio"] + label {
            color: rgb(36,36,36);
            cursor: pointer;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 19px;
            display: flex;
            align-items: center;
            line-height: 22px;
        }

            .generic-form input.slb-radio[type="radio"] + label span.outer,
            .generic-form input.slb-radio[type="radio"] + label span.inner {
                display: inline-block;
                margin: -1px 4px 0 0;
                vertical-align: middle;
                -moz-border-radius: 50%;
                border-radius: 50%;
            }

            .generic-form input.slb-radio[type="radio"] + label span.outer {
                position: relative;
                width: 20px;
                height: 20px;
                margin: 0px 10px 0px 0px;
                cursor: pointer;
                border: solid 1px rgb(137,137,137);
                background-color: white;
            }

            .generic-form input.slb-radio[type="radio"] + label span.inner {
                width: 10px;
                height: 10px;
                background-color: white;
                position: absolute;
                top: 0;
                right: 0;
                left: 0;
                bottom: 0;
                margin: auto;
            }

        .generic-form input.slb-radio[type="radio"]:checked + label span.inner {
            background-color: #242424;
        }

        .generic-form input.slb-radio[type="radio"] + label span,
        .generic-form input.slb-radio[type="radio"]:checked + label span {
            -webkit-transition: background-color 0.2s linear;
            -o-transition: background-color 0.2s linear;
            -moz-transition: background-color 0.2s linear;
            transition: background-color 0.2s linear;
        }

        .generic-form input.slb-radio[type="radio"]:checked + label {
            margin-bottom: 7.5px;
        }

    .generic-form  .individual-payment-form.valid p {
        margin-bottom: 24px;
    }

    .generic-form .radio-option-label {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 12px;
        line-height: 17px;
        text-transform: uppercase;
        margin: 0;
        margin-bottom: 20px;
    }

    .generic-form .radio-meio span.imgs-pay {
        margin-right: 15px;
        display: flex;
        align-items: center;
    }

        .generic-form .radio-meio span.imgs-pay img:nth-of-type(2) {
            margin-left: 10px;
        }
    /* END Radio buttons*/

    .generic-form .required-fields-message {
        font-size: 11px;
        line-height: 16px;
        margin: 0;
        margin-bottom: 36px;
    }

    .generic-form .form-textbox .disclaimer {
        margin-top: 5px;
    }

    .generic-form .radio-wrapper.installments .disclaimer {
        margin-top: -10px;
        margin-bottom: 20px;
        padding-left: 80px;
    }

    .generic-form .disclaimer {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        margin: 0;
        position: relative;
    }

        .generic-form .disclaimer > p {
            margin-bottom: 18px;
        }

            .generic-form .disclaimer > p:last-of-type {
                margin-bottom: 24px;
            }

        .generic-form .disclaimer a {
            color: #c30000;
        }

        .generic-form .disclaimer a:hover {
            text-decoration: underline;
        }

        .generic-form .disclaimer .small {
            font-size: 11px;
            line-height: 13px;
        }

            .generic-form .disclaimer .small:not(:last-of-type) {
                margin-bottom: 10px;
            }

        .generic-form .disclaimer .flex {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-left: 14px;
        }

            .generic-form .disclaimer .flex p {
                margin: 0;
            }

        .generic-form .disclaimer svg.svg-cross {
            stroke: #242424;
            width: 8px;
            height: 8px;
            stroke-width: 5px;
            position: absolute;
            right: 0;
            top: 26%;
            transform: translateY(-50%);
        }

            .generic-form .disclaimer svg.svg-cross:hover {
                cursor: pointer;
                stroke: #c30000;
            }

        .generic-form .individual-payment-form.disabled {
            display: none;
        }

        /*Begin Dropdown input*/

    .generic-form .dropdown-menu::-webkit-scrollbar,
    .filter .options::-webkit-scrollbar {
        width: 16px;
    }

    .generic-form .dropdown-menu::-webkit-scrollbar-track,
    .filter .options::-webkit-scrollbar-track {
        border-radius: 5px;
        width: 10px;
        background-color: #ffffff;
    }

    .generic-form .dropdown-menu::-webkit-scrollbar-thumb,
    .filter .options::-webkit-scrollbar-thumb {
        background-color: #E8E8E8;
        border: 6px solid transparent;
        border-radius: 40px;
        background-clip: content-box;
    }

    .generic-form .form-textbox.form-drop.active {
        z-index: 999;
    }

    .generic-form .form-textbox .dropdown {
        display: flex;
        border: 1px solid #BEBEBE;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        /*border-bottom-color: white;*/
    }

    .generic-form .form-textbox .dropdown {
        width: 99.9%;
        background-color: white;
    }

        .generic-form .form-textbox .dropdown .dropdown-toggle p, .generic-form .form-textbox .dropdown li {
            line-height: 18px;
            font-size: 18px;
            display: flex;
            align-items: center;
            font-family: Roboto;
            margin: 0;
            font-weight: 400;
        }

    .generic-form .dropdown.text-dropdown .dropdown-menu li {
        font-size: 18px;
        line-height: 18px;
        padding: 10px 20px;
        color: #242424;
    }

    .generic-form .dropdown.country .dropdown-toggle img {
        margin-right: 0px;
        margin-left: 20px;
    }

    .generic-form .option img, .generic-form .dropdown img {
        margin-right: 20px;
        margin-left: 0px;
    }

    .generic-form .dropdown.text-dropdown .dropdown-menu {
        border-radius: 0px;
        min-width: calc(100% + 2px);
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #BEBEBE;
        left: -1px;
        margin: 0;
        border-top: 1px solid #BEBEBE;
        background: #ffffff;
        padding: 0;
        z-index: 99;
    }

    .generic-form .form-textbox.searchable .dropdown.text-dropdown .dropdown-menu {
        border-top: none;
    }


    .generic-form .form-autocomplete .dropdown.text-dropdown .dropdown-menu {
        padding-top: 0px;
        padding-bottom: 0px;
        display: block;
        max-height: 215px;
        overflow-y: auto;
    }

        .generic-form .form-autocomplete .dropdown.text-dropdown .dropdown-menu li {
            color: #242424;
            font-size: 18px;
            line-height: 24px;
            cursor: pointer;
        }

            .generic-form .form-autocomplete .dropdown.text-dropdown .dropdown-menu li.autocomplete-active {
                color: #242424;
                background-color: #B8AC9E;
                font-size: 18px;
                line-height: 24px;
            }

            .generic-form .form-autocomplete .dropdown.text-dropdown .dropdown-menu li:first-child {
                padding-top: 15px;
            }

            .generic-form .form-autocomplete .dropdown.text-dropdown .dropdown-menu li:last-child {
                padding-bottom: 15px;
            }

    .generic-form .form-textbox.form-autocomplete .dropdown .dropdown-toggle {
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
        display: flex;
        align-items: center;
    }

        .generic-form .form-textbox.form-autocomplete .dropdown .dropdown-toggle input {
            border-right-width: 0px;
            border-left-width: 0px;
        }

            .generic-form .form-textbox.form-autocomplete .dropdown .dropdown-toggle input:focus {
                border: none;
                border-top: 1px solid #BEBEBE;
            }

    .generic-form .form-textbox.form-autocomplete.error .dropdown .dropdown-toggle input {
        border-color: #c30000;
    }

    .generic-form .form-textbox.form-autocomplete.error {
        border-color: #c30000;
    }

        .generic-form .form-textbox.form-autocomplete.error .dropdown-menu {
            border-color: #c30000;
        }

        .generic-form .form-textbox.form-autocomplete.error .dropdown {
            border-color: #c30000;
        }


    .generic-form .formLabel {
        text-transform: uppercase;
        line-height: 18px;
        font-size: 12px;
        font-weight: 400;
        margin: 0;
        width: 100%;
        font-family: Roboto Condensed;
        padding-bottom: 5px;
    }


/*END Dropdown input*/

/*Management List*/

.wide-section {
    padding: 20px 15px 0;
    min-height: calc(100vh - 181px - 70px - 42.5px - 66.5px);
    position: relative;
}
.generic-form .text-block.extra {
    color: #888888;
    padding: 5px 0 20px 0;
}
.generic-list {
    margin-bottom: 20px;
    border-top: 1px solid #f2f2f2;
}

    .generic-list .list-item:hover h2 {
        color: #C30000;
    }

    .generic-list .list-item:hover .arrow {
        fill: #C30000;
        margin-right: 0px;
    }

    .generic-list .list-item .arrow {
        margin-right: 5px;
        transition: margin-right ease-in 0.2s;
        margin-left: auto;
        width: 24px;
        height: 24px;
        transform: rotate(0deg);
        fill: #BEBEBE;
        stroke: none;
    }

    .generic-list .list-item h2 {
        margin: 0;
        padding-bottom: 5px;
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
    }

    .generic-list .list-item .text {
        width: 90%;
    }

    .generic-list .list-item {
        display: flex;
        justify-content: space-between;
        padding: 25px 10px;
        align-items: center;
        margin-bottom: 0px;
        font-size: 14px;
        line-height: 18px;
        cursor: pointer;
        border-bottom: 1px solid #f2f2f2;
        gap:23px;
    }

        .generic-list .list-item .right {
            display: flex;
            font-size: 11px;
            line-height: 16px;
            font-family: "Roboto", sans-serif;
            font-weight: 400;
            align-items: center;
            white-space: nowrap;
        }

            .generic-list .list-item .right .arrow {
                margin-left: 20px;
            }

        .generic-list .list-item .arrow {
            margin-left: auto;
            min-width: 24px;
            min-height: 24px;
            transform: rotate(0deg);
            fill: #BEBEBE;
            stroke: none;
        }

.tableContainer .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consentTable .row div label {
    margin: auto;
    justify-content: center;
}

.consentTable input.slb-radio[type="radio"] + label span.outer {
    margin: 0;
}

.consentTable {
    font-family: "Roboto", sans-serif;
}

    .consentTable .rowTitle h3 {
        margin-top: 8px;
        margin-bottom: 10px;
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
        font-family: "Roboto", sans-serif;
        min-width: 160px;
        padding-bottom: 0px;
    }

    .consentTable .rowTitle p {
        min-width: 160px;
    }

    .consentTable .rowTitle {
        min-width: 180px;
        position: sticky;
        top: 0px;
        left: 0px;
        z-index: 100;
        background-color: white;
    }

        .consentTable .rowTitle .header {
            margin-right: 20px;
        }

        .consentTable .rowTitle .generic-list {
            margin-right: 20px;
        }

    .consentTable .rowContent {
        min-width: 370px;
    }

    .consentTable .extra {
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 0px;
    }

    .consentTable p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }
        .consentTable p.obligatory-field-Comment {
            line-height: 16px;
            font-size: 11px;
        }

    .consentTable .entry {
        min-width: 70px;
        text-align: center;
        max-width: 70px;
        height: 100%;
    }

    .consentTable .rowContent .generic-list .entry {
        display: flex;
        align-items: center;
    }

        .consentTable .rowContent .generic-list .entry .col-xs-12 {
            height: 100%;
        }

    .consentTable .generic-list .row {
        margin-top: 20px;
    }

.generic-list {
    border-top: 1px solid #f2f2f2;
}

.consentTable .generic-list {
    border-top: none;
    margin-bottom: 0px;
}

.consentTable .separator {
    padding-top: 10px;
    margin-top: 20px;
}

.consentTable .separatorBorder {
    position: absolute;
    border-top: 1px solid #f2f2f2;
}

.consentTable .generic-list h3 {
    padding-left: 10px;
    margin-right: auto;
}

.tableContainer {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 20px;
    right: -16px;
    left: 0px;
}
/*END Management List*/

/* END of Form Inputs */

.action-buttons {
    padding: 0 15px;
}

    .action-buttons .button {
        margin-bottom: 20px;
    }

    .action-buttons .button,
    .action-buttons .link-button {
        display: flex;
    }


/*FINAL CHECKOUT*/
    .checkout-final .info {
        font-size: 18px;
    }

.checkout-final .price-info {
    display: flex;
    flex-flow: column;
    gap: 15px;
}

.checkout-final .price-table .price-table-line .flex {
    align-items: center;
    display: flex;
    gap: 10px;
}

.checkout-final .price-table .price-table-line p {
    font-size: 14px;
    line-height: 17px;
    margin: 0;
}

.checkout-final .price-table .price-table-line {
    align-items: flex-start;
    min-height: 24px;
}

.shipping-info p.title {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 17.5px;
}

.checkout-final .shipping-wrapper {
    display: flex;
    gap: 80px;
}

    .checkout-final .shipping-wrapper .shipping {
        display: flex;
        gap: 15px;
    }

    .checkout-final .shipping-wrapper .shipping img {
        height: fit-content;
    }

        .checkout-final .shipping-wrapper .shipping p {
            margin-bottom: 5px;
            line-height: 18px;
        }

/*SCHEDULE*/
.choose-schedule .schedule {
    margin-bottom: 23px;
}

    .choose-schedule .schedule .items {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

        .choose-schedule .schedule .items > * {
            min-width: 167px;
            width: 48.5%;
            text-align: center;
            margin: 0;
            padding: 20px;
            font-size: 16px;
            line-height: 20px;
            border: 1px solid #E8E8E8;
            cursor: pointer;
        }

        .choose-schedule .schedule .items p.selected {
            border: 1px solid #c30000;
        }

@media (min-width: 768px) {
    .mobile-only {
        display: none !important;
    }

    .desktop-only {
        display: initial;
    }

    .container-fluid {
        margin: 0 calc(135/1366 * 100vw);
    }

    .two-side {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

        .two-side > *:first-child {
            min-width: calc((604.5 / 1366) * 100vw);
            max-width: calc((604.5 / 1366) * 100vw);
            margin-top: 26px;
            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);
        }

        .two-side > *:last-child {
            display: initial;
            padding-left: calc(68.5/1366 * 100vw);
        }

            .two-side > *:last-child > * {
                display: initial;
            }
    .wide-section {
        padding: 0;
        margin-top: 26px;
    }

    .consentTable .generic-list h3 {
        padding-left: 20px;
    }

    .action-buttons {
        padding: 0;
    }

    .generic-form {
        margin-bottom: 80px !important;
    }

        .generic-form > section {
            margin-bottom: 40px;
        }

        .generic-form .required-fields-message {
            margin-bottom: 40px;
        }

    .generic-list .list-item {
        gap: 83px;
    }

    .info-message-wrapper {
        width: 100%;
        display: flex !important;
        padding-top: 56px;
    }

        .info-message-wrapper .icon-wrapper svg {
            width: 24px;
            height: 24px;
        }

        .info-message-wrapper .info-message {
            color: #BEBEBE;
            font-size: 14px;
            line-height: 18px;
            margin-left: 12px;
        }

    .choose-schedule .schedule .items > * {
        width: 33%;
        padding: 20px 0;
    }

    /*FINAL CHECKOUT*/
    .checkout-final h2 {
        font-size: 24px;
        margin-bottom: 35px;
    }
}

@media (min-width: 1024px) {
    .choose-schedule .schedule .items > * {
        min-width: initial;
        width: calc(167/1366 * 100vw);
        padding: 20px 8px;
    }
}

@media (hover: hover) {
    .button:hover:before {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
