.pollInterface {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 16px;
    }
    .pollInterface .popupBackDrop {
        position: absolute;
    }
    .pollInterface .block {
        margin-bottom: 20px;
    }
    .pollInterface .block-mainBody {
        padding: 24px 12px;
        background: #FFF;
        -webkit-box-shadow: 0 0 10px rgba(216, 216, 216, 0.75);
        box-shadow: 0 0 10px rgba(216, 216, 216, 0.75);
    }
    .pollInterface .block-mainBody .header-name {
        display: flex;
        position: relative;
        gap: 8px;
        font-size: 16px;
        line-height: 1.1;
        font-weight: 600;
        cursor: pointer;
        width: fit-content;
        user-select: none;
        width: 100%;
    }
    .pollInterface .block-mainBody .header-name>.mainTitle {
        font-size: 18px;
    }
    .pollInterface .block-mainBody .header-name::before {
        content: '';
        position: relative;
        display: block;
        align-self: center;
        
        background: url(https://profpilot.ru/imgs/vectors/chevron-down.svg) 00 no-repeat;
        background-size: contain;
        width: 16px;
        height: 16px;
        transition: .2s linear;
        flex: 0 0 auto;
        filter: invert(0%) sepia(13%) saturate(26%) hue-rotate(137deg) brightness(87%) contrast(100%);
    }
    .pollInterface .block.opened .block-mainBody .header-name::before {
        transform: rotate(180deg);
    }
    .pollInterface .block-mainBody .header-name .star-req {
        color: red;
        margin-right: -8px;
    }
    .pollInterface .block-mainBody .flex-row>.answered {
        color: gray;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
        flex: 0 0 auto;
    }
    .pollInterface .block-mainBody .flex-row>.answered.allAnswered {
        display: flex;
        gap: 4px;
        text-align: center;
    }
    .pollInterface .block-mainBody .flex-row>.answered.allAnswered::before {
        content: '';
        display: block;
        width: 14px;
        height: 14px;
        background: url(https://profpilot.ru/imgs/vectors/clock-approved.svg) 0 0 no-repeat;
        background-size: contain;
    }
    .pollInterface .header-name .required-small {
        font-size: 10px;
        line-height: 1;
        font-weight: 400;
        color: grey;
        align-self: center;
    }
    .pollInterface .block .block-questions {
        position: relative;
        width: 100%;
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        height: 1px;
        transition: .2s;
        transition-timing-function: cubic-bezier(.58, .3, .005, 1);
    }
    .pollInterface .block.opened .block-questions {
        visibility: visible;
        opacity: 1;
        height: auto;
        overflow: auto;
        margin-top: 16px;
        overflow: visible;
    }
    .pollInterface .block .question-body .question-name {
        font-size: 16px;
        line-height: 1.5;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .pollInterface .block .block-questions>*:not(:nth-last-child(2)):after{
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        box-shadow: 0px 1px 0px rgb(0 0 0 / 21%);
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .pollInterface .block .block-questions>*.noBefore::after{
        content: '';
        display: none;
    }
    .pollInterface .block .question-body .answer {
        margin-left: 8px;
    }
    .pollInterface .block .question-body .answer.marker {
        margin-bottom: 12px;
    }
    .pollInterface .block .question-body .answer.marker .custom-memo {
        margin-top: 8px;
    }
    .pollInterface .block .question-body .custom-memo {
        margin-left: 16px;
        margin-top: 8px;
    }
    .pollInterface .block .answer.flex-answer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 12px;
        max-width: 900px;
        width: 100%;
    }
    .pollInterface .block .answer.flex-answer .flex-marks {
        gap: 16px;
    }
    .pollInterface .block .question-body .clue {
        color: grey;
        margin-bottom: 12px;
        margin-top: -6px;
        font-size: 10px;
        line-height: 1;
        margin-left: 8px;
    }
    .pollInterface .block .answer-error {
        display: none;
        color: red;
        margin-left: 8px;
        margin-top: 8px;
    }
    .pollInterface .block .answer-error.active {
        display: block;
    }
    .pollInterface .block .block-questions>.answer-error {
        margin-left: 28px;
    }
    .pollInterface .btnPoll-blue,
    .popupWindow.poll-module .btnPoll-blue,
    .pollInterface .block .btnPoll-blue {
        display: block;
        padding: 10px 16px;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #FFF;
        background: #C6D0DB;
        border-radius: 20px;
        width: fit-content;
        visibility: visible;
        cursor: default;
        transition: linear .2s;
        cursor: pointer;
        background: #5097F4;
    }
    .pollInterface .block .question-body .btnPoll-blue {
        margin-left: 8px;
        margin-top: 24px;
    }
    .pollInterface .btnPoll-blue:hover,
    .popupWindow.poll-module .btnPoll-blue:hover,
    .pollInterface .block .btnPoll-blue:hover {
        background: #3977C8;
        color: #FFF;
        text-decoration: none;
    }
    .pollInterface .btnPoll-blue:active,
    .popupWindow.poll-module .btnPoll-blue:active,
    .pollInterface .block .btnPoll-blue:active {
        background: #5A60F1;
    }
    .pollInterface .block .question-body {
        margin-left: 30px;
    }
    .pollInterface .block .question-body .answer.KALDAR {
        max-width: 400px;
    }
    .pollInterface .block .question-body .answer .silver-radio>.radio-row {
        margin: 12px 0;
    }
    .popupWindow.poll-module>.popup-container>.content>div {
        text-align: center;
        padding: 0 16px;
    }
    .popupWindow.poll-module .login-title {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 1.1;
    }
    .popupWindow.poll-module .btnPoll-blue {
        margin: auto;
    }
    .popupWindow.poll-module.login .btnPoll-blue {
        display: block;
        background: #5097F4;
        border-radius: 50px;
        padding: 8px 106px;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        color: #FFF;
        transition: linear .2s;
        width: fit-content;
        height: fit-content;
        margin: auto;
        margin-bottom: 32px;
    }
    .popupWindow.poll-module>.popup-container>.content.nice-scroll {
        position: relative;
        width: 100%;
        padding: 10px 20px;
        height: calc(100% - 48px);
        overflow: auto;
        padding: 0;
        position: relative;
        background: #F8F9FF;
    }
    .popupWindow.poll-module.login>.popup-container>.content>div {
        text-align: center;
        padding: 0;
    }
    .popupWindow.poll-module.login .popupMain-content {
        position: relative;
        width: 490px;
    }
    .popupWindow.poll-module.login .title {
        font-family: 'Inter';
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
        text-align: center;
        margin-bottom: 32px;
        color: #19297C;
    }
    .popupWindow.poll-module.login .field-container {
        margin-bottom: 16px;
    }
    .popupWindow.poll-module.login .tb-name {
        font-weight: 400;
        font-size: 16px;
        line-height: 18px;
        color: #7E7E7E;
        margin-bottom: 10px;
        text-align: left;
    }
    .popupWindow.poll-module.login .tb-name.small {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 12px;
    }
    .popupWindow.poll-module.login .silver-textbox {
        outline: none;
        background: #E0EDFF;
        border-radius: 10px;
        width: 100%;
        min-height: 36px;
        font-weight: 400;
        font-size: 12px;
        line-height: 18px;
        border: none;
        padding: 8px 16px;
        color: #000000;
    }
    .popupWindow.poll-module.login .field-container .silver-control {
        margin-bottom: 8px;
    }
    .popupWindow.poll-module.login .register {
        font-weight: 400;
        font-size: 14px;
        line-height: 16px;
        text-align: center;
    }
    .popupWindow.poll-module.login .register a {
        color: inherit;
        text-decoration: underline;
        font-weight: 700;
    }
    .popupWindow.poll-module.login .register-tb {
        position: relative;
        width: 100%;
        gap: 0 48px;
        margin-bottom: 48px;
    }
    .popupWindow.poll-module.login .register-tb .left {
        max-width: 336px;
        width: 100%;
    }
    .popupWindow.poll-module.login .register-tb .right {
        max-width: 208px;
        width: 100%;
        align-self: flex-end;
    }
    .popupWindow.poll-module.login #Captcha img {
        width: 208px;
    }
    .popupWindow.poll-module.login #Captcha img.loader {
        width: auto;
    }
    .popupWindow.poll-module.login #Captcha ul {
        font-size: 10px;
        line-height: 10px;
        margin-top: 16px !important;
    }
    .popupWindow.poll-module.login .register-tb .left #Captcha ul {
        position: absolute;
    }
    .popupWindow.poll-module.login #Captcha ul span::before {
        display: none;
    }
    .popupWindow.poll-module.login .form-group.error input {
        border: 1px solid red;
    }
    .popupWindow.poll-module.login .form-group {
        margin-bottom: 47px;
    }
    .popupWindow.poll-module.login .error-text {
        display: none;
        color: red;
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 16px;
        text-align: center;
    }
    .popupWindow.poll-module.login .error-text.active {
        display: block;
    }
    .popupWindow.poll-module.login .forgot {
        color: #337ab7;
    }
    .popupWindow.poll-module.login .message {
        margin-bottom: 32px;
        font-size: 20px;
        line-height: 24px;
    }
    .popupWindow.poll-module.login .field-container .error-text,
    .popupWindow.poll-module.login .field-container .error-message {
        display: none;
        color: red;
        font-size: 12px;
        line-height: 12px;
        text-align: left;
        margin-top: 8px;
    }
    .popupWindow.poll-module.login .field-container.error .error-text,
    .popupWindow.poll-module.login .field-container .silver-control.error .error-message {
        display: block;
    }
    .popupWindow.poll-module.login .btn-university {
        position: relative;
        display: flex;
        background: #fff;
        border-radius: 5px;
        padding: 4px 16px;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: #000;
        transition: linear .2s;
        width: fit-content;
        height: fit-content;
        margin: auto;
        margin-bottom: 16px;
        align-items: center;
        gap: 8px;
        filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.1));
    }
    .popupWindow.poll-module.login .btn-university .logo {
        display: block;
        background: url(/imgs/vectors/uni2035.png) 00 no-repeat;
        width: 60px;
        height: 35px;
        background-size: cover;
    }
    .popupWindow.poll-module.login .btn-university .separator {
        display: block;
        position: relative;
        height: 20px;
        width: 1px;
        background: #000;
    }
    .popupWindow.poll-module.login .btn-university:hover {
        filter: drop-shadow(0px 4px 20px rgba(83, 93, 150, 0.2));
    }
    .pollInterface .silver-checkbox.checkbox-label label {
        position: relative;
        top: -3px;
        top: 0px;
        margin-bottom: 0;
        font-weight: normal;
    }
    .pollInterface .silver-checkbox label:before,
    .pollInterface .silver-radio>.radio-row>input+label {
        content: '';
        background-image: none;
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 1px solid #3977C8;
        border-radius: 3px;
        cursor: pointer;
        margin-right: 8px;
    }
    .pollInterface .silver-radio>.radio-row>input+label {
        border-radius: 50%;
        width: 24px;
        height: 24px;
    }
    .pollInterface .silver-radio>.radio-row>input:checked+label {
        
        border: 7px solid #3977C8;
    }
    .pollInterface .silver-checkbox input:checked+label:before {
        background: url(https://profpilot.ru/imgs/vectors/checked-arrow-white.svg) 00 no-repeat;
        background-position: center center;
        background-color: #3977C8;
    }
    .pollInterface .silver-checkbox.checkbox-label label.imposter+span,
    .pollInterface .silver-radio>.radio-row>span {
        font-size: 14px;
        line-height: 16px;
        color: #262B43;
    }
    .pollInterface .SilverCombo {
        width: 100%;
        outline: none;
        font-family: inherit;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        color: #000000;
        min-height: 34px;
        transition: border-color .2s;
        position: relative;
        overflow: initial;
        padding: 0;
        border-radius: 10px;
    }
    .pollInterface .SilverCombo {
        min-height: auto;
    }
    .pollInterface .SilverCombo td {
        border: none;
        border-color: transparent;
        border-radius: 10px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .pollInterface .SilverCombo .td-carret {
        border-radius: 10px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-color: transparent;
    }
    .pollInterface .SilverCombo .silver-textbox {
        cursor: pointer;
        margin: 0;
        border-color: #bbd0ff;
    }
    .pollInterface .SilverCombo .silver-textbox:focus-visible,
    .pollInterface .SilverCombo .silver-textbox:focus {
        
        box-shadow: none;
    }
    .pollInterface .SilverCombo .holder {
        position: absolute;
        width: 100%;
        min-height: 200px;
        max-height: 300px;
        top: 34px;
        left: 0px;
        border-radius: 8px;
        border-color: #bbd0ff;
        background: white;
        box-shadow: -4px 5px 18px rgba(29, 42, 68, .13);
        -webkit-transition: opacity .1s;
        transition: opacity .1s;
        box-sizing: border-box;
        outline: none;
        z-index: 999;
        max-height: 300px;
    }
    
    .pollInterface .SilverCombo .holder .table-combo-header {
        display: none;
    }
    .pollInterface .SilverCombo .holder {
        min-height: unset;
        
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    .pollInterface .SilverCombo .holder .table-silver>tbody>tr>td {
        width: 100%;
        min-height: 34px;
        padding: 0px 20px;
        display: flex;
        align-items: center;
        background: inherit;
        color: #000;
        box-shadow: none;
        text-shadow: none;
        color: #556066;
        box-sizing: border-box;
        cursor: pointer;
        user-select: none;
        font-weight: normal;
        font-size: 14px;
        text-align: left;
    }
    .pollInterface .SilverCombo .holder .overflow {
        overflow: auto;
    }
    .pollInterface .SilverCombo .holder .overflow::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: #E2EDFF;
        border-radius: 10px;
    }
    .pollInterface .SilverCombo .holder .overflow::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #5097F4;
        border: 2px solid #E2EDFF;
    }
    .pollInterface .SilverCombo .holder .overflow::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
        background-color: #E2EDFF;
        border-radius: 5px;
    }
    .pollInterface .SilverCombo .table-silver.table-combo {
        width: 100%;
    }
    .pollInterface .SilverCombo .holder .table-silver>tbody>tr>td {
        border: none !important;
        padding-top: 0;
        padding-bottom: 0;
        
        font-size: 14px;
        line-height: 1.1;
        min-height: 26px;
        color: #262B43;
        border-radius: 0;
        padding: 5px 20px;
    }
    .pollInterface .SilverCombo .btn-silver-carret {
        background: url(https://profpilot.ru/imgs/vectors/arrow.svg) 0 0 no-repeat;
        width: 12px;
        height: 7px;
        margin-left: 11px;
        position: relative;
        flex: 0 0 auto;
        padding: 0;
        border: 0;
        border-radius: 0;
    }
    .pollInterface .SilverCombo .btn-silver-carret {
        margin-left: 0;
        border-color: #000000 !important;
        padding: 33px 16px 0px 10px;
        background-position: center;
        filter: invert(79%) sepia(9%) saturate(1629%) hue-rotate(192deg) brightness(102%) contrast(101%);
    }
    .pollInterface .SilverCombo .btn-silver-carret:active {
        box-shadow: none;
    }
    .pollInterface .SilverCombo .carret {
        display: none;
    }
    .pollInterface .silver-control .silver-textbox,
    .pollInterface .silver-control .silver-memo,
    .pollInterface .silver-spin .silver-textbox {
        border-color: #bbd0ff;
        background: #fdfdff;
    }
    
    .popupWindow {
        min-width: 250px;
        min-height: 200px;
        background: #FFF;
        color: black;
        box-shadow: 0 4px 17px 6px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .16), 0 0 1px 0 rgba(0, 0, 0, .16);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 2px 4px 0 rgba(0, 0, 0, .2);
        border-radius: 20px;
        box-sizing: border-box;
        position: absolute;
        font-family: inherit;
    }
    .popupWindow.modal-type {
        min-width: initial;
        min-height: initial;
        width: 90%;
        height: 90%;
        position: absolute;
        z-index: 999999;
        box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .16), 0 0 1px 0 rgba(0, 0, 0, .16);
    }
    .popupWindow.animated {
        transition: all .4s cubic-bezier(.25, .8, .25, 1);
    }
    .popupWindow.modal-type.confirm-type {
        width: initial;
        height: initial;
        min-width: 400px;
    }
    .popupWindow>.popup-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .popupWindow>.popup-container>div:last-child {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .popupWindow>.popup-container>.head {
        height: 48px;
        width: 100%;
        background: #F8F9FF;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        font-family: inherit;
        line-height: 1;
        display: flex;
        flex-direction: row;
        padding: 10px 20px 10px 32px;
        font-weight: bold;
    }
    .popupWindow>.popup-container>.head>span {
        font-weight: 500;
        font-size: 20px;
        line-height: 20px;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        width: 100%;
        color: #3977C8;
        margin: 0;
    }
    .popupWindow>.popup-container>.head.move {
        cursor: move;
    }
    .popupWindow>.popup-container>.head>button.close {
        -webkit-box-align: baseline;
        align-items: baseline;
        border-width: 0px;
        box-sizing: border-box;
        display: inline-flex;
        font-size: inherit;
        font-style: normal;
        font-weight: normal;
        max-width: 100%;
        text-align: center;
        text-decoration: none;
        white-space: nowrap;
        background: none;
        border-radius: 3px;
        cursor: pointer;
        
        transition: background 0.1s ease-out 0s, box-shadow 0.15s cubic-bezier(0.47, 0.03, 0.49, 1.38) 0s;
        vertical-align: middle;
        width: auto;
        outline: none !important;
        color: #000 !important;
        text-shadow: none !important;
        font-size: 33px;
        margin-top: -11px;
        margin-right: 0px
    }
    .popupWindow>.popup-container>.head>button.close>span {
        display: none;
    }
    .popupWindow>.popup-container>.head>button.close {
        width: 18px;
        height: 18px;
        background: url(/imgs/vectors/close.svg) 0 0 no-repeat;
        margin-top: 0;
        opacity: 1;
        filter: invert(48%) sepia(11%) saturate(3148%) hue-rotate(174deg) brightness(88%) contrast(88%);
    }
    .popupWindow>.popup-container>.head>button.close:hover {
        opacity: 1;
    }
    .popupWindow>.popup-container>.footer {
        background: #f9fbfc;
        height: 50px;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding: 10px 20px 10px 19px;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .popupWindow>.popup-container>.footer>.button {
        font-size: 16px;
        background-color: #3F53D9;
        border-radius: 3px;
        color: #ffffff;
        display: block;
        font-family: sans-serif;
        line-height: 20px;
        text-align: center;
        text-decoration: none;
        text-size-adjust: none;
        margin-left: 15px;
        padding: 5px 20px;
        transition: all 300ms ease;
        background: linear-gradient(97.25deg, #6BFFE4 -70.76%, #5197FF 133.16%);
    }
    .popupWindow>.popup-container>.footer>.button:hover {
        background: #0068ff;
        background: linear-gradient(92.14deg, rgba(107, 255, 228, 0.66) -17.01%, rgba(81, 151, 255, 0.66) 112.14%);
    }
    .popupWindow>.popup-container>.footer>.button.cancel {
        background-color: transparent;
        background: transparent !important;
        color: black;
    }
    .popupWindow>.popup-container>.footer>.button.cancel:hover {
        background-color: #e6e9ef;
        background: #e6e9ef;
    }
    .popupBackDrop {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: rgb(103 133 163 / 60%);
        background: rgba(0, 0, 0, 0.32);
        z-index: 99;
        overflow: hidden;
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
        -webkit-transition: opacity .4s cubic-bezier(.25, .8, .25, 1);
        transition: opacity .4s cubic-bezier(.25, .8, .25, 1);
    }
    .popupBackDrop.animated {
        opacity: 0;
    }
    .popupBackDrop.animated.shown {
        opacity: 1;
        background: rgba(0, 0, 0, 0.65);
    }
    .pollInterface .pollholder input[type="text"] {
        margin: 0 !important;
        border-color: #bbd0ff !important;
    }
    .popupWindow.poll-module.login .field-container .silver-control.error .silver-textbox {
        border: 1px solid #ff000075;
    }
    .pollInterface .silver-control.validate-error .silver-textbox {
        border: 1px solid red;
    }
    .pollInterface .silver-checkbox.checkbox-label.disabled {
        opacity: 0.5;
    }
    .pollInterface .silver-checkbox.checkbox-label.disabled label,
    .pollInterface .silver-checkbox.checkbox-label.disabled label:before {
        cursor: default;
    }
    .pollInterface .silver-radio>.radio-row.disabled>input+label {
        cursor: default;
        opacity: 0.5;
    }
    .pollInterface .block .answer.flex-answer.textboxes {   
        max-width: calc(100% - 8px);
    }
    .pollInterface .mainDescription{
        margin-bottom:20px;
    }
    @media (max-width: 720px) {
        .pollInterface {
            padding: 0;
        }
        
        .pollInterface .header-name .required-small {
            width: 100%;
            margin-left: 28px;
            position: absolute;
            bottom: -10px;
        }
        .pollInterface .block-mainBody .header-name>.mainTitle {
            font-size: 16px;
        }
        .pollInterface .block .question-body .question-name {
            font-size: 14px;
            line-height: 1.3;
        }
        .pollInterface .silver-checkbox.checkbox-label label.imposter+span,
        .pollInterface .silver-radio>.radio-row>span {
            font-size: 12px;
        }
        .pollInterface .block .question-body {
            margin-left: 0;
        }
        .pollInterface .block-mainBody>.flex-row {
            flex-direction: column;
            gap: 12px;
        }
        .pollInterface .block .question-body .btnPoll-blue {
            margin-top: 16px;
        }
        .pollInterface .block .question-body .answer.marker {
            margin-bottom: 8px;
        }
        .pollInterface .block-mainBody .flex-row>.answered {
            align-self: flex-start;
            margin-left: 24px;
            margin-top: -10px;
        }
        .pollInterface .block-mainBody .flex-row>.answered.right {
            margin-top: 4px;
            margin-left: 27px;
        }
        .popupWindow.poll-module.login .popupMain-content {
            padding: 0 16px;
        }
    }
    @media (max-width: 375px) {
        .popupWindow.poll-module .login-title {
            margin-bottom: 12px;
            font-size: 16px;
            line-height: 1.1;
        }
        .popupWindow.poll-module>.popup-container>.head {
            height: 32px;
        }
        .popupWindow.poll-module > .popup-container > .content.nice-scroll{
            height: calc(100% - 32px);
        }
    }





.poll-module .directLink .silver-textbox.disabled {
        color: inherit;
        background-color: #fff;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        cursor: pointer;
        padding-left: 12px;
    }
    .poll-module .directLink .btn {
        display: block;
        padding: 10px 16px;
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        color: #FFF;
        background: #C6D0DB;
        border-radius: 20px;
        width: fit-content;
        
        visibility: visible;
        cursor: default;
        transition: linear .2s;
        cursor: pointer;
        background: #5097F4;
        border: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
        .poll-module .directLink .btn span {
            font-size: 14px !important;
            line-height: 16px !important;
            margin: 0 !important;
        }    
        .poll-module .directLink .btn:focus {
            color: #FFF;
        }
        .poll-module .directLink .btn:hover {
            background: #3977C8;
            color: #FFF;
        }
        .poll-module .directLink .btn:active {
            background: #5A60F1;
            color: #FFF;
        }
    .pollInterface .aeroError {
        color: red;
        text-align: center;
    }
    .pollInterface .popupBackDrop.animated.shown {
        background: rgba(255, 255, 255, 0.65) !important;
    }
