@media (min-width: 320px) {
    .container,
    .page__wr {
        width: 100%;
    }
}

@media (min-width: 370px) {
    .container,
    .page__wr {
        width: 100%;
    }
}

@media (min-width: 410px) {
    .container,
    .page__wr {
        width: 100%;
    }
}

@media (min-width: 480px) {
    .container,
    .page__wr {
        width: 100%;
    }
}

@media (min-width: 560px) {
    .container,
    .page__wr {
        width: 100%;
    }
}

@media (min-width: 620px) {
    .container,
    .page__wr {
        width: 100%;
    }
}

@media (min-width: 960px) {
    .container,
    .page__wr {
        width: 880px;
    }
}

@media (min-width: 1280px) {
    .container,
    .page__wr {
        width: 1260px;
    }
}

@media (min-width: 1680px) {
    .container,
    .page__wr {
        width: 1302px;
    }
}

@media (min-width: 1920px) {
    .container,
    .page__wr {
        width: 1302px;
    }
}

.swiper-button-prev:focus,
.swiper-button-next:focus,
.swiper-pagination-bullet:focus {
    outline: none !important;
}

.overflow {
    overflow: hidden;
}

.WebElementsPollsUni__poll {
    padding: 24px;
    box-shadow: 0px 0px 30px rgba(209, 217, 230, 0.4), 25px 24px 54px rgba(209, 217, 230, 0.4);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.WebElementsPollsUni__poll-title {
    font-family: 'Muller-Medium', Helvetica, Arial, sans-serif;
    font-size: 1.125rem;
    color: #343434;
    text-align: center;
    border-bottom: 1px solid #e8ecf2;
    padding-bottom: 7px;
    margin-bottom: 24px;
}

.WebElementsPollsUni__poll-list {
    margin-bottom: 32px;
}

.WebElementsPollsUni__poll-list--results .WebElementsPollsUni__poll-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.WebElementsPollsUni__poll-item {
    cursor: pointer;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.WebElementsPollsUni__poll-item:last-child {
    margin-bottom: 0;
}

.WebElementsPollsUni__poll-item-radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.WebElementsPollsUni__poll-item-radio + label {
    position: relative;
    padding: 0 0 0 34px;
    cursor: pointer;
    margin-bottom: 0;
}

.WebElementsPollsUni__poll-item-radio + label:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #e8ecf3;
    border-radius: 50%;
    background: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.WebElementsPollsUni__poll-item-radio + label:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ea610e;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.WebElementsPollsUni__poll-item-radio:checked + label:before {
    border-color: #ea610e;
}

.WebElementsPollsUni__poll-item-radio:checked + label:after {
    opacity: 1;
}

.WebElementsPollsUni__poll-item-checkbox {
    position: relative;
    cursor: pointer;
    font-family: 'Muller-Regular', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    color: #5b5b5b;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    /* Hide the browser's default checkbox */
    /* Create a custom checkbox */
    /* On mouse-over, add a grey background color */
    /* When the checkbox is checked, add a blue background */
    /* Show the checkmark when checked */
}

.WebElementsPollsUni__poll-item-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.WebElementsPollsUni__poll-item-checkbox-checkmark {
    height: 18px;
    min-width: 18px;
    border: 2px solid #e8ecf3;
    border-radius: 3px;
    margin-right: 16px;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    /* Create the checkmark/indicator (hidden when not checked) */
}

.WebElementsPollsUni__poll-item-checkbox-checkmark:after {
    content: '';
    position: absolute;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    opacity: 0;
    visibility: hidden;
    left: 4px;
    top: 0;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.WebElementsPollsUni__poll-item-checkbox:hover input ~ .WebElementsPollsUni__poll-item-checkbox-checkmark:after {
    opacity: 1;
    visibility: visible;
}

.WebElementsPollsUni__poll-item-checkbox input:checked ~ .WebElementsPollsUni__poll-item-checkbox-checkmark {
    background-color: #f2630c;
    border-color: #f2630c;
}

.WebElementsPollsUni__poll-item-checkbox input:checked ~ .WebElementsPollsUni__poll-item-checkbox-checkmark:after {
    opacity: 1;
    visibility: visible;
}

.WebElementsPollsUni__poll-item-title {
    margin: 0;
    color: #5b5b5b;
    font-size: 13px;
    padding-bottom: 5px;
}

.WebElementsPollsUni__poll-item-result-wr {
    width: 100%;
    height: 2px;
    background: #e8ecf2;
}

.WebElementsPollsUni__poll-item-result {
    width: 0;
    height: 2px;
    background: -webkit-linear-gradient(right, #e77120 0%, #cc5530 100%);
    background: linear-gradient(270deg, #e77120 0%, #cc5530 100%);
    border-radius: 14px;
}

.WebElementsPollsUni__poll-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 767px) and (min-height: 600px) {
    .WebElementsPollsUni__poll-buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.WebElementsPollsUni__poll-buttons-send {
    background: -webkit-linear-gradient(right, #e77120 0%, #cc5530 100%);
    background: linear-gradient(270deg, #e77120 0%, #cc5530 100%);
    box-shadow: 0px 0px 15px rgba(254, 113, 15, 0.3), 5px 5px 30px rgba(254, 113, 15, 0.1);
    border-radius: 48px;
    width: 160px;
    height: 48px;
    line-height: 48px;
    font-family: 'Muller-Medium', Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    color: #fff;
    margin-bottom: 24px;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

@media screen and (min-width: 767px) and (min-height: 600px) {
    .WebElementsPollsUni__poll-buttons-send {
        margin-bottom: 0;
        margin-right: 24px;
    }
}

.WebElementsPollsUni__poll-buttons-send:hover {
    opacity: 0.8;
}

.WebElementsPollsUni__poll-buttons-results {
    box-shadow: 5px 5px 15px rgba(209, 217, 230, 0.5), 10px 10px 30px rgba(209, 217, 230, 0.35);
    border-radius: 48px;
    width: 160px;
    height: 48px;
    line-height: 48px;
    font-family: 'Muller-Medium', Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    color: #5b5b5b;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.WebElementsPollsUni__poll-buttons-results:hover {
    opacity: 0.7;
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.WebElementsPollsUni__poll-buttons-send {
    cursor: pointer;
}

.WebElementsPollsUni__poll-list--results-text {
    font-size: 13px;
    color: #b2b2b2;
    opacity: 0.8;
}

.WebElementsPollsUni__poll-gallery-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 50px;
}

.WebElementsPollsUni__poll-gallery-item {
    padding-right: 10px;
    margin-bottom: 50px;
}

.WebElementsPollsUni__poll-gallery-item-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.WebElementsPollsUni__poll-gallery-title {
    margin-bottom: 30px;
}

.WebElementsPollsUni__poll-gallery-item-name {
    text-align: center;
    margin-bottom: 10px;
    padding-top: 10px;
}

.WebElementsPollsUni__poll-gallery-item-button-success {
    width: 30px;
}

.WebElementsPollsUni__poll-item-title-success {
    width: 13px;
    vertical-align: middle;
    margin-left: -19px;
}

div.WebElementsPollsUni__poll-gallery-item-name {
    text-align: center !important;
    margin-bottom: 10px;
    margin-top: 0;
}

img.WebElementsPollsUni__poll-list-hideResult-image {
    width: 50px;
    margin: 33px;
}

.WebElementsPollsUni__poll-list-hideResult {
    text-align: center;
    font-size: 13px;
}

.WebElementsPollsUni__poll-list--results-info {
    padding: 20px;
    background: #ffcc0070;
    margin-bottom: 20px;
}

.WebElementsPollsUni__poll-list--results-text-restartButton {
    cursor: pointer;
}

/* mobile */

@media screen and (max-width: 768px) {
    .WebElementsPollsUni__poll-gallery-items {
        display: block;
    }
}

/*# sourceMappingURL=main.css.map */