.cookie-container {
    margin: auto;
    width: 980px;
}
.cookie-container .row {
    display: flex;
    justify-content: space-between;
    margin: 0 15px;
}
.cookie {
    position: fixed;
    top: 0;
    z-index: 1025;
    overflow: hidden;
}

.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1052;
    width: 100%;
    padding: 1rem 0;
    color: rgb(255, 255, 255);
    background-color: rgba(50,58,56,.75);
    font-size: 14px;
    text-align: center;
    line-height: 1.5em;
}

.cookie-notice--show {
    display: flex;
}

.cookie-notice__text {
    flex: 4 0 0;
    
}

.cookie-notice__text p {
    color: #ffffff;
}

a.cookie-notice__link {
    /* color: rgba(102, 102, 102, 0.8); */
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

a.cookie-notice__link:hover {
    /* color: #355584; */
}

.cookie-notice__button {
    /* position: absolute; */
    top: 0;
    /* right: 15px; */
    bottom: 0;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -ms-flex-align: center;
    margin: auto 0;
    width: 305px;
    /* flex: 1 0 0; */
}

.cookie-notice__button a {
    margin-left: 1rem;
}

@media (max-width: 767.98px) {
    .cookie-notice__button {
        position: relative;
        right: 0;
        justify-content: center;
        -ms-flex-pack: center;
    }
}

.cookie-setting {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1054;
    width: 100%;
    height: 100vh;
    color: white;
    background-color: rgba(50, 58, 56, 0.75);
    transition: .2s ease all;
    transform: translateX(-100%);
}

@media (min-width: 768px) {
    .cookie-setting {
        width: 70vw;
    }
}

@media (min-width: 992px) {
    .cookie-setting {
        width: 50vw;
    }
}

@media (min-width: 1200px) {
    .cookie-setting {
        width: 25vw;
    }
}

.cookie-setting--show {
    transform: translateX(0);
}

.cookie-setting__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.5rem;
    overflow: auto;
}

.cookie-setting__item:nth-child(n+2) {
    margin-top: 1.5rem;
}

.cookie-setting__item:last-child {
    margin-bottom: 2rem;
}

.cookie-setting__item--highlight {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid white;
}

.cookie-setting__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-setting__title {
    margin-bottom: .5rem;
    font-size: 18px !important;
    color: white !important;
}

.cookie-setting__item--highlight .cookie-setting__title {
    font-size: 20px !important;
}

.cookie-setting__remark {
    color: #09BBE8;
}

.cookie-setting__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    z-index: 50;
    text-decoration: none;
    font-size: 1.5rem;
    color: white !important;
}

.cookie-setting__close:hover {
    text-decoration: none;
}

.cookie-setting__body {
    margin-bottom: 1.5rem;
}

.cookie-setting__body p{
    font-size: 14px !important;
    line-height: 1.5em;
    color: #ffffff;
}

.cookie-button {
    position: relative;
    display: block;
    width: 50px;
    height: 25px;
    cursor: pointer;
    overflow: hidden;
}

.cookie-button:before {
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: #fb8484;
    border-radius: 1rem;
}

.cookie-button__point {
    position: absolute;
    top: 0px;
    bottom: 0;
    left: 2px;
    display: block;
    width: 17px;
    height: 17px;
    margin: 2px;
    background-color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    transform: translateX(0);
    transition: all .2s ease-in 0s;
}

.cookie-button--active:before {
    background-color: #09BBE8;
}

.cookie-button--active .cookie-button__point {
    left: 100%;
    transform: translateX(calc(-100% - 4px));
}

.cookie--backdrop {
    height: 100vh;
    width: 100vw;
}

.cookie--backdrop:before {
    content: "";
    position: absolute;
    z-index: 1054;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.cookie--theme-2 .cookie-setting {
    top: 0;
    left: 100%;
    transform: translateX(0);
}

.cookie--theme-2 .cookie-setting--show {
    transform: translateX(-100%);
}


.btn.btn--link {
    font-size: 14px;
    font-weight: 700;
    color: rgb(102, 102, 102);
}

.btn.btn--green {
    font-size: 14px;
    font-weight: 700;
    padding: .4em .8em;
    color: white;
    background-color: rgb(100, 170, 131);
}

.cookie .btn.btn--blue {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 1em 2em;
    color: white;
    background-color: #5f8496;
    /* border-radius: 2rem; */
}

.btn-light {
    font-size: 14px;
    font-weight: 700;
    padding: .4em 2em;
    border-radius: 2rem;
}