@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,100&display=swap');

html{
    font-family: 'Quicksand', sans-serif !important;
}

.body-login{
    margin: 0;
    padding: 0;
    background: linear-gradient(130deg,#01622c,#6bb537,#01622c);
    background-size: 180% 180%;
    animation: gradient-animation 80s ease infinite;
    height: 100%;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Adjust the opacity for the blur effect */
    backdrop-filter: blur(10px); /* Adjust the blur intensity */
    z-index: 1; /* Place it above other content */
}

.no-overlay {
    position: relative; /* Ensure it's above the overlay */
    z-index: 2; /* Place it above the overlay */
    padding: 20px;
}

.fadegraded{
    background-color: #ffffff;
    border-radius: 5px;
}

.fadegraded > .inner {
    background-color: #ffffff;
    border-radius: 5px;
}

body {
    background-color: rgba(0,0,0,0.05);
    color: #686B6D !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400 !important;
}

.item {
    color: #686B6D !important;
}

.hiden {
    display: none !important;
}

.content {
    padding-bottom: 30px;
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.justified{
    text-align: justify;
}

.bold{
    font-weight: bold;
}

.sticky{
    top: 0px;
    position: sticky !important;
}

.ui.menu{
    border: 1px solid rgba(0,0,0,0.09);
    box-shadow: 0 3px 24px rgb(0 0 0 / 8%) !important;
}

.actions-table-header {
    font-weight: bold;
    display: block;
    height: 40px;
}

.ui.segment.purple.graded {
    padding: 1.5em 1.5em;
    background: rgb(100,53,201);
    background: linear-gradient(156deg, rgba(100,53,201,1) 35%, rgba(150,39,186,1) 100%, rgba(51,21,116,1) 100%);
    color: white;
}

.ui.segment.orange.graded {
    padding: 1.5em 1.5em;
    background: rgb(242,113,28);
    background: linear-gradient(146deg, rgba(242,113,28,1) 0%, rgba(251,189,9,1) 100%);
    color: white;
}

.ui.segment.green.graded {
    padding: 1.5em 1.5em;
    background: rgb(32,186,69);
    background: linear-gradient(146deg, rgba(32,186,69,1) 0%, rgba(181,204,25,1) 100%);
    color: white;
}

