/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor
 */
a {
    text-decoration: none;
}

/*------------------блик на кнопке------------*/
.elementor-button {
    position: relative;
    overflow-x: hidden !important;
    cursor: pointer;
}

.elementor-button .flare {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg); // Наклон
    animation: flareAnimation;
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: flareAnimation 3s infinite linear; // Время и тип анимации можно менять
}

@keyframes flareAnimation {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.square ul {
    list-style: square  !important;
    padding: 0 20px 20px  !important;
    margin: 0  !important;
}
.square ul li {
    padding: 0 0 7px 0 !important;
}
/*------------------радиокнопки-------------*/
.new_quize .elementor-field-option {
    margin-bottom: 20px;
}
.new_quize .elementor-field-subgroup span {
    align-items: center !important;
    cursor: pointer;
    display: flex !important;
}
.new_quize .elementor-field-option label {
    cursor: pointer;
}
.new_quize .elementor-field-option input[type="radio"] {
    align-items: center;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    box-shadow: none!important;
    cursor: pointer;
    display: flex !important;
    justify-content: center;
    margin-right: 7px;
    margin-top: 0;
    max-height: 20px;
    max-width: 20px;
    min-height: 20px;
    min-width: 20px;
    outline: none;
    outline: none!important;
    position: relative
}
.new_quize .elementor-field-option input[type="radio"]:checked {
    border-color: #C82F28 !important;
    background: #C82F28 !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.new_quize .elementor-field-option input[type=radio]:before {
    border-radius: 50%;
    content: "";
    display: block;
    height: 10px;
    width: 10px;
    background: #FFF !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}