/*
* main.css
*/


:root {
    --grey100: #f6f8fa;
    --grey200: #c4c6c9;
    --grey300: #6a6b6d;
}

html{
    /*font-size: 18px;*/
    height: 100%;
} 

*,
*::before,
*::after {
    box-sizing: border-box;
    font-family: 'Nunito Sans', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 640px;
}

h1,
h2 {
    margin-top: 16px;
}

hr {
    border-color: transparent;
    border-style: none;
    border-width: 0px;
    height: 1px;
    background-color: var(--grey200);
}

button,
.button {
    border: none;
    background: none;
    font-size: 1.1rem;
}
button:hover,
.button:hover {
    text-decoration: underline;
}

.button {
    padding: 1px 6px;
    text-decoration: none;
}
.button:visited {
    color: black;
}

form > * {
    margin-bottom: 16px;
}

label {
    line-height: 1.2;
    font-size: 1.1rem;
    color: var(--grey300);
    padding: 6px 0 0;
}

input,
textarea,
select {
    border: 1px solid var(--grey200);
    border-radius: 6px;
    padding: 4px 6px;
    min-height: 30px;
    line-height: 1;
    font-size: 1.1rem;
}
input:disabled,
textarea:disabled {
    background-color: transparent;
    /* border: none; */
}

input[type="checkbox"] {
    min-height: auto;
    border: 1px solid var(--grey200);
    transform: scale(1.5);
	margin: 10px 3px;
}

.button-ps {
	font-size: 1rem;
	padding: 0.5em 1em;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #ddd;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
	}
.button-ps:hover,
.button-ps:active {
	background: #ccc;
	text-decoration: none;
	}
.button-right {
	float: right;
	}
.button-primary {}
.button-secondary {
	color: #222;
	background: none;
	}
	
.button-wrapper {
	margin: 20px 0 0;
	padding-left: 25%;
	}


/* [Utility Classes]------------------------------------------------- */

.muted {
    color: #6a6b6d;
}
.small {
    font-size: 0.9rem;
}
.hidden {
    display: none;
}

/* [End Utility Classes]-------------------------------------------------*/

#dimmer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #6a6b6d71;
    display: none;
}

#dashboard {
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    grid-template-rows: 100px auto;
}

#dashboard > header {
    /*border: 1px solid red;*/
    border-bottom: 1px solid var(--grey200);
    padding-left: 50px;
    background-color: var(--grey100);
    grid-column: span 2;
    display: flex;
    align-items: center;
}
#dashboard header h1{
    margin-right: 60px;
    font-size: 1.2rem;
    display: inline-block;
}

.view-panel {
    padding-top: 100px;
    padding-left: 7vw;
    padding-right: 7vw;
}
.output-view {
    width: 100%;
    height: calc(100vh - 300px );
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 150px;
    left: 50%;
    z-index: 200;
    transform: translate(-50%, 0);
    border-radius: 12px;
    border: 1px solid var(--grey200);
    padding: 30px;
    width: 800px;
    max-width: 90vw;
    background-color: var(--grey100);
    display: none;
}

/*Student Table styles*/
.table,
.student-table {
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}
.table tbody tr,
.student-table thead tr,
.student-table tbody tr {
    height: 40px;
    border-bottom: 1px solid var(--grey300);
    cursor: pointer;
}
.table tbody tr:nth-of-type(even),
.student-table tbody tr:nth-of-type(even) {
    background-color: var(--grey100);
}
.table tbody tr:hover,
.student-table tbody tr:hover {
    background-color: var(--grey200);
}

.table td,
.table th,
.student-table td,
.student-table th {
    text-align: left;
    padding-right: 1rem;
}

.table th {
    font-size: 1.15rem;
}

/* Hide download links with href containing "null" */
a[href*="null"] {
    display: none;
  }
  

/*#region [PreLoader]---------------------------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: white;
}

#preloaderCircle {
    position: fixed;
    top: calc(50% - 120px);
    left: calc(50% - 120px);
    width: 240px;
    height: 240px;
    border-radius: 50%;
   
    box-shadow: 16px 0 1px -16px  #3766ff,
                16px 0 1px -16px  #3766ff,
                16px 0 2px -16px  #3766ff,
                16px 0 32px -32px #134afe,
                16px 0 12px -12px #134afe,
                16px 0 44px -44px #134afe,
                inset -16px 0 20px -20px #3766ff,
                16px 0 16px -16px #134afe;
    
    
    -webkit-animation: spinner infinite 1s linear;
    animation: spinner infinite 1s linear;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner{
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*#endregion [PreLoader]---------------------------------------------------------------------------------*/

/*#region [Mobile]---------------------------------------------------------------------------------*/
@media only screen and (max-width: 1110px) {
    #dashboard {
        grid-template-columns: 0px 1fr;
    }
    button{
        margin-bottom: 16px;
    }
    .modal {
        position: fixed;
        top: 50px;
        left: 50%;
        z-index: 200;
        transform: translate(-50%, 0);
        border-radius: 12px;
        border: 1px solid var(--grey200);
        padding: 30px;
        width: 800px;
        max-width: 90vw;
        background-color: var(--grey100);
        display: none;
    }
}
/*#endregion [Mobile]---------------------------------------------------------------------------------*/
