.topHeader {
    float: right;
    padding: 10px 30px !important;
    position: relative;
    z-index: 1;
    background: #5b3189;
}

.row-header-top {
    color: white;
}

.nav-header-top .nav-item .a-custom {
    color: white;
}

.nav-link-custom {
    color: #5b3189 !important;
    font-weight: bold;
}

nav ul li a:after {
    background: #dee2e6;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #5b3189;
    border-color: #5b3189;
}

.btn-outline-success {
    color: #5b3189;
    border-color: #5b3189;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem #5c3189a2;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show>.btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #5b3189;
    border-color: #5b3189;
}

.btn-outline-success.focus,
.btn-outline-success:focus {
    box-shadow: 0 0 0 0.2rem #5c3189a2;
}

.topnavLogo {
    width: 600px;
    float: left;
}

.dropdown-item {
    color: #5b3189 !important;
}



/* loader page */

.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}

.loader>img {
    width: 100px;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}


/* end loader page */


/* scroll to top */

html {
    scroll-behavior: smooth;
}

#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: #5b3189;
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
}

#myBtn:hover {
    background-color: #915ec7;
    /* Add a dark-grey background on hover */
}
/* end scroll to top */