html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@font-face {
    font-family: 'GothaProMed';
    src: url('../Fonts/GothaProMed.otf') format('truetype');
}

.font-gotha-pro-med {
    font-family: 'GothaProMed', sans-serif !important;
}

@font-face {
    font-family: 'GothamCondensedBold';
    src: url('../Fonts/GothamCondensedBold.ttf') format('truetype');
}

.font-gotham-cond-bold {
    font-family: 'GothamCondensedBold', sans-serif !important;
}

@font-face {
    font-family: 'GothaProReg';
    src: url('../Fonts/GothaProReg.otf')
}

.font-gotha-pro-reg {
    font-family: 'GothaProReg', sans-serif;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /*padding-bottom: 20px;*/
    background-color: #EC1C24;
    color: #FFFFFF;
    font-family: 'GothaProReg', sans-serif;
}

h1 {
    font-family: 'GothamCondensedBold', sans-serif !important;
    font-size: calc(2.5rem + 1.5vw);
}

.center-content {
    width: 60%;
}

.main-content {
    padding-top: 58px;
}

.navbar {
    position: fixed;
    width: 100%;
    padding: 4px;
    z-index: 1;
}

.left-panel {
    height: 100vh;
    width: 15%;
    background-color: #ED1B24;
    background-image: url('../images/background_left.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
    position:fixed;
}

.right-panel {
    height: 100vh;
    width: 15%;
    background-color: #ED1B24;
    background-image: url('../images/background_right.png');
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    right:0;
}

.btn-cookie {
    border-radius: 5px;
    font-size: 20px;
    border-color: red;
    text-decoration: none;
    padding: 5px 10px !important;
    cursor: pointer;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.bootstrap-autocomplete {
    height: 230px;
    overflow-y: auto;
    width: 300px;
}

#Pickup_StoreLocationId {
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.row > * {
    margin: 10px 0px;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 10px 20px;
    color: #B5B5B5;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23B5B5B5' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")
}

.form-control:focus, .form-control::placeholder {
    color: #B5B5B5;
}


.nav-link-not-selected {
    color: #CCC !important;
}

    .nav-link-not-selected:hover {
        color: #FFF !important;
    }

.nav-link-selected {
    color: #FFF !important;
    cursor: default;
}

.text-danger {
    color: #000 !important;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    font-size: 24px;
    line-height: 24px;
    padding: 14px 54px;
    font-family: 'GothaProReg', sans-serif !important;
    border: none;
}

    .btn-submit:disabled {
        opacity: 0.6;
    }

.form-check {
    display: flex;
    align-items: center;
    padding-left: unset;
    min-height: 42px;
}

.form-check-input[type=checkbox] {
    border-radius: unset;
    float: unset;
    margin-left: unset;
}

.form-check-input:checked[type=checkbox] {
    background-color: white;
    border-color: black;
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}

.form-check-input:focus {
    box-shadow: none;
}

.form-check-input {
    margin-top: unset;
    min-width: 42px;
    min-height: 42px;
    margin-right: 12px;
}

.form-bordered {
    border: 2px solid #FFF;
    border-radius: 20px;
    padding: 14px;
    margin-bottom: 32px;
}

.disclaimer {
    font-size: 14px;
}

.form-check-label {
    font-size: 12px;
}

.coca-cola-logo {
    height: 46px;
}

.center-panel {
    padding-bottom: 30px;
    max-width: 60%;
    margin: 0 auto;
}

.button-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0px 14px;
}

.footer {
    margin-top: 26px;
}

    .footer a {
        color: inherit;
        text-decoration: none;
    }

        .footer a:hover {
            color: inherit;
            text-decoration: underline;
        }

@media (max-width: 992px) {
    .navbar {
        z-index: 2;
        background-color: #ED1B24;
    }

    .navbar-nav {
        flex-direction: row;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .center-panel {
        background-color: transparent;
        width: 100%;
        max-height: 100vh;
        overflow-y: auto;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 1;
        max-width: unset;
    }

    .main-content {
        margin: 0 auto;
        width: 90%;
        margin-left: 5%;
    }

    .left-panel {
        position: fixed;
        left: 0;
        top: 0;
        width: 35%;
        height: 100vh;
        background-image: url('../images/background_left_mobile.png');
        background-size: contain;
        background-position: left center;
    }

    .right-panel {
        position: fixed;
        right: 0;
        top: 0;
        width: 35%;
        height: 100vh;
        background-image: url('../images/background_right_mobile.png');
        background-size: contain;
        background-position: right center;
    }

    .form-bordered {
        border: 1px solid #FFF;
        border-radius: unset;
        padding: 14px 0px;
        margin-bottom: 32px;
        border-left: none;
        border-right: none;
    }

        .form-bordered.border-bottom-none {
            border-bottom: none;
            margin-bottom: unset;
        }

        h6 {
            font-size: 10px;
        }

    .form-bordered > h6 {
        padding: 0px 14px;
    }

    .disclaimer {
        font-size: 10px;
    }

    .form-check-label {
        font-size: 9px;
    }

    .button-flex {
        margin-top: 16px;
    }

    .btn-submit {
        font-size: 16px;
        line-height: 16px;
        padding: 8px 24px;
        border: none;
    }

    .coca-cola-logo {
        height: 24px;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 80px;
    }
}

/*COOKIES*/
#btnCookies {
    position: fixed;
    line-height: 0;
    cursor: pointer;
    z-index: 99999;
    font-size: 0;
    color: #999;
    left: 20px;
    display: flex;
    flex-direction: row;
    opacity: 1;
    bottom: 20px;
    border-radius: 25px;
    padding: 3px;
    transition-duration: 500ms;
    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.2);
    background: #CE1F26;
}

