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

body {
    font-family: 'Poppins', sans-serif;
}

.hidden {
    visibility: hidden
}

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

.link-unstyled {
    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
}


#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)
    }
}

.jp-Notebook {
    padding: 0px !important;
    outline: none;
    overflow: auto;
    background: #fff !important;
  }


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

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

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

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

.custom_img {
    height: 500px;
    border-radius: 2%;
}

.border_img {
    border-radius: 2%;
}