/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 22 2023 | 07:00:58 */
.admin-portal {
	padding: 10vh 0;	
}

.content__portal__action-btn {
	margin-bottom: 5vh;
}

.portal__class-list--head {
	background-color: #3f1d6d;
}

.portal__class-list--head p {
	padding: 10px;
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
}

.portal__class-list--body .class-list--body__item {
/* 	display: flex; */
	padding: 10px;
/* 	overflow-x: auto; */
}

.portal__class-list--body .class-list--body__item p:not(last-child) {
	margin-right: 10px;
}

.portal__class-list--body .class-list--body__item:nth-child(odd),
.content__portal-user .content__portal__item:nth-child(odd) {
	background-color: #f1edf5;
}

.portal__class-list--body .class-list--body__item:nth-child(even),
.content__portal-user .content__portal__item:nth-child(even) {
	background-color: #f2f3f6;
}

/* Custom Modal */
.portal__class-list--body .class-list--body__item .modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 4; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.portal__class-list--body .class-list--body__item .modal-content {
	background-color: #fefefe;
	margin: auto;
	margin-top: 13vw;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
}

.portal__class-list--body .class-list--body__item .modal-content__list {
	column-count: 2;
}

.portal__class-list--body .class-list--body__item .modal-content__list p {
	font-weight: 700;
}

.portal__class-list--body .class-list--body__item .modal-content__list p span {
	font-weight: 400;
}

/* The Close Button */
.portal__class-list--body .class-list--body__item button {
	cursor: pointer;
}

.portal__class-list--body .class-list--body__item .close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.portal__class-list--body .class-list--body__item .close:hover,
.portal__class-list--body .class-list--body__item .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

/* USER */
.content__portal-user--head {
	padding-top: 2vh;
	padding-bottom: 5vh;
}

.content__portal-user--head .h1 {
	padding: 0;
    margin: 0;
}

.content__portal-user--head input {
	margin-bottom: 0;
}

.content__portal-user .content__portal__item {
	padding: 10px;
}

.content__portal-user .content__portal__item p {
	margin-bottom: 0;
}

.content__portal-user .content__portal__item p.name {
	text-transform: capitalize;
}

.content__portal-user .pagination a {
	margin: 0 10px;
}

/* Reset Password */
.reset-password__input {
	display: none;
	padding: 10px 0;
}

.active + .reset-password__input {
	display: block;
}

.reset-password__input input {
	margin-bottom: 10px;
	width: 100%;
}

/* Status */
.action__wrap {
	display: flex;
}

.action__wrap * {
	cursor: pointer
}

/* Student/Player Filter */
.content__portal__form {
	padding-top: 2vh;
}

.content__portal__form .grid__col--4 {
	padding: 10px;
}

.content__portal__form .btn {
	height: 100%;
}

.item-value,
.content__portal__item p {
	width: 90%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn-loading svg {
	animation-name: spin;
	animation-duration: 5000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear; 
}

@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}

@media (min-width: 992px) {
	.item-title--mobile {
		display: none;
	}
}

@media (max-width: 992px) {
	.item-title--mobile  {
		font-weight: 600;
	}
	
	.item-value {
		margin-bottom: 10px;
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.admin-portal .custom__container {
		padding: 0 15px;
	}
	
	.content__portal-user--head .h1,
	.content__portal__action-btn .btn {
		margin-bottom: 10px;
	}
	
	.content__portal__action-btn input,
	.content__portal-user--head input {
		width: 100%;
	}
	
	.portal__class-list--body .class-list--body__item .modal-content__list {
		column-count: 1;
	}
	
	.content__portal__form .grid__col--4 {
		margin-bottom: 10px;
		padding: 0;
	}
	
	.content__portal__form .btn {
		height: 48px;
	}
	
	.content__portal__item .btn {
		margin-top: 10px;
	}
}