#cookiesText {
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Open Sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    overflow: hidden;
    transition-duration: 500ms;
    white-space: nowrap;
    padding-right: 0;
    color: #ffffff;
}

#svgCookies {
    width: 40px;
    height: 40px;
}

#btnCookies:hover #cookiesText {
    max-width: 300px;
    padding-right: 15px;
    padding-left: 12px;
}

#cookiesText {
    font-size: 16px;
    line-height: 2.5;
    max-width: 0;
}

#imgCookies {
    width: 40px;
    height: 40px;
}

@media only screen and (max-width: 414px) {
    #imgCookies {
        width: 30px;
        height: 30px;
    }

    #svgCookies {
        width: 30px;
        height: 30px;
    }

    #cookiesText {
        display: none;
    }
}

#cookiesPopup {
    bottom: 20px;
    left: 20px;
    position: fixed;
    padding: 15px 20px 15px 20px;
    width: 300px;
    text-align: left;
    max-height: 85%;
    overflow-y: auto;
    max-width: calc(100% - 40px);
    background-color: #a50e0e;
    z-index: 999997;
    opacity: 1;
    font-size: 14px;
    font-weight: normal;
    font-family: 'Open Sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.35);
    color: #ffffff;
    box-sizing: border-box;
    display: none;
}

.cookiesPopup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 29px;
    line-height: 13px;
    cursor: pointer;
    color: #ffffff;
    height: 15px;
    width: 15px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    letter-spacing: 0;
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    font-weight: 100;
    opacity: 0.85;
    z-index: 999999;
}

.cookiesPopup-header {
    padding: 14px 0 12px;
    text-align: left;
    margin: 0;
    background-color: transparent;
    z-index: 999998;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.4px;
    opacity: 1;
}

.cookiesPopup-description {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 0.3px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.85;
}

.cookiesPopup-link {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    transition: all 100ms ease 0s;
    background-color: transparent;
    color: #ffffff;
    display: inline;
    font-size: 11px;
}

.cookiesPopup-buttons {
    justify-content: space-between;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    font-weight: 700;
}

.cookiesPopup-primary-button {
    border-radius: 20px;
    flex-grow: 1;
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition-duration: 100ms;
    transition-timing-function: ease-in-out;
    min-width: 103px;
    border: 0;
    transition: all 0.25s ease 0s;
    background-color: #231f20;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 11px;
    text-align: center;
    line-height: 3.3;
    letter-spacing: 0.4px;
}

.cookiesPopup-secondary-button {
    border-radius: 20px;
    flex-grow: 1;
    padding: 0 7px;
    margin: 0 5px 10px 5px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition-duration: 100ms;
    transition-timing-function: ease-in-out;
    min-width: 103px;
    border: 1px solid #000000;
    text-align: center;
    line-height: 3;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #000000;
    background: #ffffff;
}

