.container {
    max-width: 1120px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 767px) {
    .container {
        max-width: 960px;
    }
}

@media(max-width: 767px) {
    .container {
        max-width: 720px;
    }
}

@media(max-width: 767px) {
    .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 4px 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 56px;
    font-family: 'JETSansDigital';
    font-size: 16px;
    line-height: 24px;
}

.btn.small {
    height: 36px;
    min-width: 132px;
    font-size: 14px;
    line-height: 18px;
}

.btn.primary {
    background-color: #1574f5;
    border-color: #1574f5;
    color: #fff;
}

.btn.primary:hover {
    background-color: #3b89f7;
    border-color: #3b89f7;
    color: #fff;
}

.btn.primary:active {
    background-color: #0961dc;
    border-color: #0961dc;
    color: #fff;
}

.btn.primary.ghost {
    background-color: transparent;
    color: #1574f5;
}

.btn.secondary {
    background-color: #fff;
    border-color: #d7d7d7;
    color: #1574f5;
}

.btn.secondary:hover {
    background-color: #fff;
    border-color: #3b89f7;
    color: #3b89f7;
}

.btn.secondary:active {
    background-color: #fff;
    border-color: #0961dc;
    color: #0961dc;
}

.btn.secondary.ghost {
    background-color: transparent;
    color: #fff;
}

.btn.disabled,
.btn:disabled,
.btn.disabled:hover,
.btn:disabled:hover,
.btn.disabled:active,
.btn:disabled:active {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #999;
    cursor: default;
}

.btn.width-base {
    min-width: 256px;
}

.btn.width-small {
    min-width: 200px;
}

.btn.width-tiny {
    min-width: 132px;
}

.cookie-banner {
    background: #0a3847;
    min-height: 64px;
    padding: 24px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1050;
    display: flex;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 794px;
}

.cookie-banner-content {
    align-self: center;
    position: relative;
    margin-right: 16px;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
}

.cookie-banner-content a {
    color: #ff8000;
}

.cookie-banner-buttons {
    display: flex;
    flex: 0 0 280px;
}

.cookie-banner-buttons .btn {
    margin-right: 16px;
}

.cookie-banner-buttons .btn:last-child {
    margin-right: 0;
}

.cookie-banner-buttons .btn .stack .stack-icon svg {
    fill: #fff;
}

@media (min-width: 1025px) {
    .cookie-banner-buttons .btn:hover .stack .stack-icon svg,
    .cookie-banner-buttons .btn:active .stack .stack-icon svg {
        fill: #fff;
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        padding: 16px 0;
    }

    .cookie-banner .container {
        flex-flow: column;
    }

    .cookie-banner-content {
        margin: 0 0 16px;
    }

    .cookie-banner-buttons {
        flex-basis: initial;
        align-items: stretch;
        width: 100%;
    }

    .cookie-banner-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 414px) {
    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-banner-buttons .btn {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .cookie-banner-buttons .btn:last-child {
        margin-bottom: 0;
    }
}
