
.sp-thumbnail-container {
    width: unset !important;
}

.sp-top-thumbnails {
    width: 100% !important;
}


.sp-top-thumbnails .sp-thumbnails {
    margin: 0 auto;
}

.sp-top-thumbnails div {
    margin-right: 5px;
    margin-left: 5px;
}

.sp-top-thumbnails .sp-selected-thumbnail:before {
    content: '';
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0;
    background: #8089ff;
    color: inherit;
}

.ui-gradient-udu {
    color: white;
    background: -webkit-linear-gradient(45deg, #334387 0%, #6e85f8 50%, #b9654c 100%);
    background: linear-gradient(45deg, #334387 0%, #6e85f8 50%, #b9654c 100%);
}


.ui-gradient-red {
    color: white;
    background: -webkit-linear-gradient(45deg, #C93055 0%, #ff3661 50%, #C93055 100%);
    background: linear-gradient(45deg, #C93055 0%, #ff3661 50%, #C93055 100%);
}

.ui-gradient-udu h1 {
    color: white;
}

.blue-bg {
    background: #6e85f8;
}

.text-blue-dark {
    color: #4c64cb
}

.no-padding-b {
    padding-bottom: 0 !important;
}

/*  
*
* ADDED ON 12-01-2021
*
*/

/* FOOTER */
.footer-flex{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.footer-flex .copyright{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8em;
}
.footer-flex .legal {
    line-height: 40px;
    font-size: 0.8em;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer-flex .legal .sec1,
.footer-flex .legal .sec2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer-flex .legal .separator,
.footer-flex .legal .mid-separator {
    margin: 0px 5px;
}
.footer-flex .social{

}
.footer-flex .mid-separator{
    display: block;
}

/* LOADER */
#loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90000;
    height: 100%;
    width: 100%;
    background: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
}
#loader .center {
    position: relative;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    box-shadow: 2px 3px 10px #777, 10px 15px 30px #aaa;
}
#loader .udu-logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 7000;
    width: 100%;
    height: 100%;
    padding: 2px;
    z-index: 7000;
    display: flex;
    font-size:40%;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    background: white;
    border-radius: 50%;
    background-clip: content-box;
}
#loader .udu-logo .loader-icon {
    animation: fading 1.5s infinite ease;
    height: 120px;
    width: 120px;
    margin-top: 20px;
}
#loader .udu-logo span {
    animation: fading 1.5s infinite ease;
    font-size: 2em;
    color: #1a1a1a;
    margin-top: -10px;
}
#loader .udu-rim {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(38, 136, 228),  rgb(38, 136, 228));
    animation: rotating 5s infinite;
}
@keyframes fading {
    0% { opacity: 0.9; }
    50% { opacity: 0.7; }
    100% { opacity: 0.9; }
}
@keyframes rotating {
    0% { transform: rotateZ(0deg); }
    50% { transform: rotateZ(180deg); }
    100% { transform: rotateZ(360deg); }
}


@media screen and (max-width: 1000px) {
    .footer-flex{
        flex-direction: column;
    }
    .footer-flex .copyright{
    
    }
    .footer-flex .legal {
        flex-direction: column;
        margin: 20px 0;
    }
    .footer-flex .legal .sec1,
    .footer-flex .legal .sec2 {
        line-height: 20px;
    }
    .footer-flex .legal .separator
    .footer-flex .legal .mid-separator {
        margin: 0px 2px;
    }
    .footer-flex .social{
        padding: 10px 0;
    }
    .footer-flex .mid-separator{
        display: none;
    }
}