.cookiesPopup-footer {
    margin: 0 0 11px 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.1px;
    font-weight: 500;
    cursor: pointer;
    display: inline;
    cursor: pointer;
    color: #ffffff;
    opacity: 0.85;
}

svg.cookiesPopup-manageicon {
    width: 15px;
    height: 15px;
    display: inline;
    margin: 0 5px 0 0;
    padding: 0;
    position: relative;
    top: 3px;
    vertical-align: baseline;
}

.cookiesPopup-footer:hover, .cookiesPopup-link:hover {
    color: #ffffff;
    opacity: 1;
}

.cookiescript_checkbox {
    margin: 0 0 -10px 0;
    display: flex;
    flex-direction: row;
}

@supports not (-ms-ime-align:auto) {
    #cookiescript_injected .mdc-checkbox, #cookiescript_injected_fsd .mdc-checkbox {
        -webkit-tap-highlight-color: transparent;
    }
}

#cookiescript_injected_fsd .mdc-checkbox, #cookiescript_injected .mdc-checkbox {
    box-sizing: content-box !important;
}

.cookiescript_checkbox_label {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0 4px;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    padding: 0;
    margin: 0 10px 0 -2px;
}

span.cookiescript_checkbox_text {
    display: inline-block;
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #ffffff;
}

#cookiescript_injected .mdc-checkbox, #cookiescript_injected_fsd .mdc-checkbox {
    display: inline-block;
    position: relative;
    flex: 0 0 18px;
    box-sizing: content-box;
    width: 18px;
    height: 18px;
    line-height: 0;
    white-space: nowrap;
    cursor: pointer;
    vertical-align: bottom;
    padding: 11px;
}

@media only screen and (max-width: 414px) {
    #cookiesPopup {
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        border-radius: 0;
        max-width: 100%;
    }
}

#cookiesModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.5) !important;
    z-index: 999996;
    overflow-y: auto;
}

.cookiesModal-content {
    border-radius: 10px;
    max-width: 850px;
    width: 95%;
    margin: 0 auto 3% auto;
    top: 10%;
    line-height: 18px;
    letter-spacing: normal;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #f3f3f3;
    z-index: 999997;
    opacity: 1;
    font-size: 14px;
    font-weight: normal;
    font-family: 'Open Sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.35);
    color: #4d4d4d;
    align-items: center;
    overflow: hidden;
    outline: none;
    max-height: 80%;
    box-sizing: border-box;
    cursor: default;
}

.cookiesModal-header {
    min-height: 57px;
    border-bottom: 1px solid #e2e2e2;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
}

.cookiesModal-close {
    top: 18px;
    font-size: 37px;
    right: 25px;
    color: #4d4d4d;
    height: 18px;
    width: 18px;
    position: absolute;
    line-height: 13px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    overflow: hidden;
    letter-spacing: 0;
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    font-weight: 100;
    opacity: 0.85;
    z-index: 999999;
}

.cookiesModal-main {
    width: 100%;
    background-color: #ffffff;
    padding: 25px 50px;
}

.cookiesModal-main-title {
    background-color: transparent;
    z-index: 999998;
    color: #4d4d4d;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    opacity: 1;
}

.cookiesModal-main-description {
    color: #4d4d4d;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 21px;
}

.cookiesModal-readmore {
    font-size: 13px;
    color: #3fb6ee;
    text-decoration: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    transition: all 100ms ease 0s;
    background-color: transparent;
    display: inline;
}

.cookiesModal-tabs {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    flex-direction: row;
    width: 100%;
}

