<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.button-container {
    position: fixed;
    bottom: 0px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.6s ease;
}
.button-container.show {
    bottom: 25px;
    opacity: 1;
    transform: translateY(0);
    animation: bounceIn 0.8s ease-out forwards;
    z-index: 10;
}
.survey-button {
    display: none;
}
.survey-button.show {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(33deg, rgb(198, 216, 218), rgb(216, 215, 233));
    border-radius: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: rgb(39, 58, 54);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.survey-popup {
    position: fixed;
    bottom: -300px;
    right: -154px;
    transform: translateX(-50%);
    width: 300px;
    height: 400px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(33deg, rgb(198, 216, 218), rgb(216, 215, 233));
    border-radius: 8px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: bottom 0.5s ease, opacity 0.5s ease;
}
.survey-popup.show {
    bottom: 20px;
    opacity: 1;
    visibility: visible ;
}
.survey-popup p:first-of-type {
    margin: 0;
    font-size: 21px;
    color: #35434e;
    margin-top: 10px;
    margin-bottom: 25px;
}
.survey-popup p {
    margin: 10px;
    color: #35434e;
}
.survey-popup p {
    font-size: 14px;
    color: #35434e;
}

/*Р&nbsp;Р°РґРёРѕ РєРЅРѕРїРєРё*/
.custom-radio {
    display: flex;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px;
    text-align: start;
}
.custom-radio input[type="radio"] {
    display: none;
}
.radio-mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgb(39, 58, 54);
    display: inline-block;
    position: relative;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}
.radio-mark.checked {
    background-color: rgb(61, 93, 88);
}
.custom-radio input[type="radio"]:checked + .radio-mark {
    background-color: rgb(61, 93, 88);
}
.radio-mark::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #90c4e7;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

/*Checkbox РєРЅРѕРїРєРё*/
.custom-checkbox {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox input:checked + .radio-mark {
    background-color: rgb(61, 93, 88);
}

/*РљРЅРѕРїРєР° Р·Р°РєСЂС‹С‚РёСЏ РѕРєРЅР°*/
.close-button {
    background: none;
    border: none;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
/*РџРѕР»РѕСЃР° РїСЂРѕРіСЂРµСЃСЃР°*/
.progress-bar-container {
    position: absolute;
    margin-bottom: 20px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: transparent;
    display: flex;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}
.progress-bar {
    height: 10px;
    background-color: #7873f5;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 5px;
}
.progress-text {
    font-size: 19px;
    color: rgb(61, 93, 88);
    margin-left: 10px;
}
.city {
    padding: 10px;
    margin: 10px;
    border: 1px solid rgb(39, 58, 54);
}
.back-button,
.forward-button {
    display: none;
    position: absolute;
    bottom: 50px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.back-button {
    left: 10px;
    color: #b10808;
}
.forward-button {
    right: 10px;
    color: #4caf50;
}
.back-button:hover,
.forward-button:hover {
    transform: scaleX(1.5);
}
.forward-button.active:hover {
    background-color: #6c60e8;
    transform: scale(1.2);
}
.fade-out {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.next-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #33055f;
    background-color: #908aff;
    color: white;
    font-size: 15px;
    cursor: pointer;
}
.next-button:hover {
    background-color: transparent;
    color: black;
}
.input__text {
    display: flex;
    margin-top: 10px;
    width: 259px;
    border: 1px solid white;
    outline: none;
    padding: 10px;
    background-color: transparent;
    color: rgb(61, 93, 88);
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.input__text:hover {
    background-color: #dadada;
}
.input__text:focus {
    background-color: #f3f3f3;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    outline: none;
}
.input-container {
    display: block;
    opacity: 0;
    text-align: start;
    margin-top: 30px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
    visibility: hidden;
}
.input-container.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.NoMargin p {
    margin-top: 0;
    margin-bottom: 0;
}
.NewMarginInputContainer {
    margin-top: 15px;
}
.text__small {
    font-size: 15px;
    color: rgb(61, 93, 88);
}

/* РЎРўРР›Р Р”Р›РЇ Р¤РћР&nbsp;РњР« */
.contactFormSurvey {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.label-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.error-message {
    color: red;
}
.messages {
    display: grid;
    height: 54px;
    align-items: center;
    text-align: end;
    font-size: 16px;
}
.success-message-survey {
    margin: 7px;
}
.error-message-survey {
    margin: 7px;
}
.form-button {
    width: 50%;
    padding: 10px;
    border-radius: 25px;
    border: 1px solid #33055f;
    background-color: #908aff;
    color: white;
    cursor: pointer;
}
.form-button-container {
    display: flex;
    flex-direction: row-reverse;
}
.form-button:hover {
    background-color: transparent;
    color: black;
}

/* KEYFRAMES */
@keyframes bounceIn {
    0% {
        transform: translateY(50px);
    }

    30% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

</pre></body></html>