.requestFormPopup__form {
    max-width: 100%;
    margin: 0 auto;
}
.form-input__wrapper {
    margin-bottom: 5px;
}
.requestFormPopup__icon {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 10px auto;
    background-image: url('../../../../image/icon/search.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: relative;
    -webkit-filter: var(--filter-orange-400);
    filter: var(--filter-orange-400);
}
#requestFormPopupIconSearch.requestFormPopup__icon {
    background-image: url('../../../../image/icon/search.svg');
}
#requestDonePopupIcon.requestFormPopup__icon {
    background-image: url('../../../../image/icon/cloud_checked.svg');
    -webkit-filter: var(--filter-green-400);
    filter: var(--filter-green-400);
}
#requestErrorPopupIcon.requestFormPopup__icon {
    background-image: url('../../../../image/icon/smiley_sad_light.svg');
    -webkit-filter: var(--filter-red);
    filter: var(--filter-red);
}
.requestFormPopup__title {
    font-size: 24px;
    line-height: 36px;
    font-style: normal;
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: 5px;
    text-align: center;
    cursor: default;
}
#requestFormPopup .requestFormPopup__title {
    margin-top: 20px;
}
#requestDonePopup .requestFormPopup__title {
    margin-bottom: 20px;
}
#appErrorPopup .requestFormPopup__title {
    margin-bottom: 10px;
}
.requestFormPopup__subtitle {
    font-size: 18px;
    line-height: 22px;
    font-style: normal;
    font-weight: var(--fw-regular);
    color: var(--color-text);
    margin-bottom: 30px;
    text-align: center;
    cursor: default;
}
.requestFormPopup .modal-content {
    /* width: 580px;
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden; */
}
.requestFormPopup .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 1;
    color: var(--color-transparent);
    display: block;
    width: 16px;
    height: 16px;
    margin: 0;
    background-image: url('../../../../image/icon/cross.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    -webkit-filter: var(--filter-gray-400);
    filter: var(--filter-gray-400);
 }
 .requestFormPopup .btn-close:hover,
 .requestFormPopup .btn-close:active,
 .requestFormPopup .btn-close:focus {
    -webkit-filter: var(--filter-text);
    filter: var(--filter-text);
}
.requestFormPopup .modal-body {
    padding: 30px 50px 15px 50px;
}
.requestFormPopup .modal-body .form-input__wrapper {
    margin-bottom: 25px;
}
.requestFormPopup .modal-body .form-input__wrapper-message {
    margin-bottom: 10px;
}
.requestFormPopup input.form-control, 
.requestFormPopup input.form-control:placeholder-shown {
    padding: 9px 15px 9px 20px;
}
.requestFormPopup textarea.form-control, 
.requestFormPopup textarea.form-control:placeholder-shown {
    min-height: 120px !important;
    max-height: 120px !important;
    padding: 9px 15px 9px 20px;
}
.requestFormPopup .form-tip__wrapper  p {
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-style: normal;
    font-weight: var(--fw-regular);
    color: var(--color-gray-500);
    cursor: default;
    margin: 0;
}
.requestFormPopup {
    /*background-color: rgba(17, 24, 39, 0.5);*/
    backdrop-filter: blur(1px);
}
.requestFormPopup > .modal-dialog {
    backdrop-filter: blur(0px);
}


.requestFormPopup.loading .modal-content::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    opacity: 0.7;
    z-index: 98;
    cursor: wait;
 }
 .requestFormPopup.loading .modal-content::after {
    position: absolute;
    content: '';
    display: block;
    width: 34px;
    height: 32px;
    top: 50%;
    left: 50%;
    background-image: url('../../../../image/icon/loading.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transform: translate(-50%, -50%);
    -webkit-filter: var(--filter-orange-500);
    filter: var(--filter-orange-500);
    animation: spinLoader 1s linear infinite;
    z-index: 98;
    cursor: wait;
}
@keyframes spinLoader {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.requestFormPopup__list-container {
    background-color: var(--color-gray-10);
    padding: 15px 20px 15px 20px;
    margin: 0 0 20px 0;
    border-radius: 5px;
    cursor: default;
}
.requestFormPopup__list-title {
    font-size: 14px;
    line-height: 21px;
    font-style: normal;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    margin-bottom: 8px;
}
.requestFormPopup__list-number {

}
.requestFormPopup__list-body {

}
.requestFormPopup__list-item {
    margin-bottom: 5px;
}
.requestFormPopup__list-item-title {
    font-size: 12px;
    line-height: 16px;
    font-style: normal;
    font-weight: var(--fw-medium);
    color: var(--color-text);
}
.requestFormPopup__list-item-url {

}
.requestFormPopup__list-item-link {
    font-size: 8px;
    line-height: 8px;
    font-style: normal;
    font-weight: var(--fw-medium);
    color: var(--color-gray-500);
    text-decoration: none;
    word-break: break-all;
}
.requestFormPopup__list-item-link:hover,
.requestFormPopup__list-item-link:active,
.requestFormPopup__list-item-link:focus {
    color: var(--color-blue-400);
    text-decoration: none;
    cursor: pointer;
}
.requestFormPopup__list-more-container {

}
.requestFormPopup__list-show-more-text {
    font-size: 12px;
    line-height: 18px;
    font-style: normal;
    font-weight: var(--fw-medium);
    color: var(--color-blue-400);
    cursor: pointer;
}
.requestFormPopup__list-more-container .requestFormPopup__list-show-more,
.requestFormPopup__list-more-container.has-more.open .requestFormPopup__list-show-more {
    display: none;
}
.requestFormPopup__list-more-container.has-more .requestFormPopup__list-show-more {
    display: flex;
}
.requestFormPopup__list-more-container .requestFormPopup__list-more {
    display: none;
}
.requestFormPopup__list-more-container.has-more.open .requestFormPopup__list-more {
    display: block;
}

@media screen and (max-width: 1201px) {

}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {
    .requestFormPopup .modal-body {
        padding: 30px 30px 15px 30px;
    }
    .requestFormPopup__title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 5px;
    }
    #requestDonePopup .requestFormPopup__title {
        margin-bottom: 10px;
    }
}