.cookiesModal-tab {
    cursor: pointer;
    width: 50%;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    line-height: 1.7;
    font-weight: bold;
    border-top: 1px solid transparent;
    transition: all 300ms ease 0s;
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.cookiesModal-tabs > .cookiesModal-tab-active {
    border-top: 1px solid #3fb6ee;
    background-color: #f3f3f3;
    color: #3fb6ee;
}

.cookiesModal-tab-content {
    background-color: #f3f3f3;
    padding: 5px 50px 10px 50px;
    width: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    --scrollbar-width: 8px;
    --mask-height: 35px;
    --mask-size-content: calc(100% - var(--scrollbar-width)) 100%;
    --mask-image-scrollbar: linear-gradient(black, black);
    --mask-size-scrollbar: var(--scrollbar-width) 100%;
    mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
    mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
    mask-position: 0 0, 100% 0;
    mask-repeat: no-repeat, no-repeat;
    -webkit-mask-image: var(--mask-image-content), var(--mask-image-scrollbar);
    -webkit-mask-size: var(--mask-size-content), var(--mask-size-scrollbar);
    -webkit-mask-position: 0 0, 100% 0;
    -webkit-mask-repeat: no-repeat, no-repeat;
}

.cookiesModal-showMore-Panel {
    color: #3fb6ee;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-top: 10px;
    cursor: pointer;
}

    .cookiesModal-showMore-Panel svg {
        width: 10px;
        height: 10px;
        font-size: 10px;
    }


.cookiesModal-footer {
    border-top: 1px solid #e2e2e2;
    width: 100%;
    background-color: #ffffff;
}

.cookiesModal-buttons {
    flex-direction: row;
    justify-content: flex-start;
    padding: 5px 15px;
    margin: 0 -5px 0 -5px;
    flex-wrap: wrap;
    display: flex;
    font-weight: 700;
}

.cookiesModal-button-primary {
    display: inline-block;
    background-color: #6BBE6B;
    color: #ffffff;
    border: 1px solid #6BBE6B;
    order: 3;
    flex-grow: unset;
    padding: 0px 25px;
    margin: 10px 5px;
    font-size: 13px;
    border-radius: 30px;
    line-height: 3;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition-duration: 100ms;
    transition-timing-function: ease-in-out;
    min-width: 103px;
}

.cookiesModal-button-secondary {
    background-color: #ffffff;
    color: #4d4d4d;
    border: 1px solid #4d4d4d;
    order: 1;
    flex-grow: unset;
    padding: 0px 25px;
    margin: 10px 5px;
    font-size: 13px;
    border-radius: 30px;
    line-height: 3;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition-duration: 100ms;
    transition-timing-function: ease-in-out;
    min-width: 103px;
}

#cookiescript_checkboxs {
    margin: -6px 0 18px -11px;
}

.cookiescript_checkbox {
    margin: 0 0 -10px 0;
    display: flex;
    flex-direction: row;
}

.mdc-checkbox {
    display: inline-block;
    position: relative;
    flex: 0 0 18px;
    box-sizing: content-box;
    width: 18px;
    height: 18px;
    line-height: 0;
    white-space: nowrap;
    cursor: pointer;
    vertical-align: bottom;
    padding: 11px;
}

    .mdc-checkbox .mdc-checkbox__native-control {
        top: 0;
        right: 0;
        left: 0;
        width: 40px;
        height: 40px;
    }

.mdc-checkbox__native-control {
    position: absolute;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit;
}

.mdc-checkbox__background {
    border-color: transparent;
    background-color: rgba(255,255,255,0.26);
    top: 11px;
    left: 11px;
    transition: border-color 90ms 0s cubic-bezier(0,0,.2,1),background-color 90ms 0s cubic-bezier(0,0,.2,1);
    display: inline-flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    pointer-events: none;
    will-change: background-color,border-color;
}

    .mdc-checkbox__background::before,
    .mdc-checkbox .mdc-checkbox__background::before {
        top: -13px;
        left: -13px;
        width: 40px;
        height: 40px;
        position: absolute;
        -webkit-transform: scale(0,0);
        transform: scale(0,0);
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
        content: "";
        will-change: opacity,transform;
        background-color: #ffffff;
    }

.mdc-checkbox__checkmark {
    color: #a50e0e;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    vertical-align: middle;
    transition: opacity 180ms 0s cubic-bezier(0,0,.2,1),transform 180ms 0s cubic-bezier(0,0,.2,1),-webkit-transform 180ms 0s cubic-bezier(0,0,.2,1);
    opacity: 1;
}

.mdc-checkbox__checkmark-path {
    transition: stroke-dashoffset 180ms 0s cubic-bezier(.4,0,.6,1);
    stroke: currentColor;
    stroke-width: 3.12px;
    stroke-dashoffset: 0;
    stroke-dasharray: 29.7833385;
}

#btnShowCookiesModal .cookiesPopup-manageicon .cookiescript_gear {
    fill: #ffffff;
}

