#page-container {
    min-height: 80vh
}

.active {
    color: #2440c0 !important;
    border-bottom: 1px solid #615ec9 !important;
}
.hidden {
    visibility: hidden
}

.not-allowed {
    opacity: .65;
    cursor: not-allowed !important
}

.link-style {
    color: #2440c0;
    text-decoration: none
}

.link-style:hover {
    color: #425fe0;
    text-decoration: none
}

.errorlist {
    margin: 0;
    padding: 0;
    list-style: none
}

.errorlist li {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.successlist {
    background-color: #4bfae30f !important;
    border-color: #39e143 !important;
    color: #8CB560 !important
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #7975FC;
    border-top-color: #d1e6f9;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite
}


@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}


.scrollToTopBtn {
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    right: 20px;
    bottom: 20px;
    background: #7a46f3 url(/static/img/arrow-90deg-up.svg) no-repeat center 43%;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 12px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    opacity: 0;
    transform: translateY(100px);
    transition: all .5s ease
}

/* arabic scroll button */
.leftscrollToTopBtn {
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    left: 50px;
    right: auto;
    bottom: 20px;
    background: #7a46f3 url(/static/img/arrow-90deg-up.svg) no-repeat center 43%;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(100px);
    transition: all .5s ease
}

.scrollToTopBtn:hover, .leftscrollToTopBtn:hover {
    background-color: #615ec9
}

.showBtn {
    opacity: 1;
    transform: translateY(0)
}


/* Custom Buttons Style */
.btn-rounded {
    border-radius: 10rem !important;
}
.main-btn {
    color: #fff !important;
    background-color: #7a46f3 !important;
    border: 3px solid #7a46f3 !important;
    border-radius: 8px;
  }
  
.main-btn:hover {
    background-color: #fff !important;
    color: #7a46f3 !important;
    border: 3px solid #7a46f3 !important;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.success-btn {
    color: #fff !important;
    background-color: #8CB560 !important;
    border: 3px solid #8CB560 !important;
    border-radius: 5px;
  }
  
.success-btn:hover {
    background-color: #fff !important;
    color: #8CB560 !important;
    border: 3px solid #8CB560 !important;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.primary-btn {
    color: #fff !important;
    background-color: #2440c0 !important;
    border: 3px solid #2440c0 !important;
    border-radius: 5px;
  }
  
.primary-btn:hover {
    background-color: #fff !important;
    color: #2440c0 !important;
    border: 3px solid #2440c0 !important;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.info-btn {
    color: #fff !important;
    background-color: #179cda !important;
    border: 3px solid #179cda !important;
    border-radius: 5px;
  }
  
.info-btn:hover {
    background-color: #fff !important;
    color: #179cda !important;
    border: 3px solid #179cda !important;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.danger-btn {
    color: #fff !important;
    background-color: #c03737 !important;
    border: 3px solid #c03737 !important;
    border-radius: 5px;
  }
  
.danger-btn:hover {
    background-color: #fff !important;
    color: #c03737 !important;
    border: 3px solid #c03737 !important;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.dark-btn {
    color: #fff !important;
    background-color: #343a40 !important;
    border: 3px solid #343a40 !important;
    border-radius: 5px;
}

.dark-btn:hover {
    background-color: #fff !important;
    color: #343a40 !important;
    border: 3px solid #343a40 !important;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}