.age-checker-settings-partial-block__entity-wrapper {
    display: flex;
    margin-top: 15px;
    flex-wrap: wrap;
}

.age-checker-settings-partial-block-fieldset {
    padding: 10px 15px;
    border: 1px solid #ccc;
    margin-right: 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
}

.age-checker-settings-partial-block-fieldset--premium {
    border-color: red;
    pointer-events: none;
    opacity: .7;
    cursor: not-allowed;
}

.age-checker-settings-partial-block-fieldset__legend {
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px
}

.age-checker-settings-partial-block-fieldset--premium .age-checker-settings-partial-block-fieldset__legend {
    color: red;
}

.age-checker-settings-partial-block__blocked_items {
    margin: 5px 25px;
    display: none;
}


/******/


/** Buttons **/
.avfw-button {
    display: inline-block;
    margin-left: 5px;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    color: #fff;
    transition: .3s all;
}

.avfw-button:focus, .avfw-button:focus {
    outline: none;
    color: #fff;
}

.avfw-button--default {
    background: #3D4C53;
    color: #fff;
}

.avfw-button--default:hover {
    background-color: #4a5b63;
    color: #fff;
}

.avfw-button--accent {

    background: #08a6a6;
    color: #fff;
}

.avfw-button--accent:hover {
    background-color: #51cece;
    color: #fff;
}

.avfw-button--bounce {
    animation: avfw-bounce-animation 2s infinite;
    -webkit-animation: avfw-bounce-animation 2s infinite;
    -moz-animation: avfw-bounce-animation 2s infinite;
}

.avfw-button--bounce:hover, .avfw-button--bounce:active, .avfw-button--bounce:focus {
    animation: none;
    -webkit-animation: none;
    -moz-animation: none;
}

/** Alert **/

.avfw-alert {
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 5px 10px rgba(61, 76, 83, 0.15);
    color: #3D4C53;
    border: 1px solid rgba(61, 76, 83, 0.26);
}

.avfw-alert__icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: #3D4C53;
}

.avfw-alert__text {
    font-size: 15px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avfw-alert__buttons {
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .avfw-alert__icon {
        width: 70px;
        height: 70px;
        display: block;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .avfw-alert__buttons {
        flex: 1 0 100%;
    }

    .avfw-alert__text {
        margin-bottom: 20px;
        flex: 1 0 100%;
        line-height: 1;
    }

    .avfw-alert {
        text-align: center;
    }
}

.avfw-premium-wrapper {
    top: 40%;
    left: 26%;
    position: absolute;
}

.avfw-premium-wrapper__text {
    transform: translateX(-50%);
    font-size: 32px;
    color: #ec3d3d;
    font-weight: bold;
}

@media (max-width: 820px) {

    .avfw-premium-wrapper__text {
        transform: translateX(0);
    }
}

/** Animation **/

@-webkit-keyframes avfw-bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-5px);
    }
    60% {
        -webkit-transform: translateY(-2px);
    }
}

@-moz-keyframes avfw-bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-5px);
    }
    60% {
        -moz-transform: translateY(-2px);
    }
}

@-o-keyframes avfw-bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-5px);
    }
    60% {
        -o-transform: translateY(-2px);
    }
}

@keyframes avfw-bounce-animation {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}