.full-loading{
    display: none;
    width: 100%;
    height: 100%;
    padding: 0.9375rem 0.875rem;
    margin: 0;
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255,255,255,0.6);
    z-index: 5001;
}
.full-loading.active { display: flex; justify-content: center; align-items: center; }
.rollloader {
    position: relative;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    animation: roll 1s ease-in-out infinite alternate;
}
.rollloader:after{
    content:"";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 5px solid ;
    border-color: var(--darkred) transparent;
}
@keyframes roll {
    0% {
        transform: translateX(-150%) rotate(0deg) ;
    }
    100% {
        transform:  translateX(150%) rotate(360deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.download-items-table{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.download-items-table .item{
    background-color: #f16450;
    padding: 20px;
    width: 100%;
}
.download-items-table .item .row{
    align-items: center;
}
.download-items-table .item .download-again{
    font-size: 25px;
}

.request-table{
}
.request-table .thead{
    background-color: #f16450;
}
.request-table > *{
    display: flex;
    align-items: center;
}
.request-table > * > *{
    width: 25%;
    padding: 10px;
}
.request-table a.request-list-popup {
    border-top: 1px solid #444;
}
.request-table a.request-list-popup:last-child {
    border-bottom: 1px solid #444;
}
@media all and (max-width: 768px) {
    .request-table > * > *{
        text-align: center;
        padding: 4px;
    }   
}

#page_popup .page-detail{
    color: #192026;
    padding: 30px;
}
#page_popup .page-detail p{

}
#page_popup .page-detail p span{
    padding-right: 10px;
    font-weight: 500;
}
#page_popup .modal-close-button{
    padding-right: 10px;
    font-weight: 500;
}

.custom-popup .modal-content{
    padding: 30px;
}
.custom-popup .modal-content .newsletter-content .checkbox{
    display: flex;
    align-items: start;
    gap: 10px;
}
.custom-popup .modal-content .newsletter-content .checkbox input{
    margin-top: 5px;
    width: 15px;
    height: 15px;
    min-width: 15px;
}
.custom-popup .modal-content .newsletter-content .checkbox button{
    height: 100%;
    width: 100%;
}
.custom-popup .modal-content .popup-close-button{
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 25px;
    line-height: 1;
}

.custom-popup .modal-content .newsletter{
    border-top: 1px solid #ccc;
    padding-top: 15px;
    margin-top: 15px;
}

.custom-popup .modal-content iframe{
    max-width: 100%;
}

.custom-popup .modal-content .pretty input {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 1em;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.custom-popup .modal-content input,
.custom-popup .modal-content select {
    font-weight: 400 !important;
    border-color: #ccc !important;
}