/* fallback */
.warning {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(211, 211, 211, 0.85);
    z-index: 55555;
}

.warning__content {
    background-color: #fff;
    position: absolute;
    display: block;
    height: 520px;
    width: 920px;
    left: 50%;
    top: 15%;
    margin-left: -460px;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.warning__top {
    padding: 65px;
    height: 420px;
}

.warning__bottom {
    background-color: #f4f4f4;
    padding: 25px 0;
    height: 100px;
    display: block;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: all 150ms ease-in-out;
}
.warning__bottom:hover, .warning__bottom:focus {
    background-color: #ececec;
    transition: all 150ms ease-in-out;
}
.warning__bottom:hover .news__arrow, .warning__bottom:focus .news__arrow {
    right: 35px;
    transition: all 150ms ease-in-out;
}

.warning__close {
    position: absolute;
    right: -25px;
    top: -25px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: #ff6767;
    border-radius: 50%;
    line-height: 46px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.warning__close img {
    width: 26px;
    height: 26px;
}
.warning__close:hover {
    background-color: #f84646;
}

.warning__title {
    font-size: 30px;
    font-weight: 300;
    color: #647781;
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
}

.warning__text {
    font-size: 20px;
    font-weight: 300;
    color: #647781;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 80%;
    margin: 30px auto 45px;
    line-height: 27.5px;
}

.news__icon {
    float: left;
    width: 125px;
    height: 100px;
    display: block;
    border-bottom-left-radius: 20px;
}
.news__icon img {
    margin: 0 auto;
    display: block;
    width: 54px;
    height: 54px;
}

.news__arrow {
    position: relative;
    float: right;
    top: 5px;
    right: 40px;
    color: #d1d5d8;
    transition: all 150ms ease-in-out;
}
.news__arrow img {
    width: 37px;
    height: 37px;
}

.news__text {
    display: block;
    float: left;
}

.news__title {
    font-size: 20px;
    font-weight: 300;
    color: #8c99a0;
    display: block;
}

.news__link {
    font-size: 12px;
    font-weight: bold;
    color: #1d93dc;
}

.option__icon {
    padding: 31px 35.5px;
    float: left;
}
.option__icon img {
    width: 54px;
    height: 54px;
}

.option__text {
    padding: 33px 0;
    float: left;
    width: 160px;
}

.option__title {
    font-size: 20px;
    font-weight: 300;
    color: #647781;
}

.option__link {
    color: #1d93dc;
    font-size: 12px;
}

.warning__sadface {
    position: absolute;
    top: 7px;
    left: 9px;
    line-height: 0;
    color: #ff6767;
    animation: warning 3s infinite;
    animation-timing-function: ease-in-out;
}
.warning__sadface img {
    width: 37px;
    height: 37px;
}

@keyframes warning {
    0% {
        transform: rotate(35deg);
    }
    50% {
        transform: rotate(-35deg);
    }
    100% {
        transform: rotate(35deg);
    }
}
.warning__options {
    width: 690px;
    display: block;
    margin: 0 auto;
}

.warning__option {
    width: 305px;
    height: 118px;
    float: left;
    border-radius: 10px;
    border: 1px solid #dce0e2;
    margin: 0 20px;
    background-color: #fff;
    transition: all 150ms ease-in-out;
}
.warning__option:hover, .warning__option:focus {
    background-color: #f4f4f4;
    transition: all 150ms ease-in-out;
}

.warningbutton {
    position: fixed;
    bottom: 0;
    left: 25px;
    cursor: pointer;
    margin-right: 15px;
    font-weight: bold;
    font-size: 20px;
    color: #e2574c;
    display: block;
    padding-top: 5px;
}
.warningbutton img {
    float: left;
    width: 35px;
    margin-right: 15px;
    position: relative;
    bottom: 5px;
}