.poll-container *{
    font-family: Cairo !important;
}
.poll-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    z-index: 9999;
}

.poll-title {
    color: #333c;
    margin: 20px 25px 50px;
}

.poll-rtl {
    direction: rtl;
}

.poll-ltr {
    direction: ltr;
}

.poll-form {
    width: 50%;
    margin: 25px auto;
    background: #fff;
    border-radius: 3px;
    padding: 30px;
    box-shadow: 5px 5px 20px 0 #1e1e1e;
    height: 88%;
    overflow: auto;
}

.poll-form-mobile {
    width: 80%;
}

.poll-form::-webkit-scrollbar-thumb {
    background: #BBB;
    border-radius: 10px;
}

.poll-form::-webkit-scrollbar-track {
    background: transparent;
}

.poll-form::-webkit-scrollbar {
    width: 8px;
}

.poll-inline {
    display: inline !important;
}

.poll-close-icon {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    width: fit-content;
    height: fit-content;
    padding: 5px;
    margin-top: -15px;
    margin-left: -15px;
    display: flex;
}

.poll-close-icon:hover {
    background: #DDD;
}

.poll-close-icon svg {
    width: 15px;
    height: 15px;
}

.poll-inputs {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin: 25px;
    padding: 0 15px;
}

.poll-inputs-mobile {
    margin: 15px 0;
    padding: 0;
}

.poll-question-title {
    color: #333c;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.poll-question-container {
    margin: 0 20px;
}

.poll-question-radio-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.poll-question-range-container {
    display: flex;
    gap: 5px;
}

.poll-question-text-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #949494;
    font-size: 16px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.poll-question-text-input:focus-visible {
    outline: none;
    border-bottom: 1px solid #1976d2;
}

.poll-question-textarea {
    resize: vertical
}

.poll-buttons {
    display: flex;
    flex-direction: row-reverse;
    margin: 60px 40px 15px;
    gap: 5px;
    height: 37px !important;
}

.poll-btn {
    cursor: pointer;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.poll-close-btn {
    color: #ababab;
}

.poll-close-btn:hover {
    background: #DDDDDD;
}

.poll-save-btn {
    color: #FFF;
    background: #1976d2;
    box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%), 0 1px 5px 0 rgb(0 0 0 / 12%);
    padding: 0;
}

.poll-save-btn input {
    background: #1976d2;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.poll-save-btn:hover {
    background: #05509b;
}

.poll-save-btn input:hover {
    background: #05509b;
}

.poll-save-btn input {
    background: none;
    border: none;
    font-size: inherit;
    color: inherit;
    cursor: inherit;
    display: block;
    padding: 10px 25px;
}

.poll-save-btn .poll-save-loading {
    display: none;
}

.poll-save-btn-loading input {
    display: none;
}

.poll-save-btn-loading .poll-save-loading {
    display: block;
}

.poll-save-loading svg {
    width: 70px;
    height: 37px;
}

.poll-error {
    display: flex;
    flex-direction: row-reverse;
    margin-left: 40px;
    color: #f44336;
    font-weight: bold;
}