#btnShowCookiesModal:hover .cookiesPopup-manageicon .cookiescript_gear {
    fill: #231f20;
}

.cookiescript_fsd_category {
    padding-top: 23px;
    padding-bottom: 17px;
    display: flex;
    flex-direction: column;
}

.cookiescript_fsd_category_main {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.cookiescript_fsd_category_info {
    flex: 5;
    padding-right: 10px;
}

.cookiescript_fsd__category_name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookiescript_category_description {
    font-size: 13px;
    padding-bottom: 5px;
    line-height: 1.6;
}

.cookiescript_fsd_category_control {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mdc-switch {
    align-items: center;
    background: 0 0;
    border: none;
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    margin: 0;
    outline: 0;
    overflow: visible;
    padding: 0;
    position: relative;
}

    .mdc-switch:disabled {
        cursor: default;
        pointer-events: none;
    }

    .mdc-switch.mdc-switch--selected {
        width: 36px;
        will-change: transform,opacity;
    }

    .mdc-switch input[type=checkbox] {
        display: none;
        visibility: hidden;
    }

    .mdc-switch:disabled .mdc-switch__track {
        opacity: .12;
    }

    .mdc-switch .mdc-switch__track {
        border-radius: 7px;
    }

    .mdc-switch .mdc-switch__track {
        height: 14px;
    }

    .mdc-switch:disabled .mdc-switch__track::before,
    .mdc-switch:disabled .mdc-switch__track::after {
        background: #424242;
    }

.mdc-switch--selected .mdc-switch__track::before {
    transition: -webkit-transform 75ms 0s cubic-bezier(.4,0,.6,1);
    transition: transform 75ms 0s cubic-bezier(.4,0,.6,1);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.mdc-switch__track::before {
    transition: -webkit-transform 75ms 0s cubic-bezier(0,0,.2,1);
    transition: transform 75ms 0s cubic-bezier(0,0,.2,1);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mdc-switch__track::after,
.mdc-switch__track::before {
    border: 1px solid transparent;
    border-radius: inherit;
    box-sizing: border-box;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
}

.mdc-switch--selected .mdc-switch__track::after {
    transition: -webkit-transform 75ms 0s cubic-bezier(0,0,.2,1);
    transition: transform 75ms 0s cubic-bezier(0,0,.2,1);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mdc-switch__track::after {
    transition: -webkit-transform 75ms 0s cubic-bezier(.4,0,.6,1);
    transition: transform 75ms 0s cubic-bezier(.4,0,.6,1);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.mdc-switch__track {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.mdc-switch .mdc-switch__handle-track {
    width: calc(100% - 20px);
}

.mdc-switch--selected .mdc-switch__handle-track {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.mdc-switch__handle-track {
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: -webkit-transform 75ms 0s cubic-bezier(.4,0,.2,1);
    transition: transform 75ms 0s cubic-bezier(.4,0,.2,1);
    left: 0;
    right: auto;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.mdc-switch .mdc-switch__handle {
    width: 20px;
    border-radius: 10px;
    height: 20px;
    border-radius: 10px;
}

.mdc-switch__handle {
    display: flex;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: auto;
}

.mdc-switch .mdc-switch__handle::before {
    background: #fff;
}

.mdc-switch__handle::after,
.mdc-switch__handle::before {
    border: 1px solid transparent;
    border-radius: inherit;
    box-sizing: border-box;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: background-color 75ms 0s cubic-bezier(.4,0,.2,1),border-color 75ms 0s cubic-bezier(.4,0,.2,1);
    z-index: -1;
}

.mdc-switch:disabled .mdc-switch__ripple {
    display: none;
}

.mdc-switch .mdc-switch__ripple {
    height: 48px;
    width: 48px;
}

.mdc-switch__ripple {
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: -1;
}

.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon {
    fill: #fff;
}

.mdc-switch.mdc-switch--selected .mdc-switch__icon {
    width: 18px;
    height: 18px;
}

.mdc-switch--selected .mdc-switch__icon--on,
.mdc-switch--unselected .mdc-switch__icon--off,
.mdc-switch--selected .mdc-switch__icon--on,
.mdc-switch--unselected .mdc-switch__icon--off {
    opacity: 1;
    transition: opacity 45ms 30ms cubic-bezier(0,0,.2,1);
}

.mdc-switch__icon {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    transition: opacity 30ms 0s cubic-bezier(.4,0,1,1);
}

.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon,
.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icon {
    fill: #fff;
}

.mdc-switch.mdc-switch--selected .mdc-switch__icon,
.mdc-switch.mdc-switch--selected .mdc-switch__icon {
    width: 18px;
    height: 18px;
}

.mdc-switch__icon,
.mdc-switch__icon {
    bottom: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    transition: opacity 30ms 0s cubic-bezier(.4,0,1,1);
}

.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icons,
.mdc-switch.mdc-switch--selected:disabled .mdc-switch__icons {
    opacity: .38;
}

.mdc-switch__icons,
.mdc-switch__icons {
    height: 100%;
    position: relative;
    width: 100%;
    z-index: 1;
}

.mdc-switch:disabled .mdc-switch__shadow,
.mdc-switch:disabled .mdc-switch__shadow {
    box-shadow: 0 0 0 0 rgb(0 0 0 / 20%), 0 0 0 0 rgb(0 0 0 / 14%), 0 0 0 0 rgb(0 0 0 / 12%);
    --mdc-elevation-box-shadow-for-gss: 0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}

.mdc-switch__shadow,
.mdc-switch__shadow {
    border-radius: inherit;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.mdc-switch__shadow {
    border-radius: inherit;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.mdc-elevation-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.mdc-elevation-overlay {
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 280ms cubic-bezier(.4,0,.2,1);
    background-color: #fff;
}

.cookiesModal-table {
    margin: 0 !important;
    padding: 0 !important;
    font: inherit !important;
    vertical-align: baseline !important;
    background-color: #ffffff !important;
    border-spacing: 0 !important;
    border-collapse: collapse !important;
    width: 100% !important;
    display: table !important;
    border-color: grey !important;
}

    .cookiesModal-table td:nth-child(1), .cookiesModal-table th:nth-child(1) {
        padding-left: 15px;
        word-break: normal;
    }


    .cookiesModal-table th {
        font-weight: 600;
        padding: 8px 8px;
        line-height: 1.4;
        word-break: keep-all;
        vertical-align: middle;
    }


    .cookiesModal-table td, .cookiesModal-table th {
        white-space: normal;
        font-family: 13px;
        text-align: left;
        margin: 0;
    }


    .cookiesModal-table, .cookiesModal-table tbody, .cookiesModal-table thead, .cookiesModal-table tr, .cookiesModal-table th, .cookiesModal-table td {
        margin: 0;
        padding: 0;
        font: inherit;
        vertical-align: baseline;
        background-color: #ffffff;
        border-spacing: 0;
        border-collapse: collapse;
    }

        .cookiesModal-table th {
            padding: 7px 8px;
            line-height: 1.6;
            vertical-align: top;
            font-weight: 400;
            border: 0;
            border-top: 1px solid #e2e2e2;
            color: #4d4d4d;
            font-family: 'GothaProMed', sans-serif !important;
        }

        .cookiesModal-table td {
            padding: 7px 8px;
            line-height: 1.6;
            vertical-align: top;
            font-weight: 400;
            border: 0;
            border-top: 1px solid #e2e2e2;
            color: #4d4d4d;
        }

tbody, td, tfoot, th, thead, tr {
    border: 0 solid;
    border-color: inherit;
}

.mdc-switch.mdc-switch--selected:disabled .mdc-switch__handle::after {
    background: #424242;
}

.mdc-switch:disabled .mdc-switch__handle::after {
    opacity: .38;
}

.hidden {
    display: none;
}

.toast{
    padding: 15px 20px 15px 20px;
}

.toast-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 29px;
    line-height: 13px;
    cursor: pointer;
    color: #ffffff;
    height: 15px;
    width: 15px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    letter-spacing: 0;
    font-family: 'Trebuchet MS', 'Arial', sans-serif;
    font-weight: 100;
    opacity: 0.85;
    z-index: 999999;
}

.toast-description {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 0.3px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.85;
}

#cookiesModalAboutCookiesContent {
    padding-top: 23px;
    padding-bottom: 17px;
}

.form-control:disabled {    
    opacity: 0.8;
}

select:disabled {
    opacity: 0.8;
}