/** GLOBALS **/
*::-webkit-scrollbar {
	-webkit-appearance: none;
	background-color: #010101;
}

*::-webkit-scrollbar:vertical {
	width: 5px;
}

*::-webkit-scrollbar-button:increment,
*::-webkit-scrollbar-button {
	display: none;
}

*::-webkit-scrollbar:horizontal {
	height: 5px;	
}

*::-webkit-scrollbar-thumb {
	background-color: #ffbb0e;
	border-radius: 0;
}

*::-webkit-scrollbar-track {
	border-radius: 0;
}

*::selection {
	color: #010101;
	background: #ffbb0e;
}

/** HEADER **/
.header {
	font-family: 'Montserrat', sans-serif;
	position: relative;
	width: 100%;
}

.header__logo {
	position: relative;
	display: flex;
	justify-content: center;
	z-index: 99;	
}

.header__logo-image {
	margin-top: 100px;
	max-width: 200px;
	transition: all .3s ease;
}

.header__logo a:hover .header__logo-image {
	opacity: .7;
	transition: all .3s ease;
}

.header--minify {
	position: fixed;
	display: flex;
	align-items: center;
	height: 100px;
	background-color: #ffbb0e;
	z-index: 99;
}

.header--minify .header__logo {
	position: absolute;
	display: block;
	top: 15px;
	left: 50px;
}

.header--minify .header__logo-image {
	max-width: 70px;
	margin-top: 0;
}

.header__title {
	margin-left: 150px;
}

.header__menu ul {
	display: flex;
	align-items: center;
	gap: 50px;
	margin-left: 150px;
	list-style: none;
}

.header__menu a, 
.header__right a {
	font-weight: 700;
	color: #010101;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.header__menu a:hover,
.header__right a:hover {
	color: #010101;
	border-bottom: 2px solid #010101;
	transition: all 0.3s ease;
}

.header__right {
	position: absolute;
	right: 50px;
}

/** MAIN **/

.main {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	min-height: calc(100vh - 334px);
	padding-left: 50px;
	padding-right: 50px;
}

.main--top {
	padding-top: 100px;
	margin-bottom: 100px;
}

.main--bottom {
	margin-bottom: 100px;
}

.main__actions {
	position: absolute;
	top: 160px;
	right: 50px;
}

/** TEXT **/

.h1 {
	font-weight: 800;
	font-size: 70px;
	text-transform: uppercase;
	background-color: #010101;
	color: #ffbb0e;
	padding-left: 15px;
	padding-right: 15px;
	width: fit-content;
}

.h2 {
	font-weight: 700;
	font-size: 40px;
	text-transform: uppercase;
}

p {
	line-height: 25px;
}

/** ALERTS **/
.alert {
	border-radius: 5px;
	height: 50px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	padding-left: 20px;
	position: relative;
	line-height: normal;
}

.alert--close::after {
	content: 'x';
	position: absolute;
	right: 20px;
	cursor: pointer;
	transition: all .3s ease;
}

.alert--close::after:hover {
	opacity: .7;
	transition: all .3s ease;
}

.alert--success {
	background: #33ff0075;
	border: 1px solid #2cc00f;
	color: #2cc00f;
}

.alert--info {
	background: #00ffff75;
	border: 1px solid #0fc0c0;
	color: #0fc0c0;
}

.alert--warning {
	background: #ff000075;
	border: 1px solid #8a0101;
	color: #8a0101;
}

/** BUTTONS **/

.btn {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 50px;
	transition: all 0.3s ease;	
	cursor: pointer;
	text-transform: uppercase;
}

.btn:hover {
	transition: all 0.3s ease;
}

.btn--primary {
	background-color: #ffbb0e;
	border: 1px solid #ffbb0e;
	color: #010101;
}

.btn--primary:hover {
	background-color: #010101;
	border: 1px solid #010101;
	color: #ffbb0e;
}

.btn--secondary {
	background-color: #ffffff;
	border: 1px solid #ffbb0e;
	color: #010101;
}

.btn--secondary:hover {
	background-color: #ffbb0e;
	border: 1px solid #ffbb0e;
	color: #010101;
}

.btn--rounded {
	width: 50px;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	font-weight: 700;
}

.btn--link {
	color: #010101;
	text-transform: capitalize;
	font-size: 13px;
	border-bottom: 1px solid #010101;
	width: fit-content;
	height: fit-content;
}

.btn--link:hover {
	border-bottom: 1px solid transparent;
}

/** FORMS **/

.form label {
	display: inline-block;
	font-size: 20px;
	width: 150px;
}

.form-group {
	display: flex;
	margin-bottom: 15px;
}

.form-control {		
	font-size: 15px;
	padding-left: 15px;
	padding-right: 15px;
	border: 1px solid #010101;
	border-radius: 0;
}

input.form-control {
	position: relative;
	width: 350px;
	height: 30px;
}

input.form-control::-webkit-file-upload-button {
	background-color: #ffbb0e;
	border: none;
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	height: 100%;
}

input[type="file"].form-control {
	padding-top: 10px;
}

select.form-control {
	width: 370px;
	height: 35px;
}

textarea.form-control {
	width: 350px;
}

.form-image {
	margin-left: 150px;
}

.form .btn {
	margin-top: 20px;
}

/** FOOTER **/

.footer {
	font-family: 'Montserrat', sans-serif;
	background-color: #010101;
	color: #ffbb0e;
	padding-top: 80px;
	padding-bottom: 20px;
}

.footer__social,
.footer__menu ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	margin-left: -25px;
}

.footer__social {
	margin-bottom: 50px;
}
.footer__social a {
	transition: all 0.3s ease;
}

.footer__social a:hover {
	opacity: .7;
	transition: all 0.3s ease;
}
.footer__menu {
	margin-bottom: 10px;
}

.footer__menu ul {
	list-style: none;
}

a.link {
	font-weight: 700;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}

a.link:hover {
	border-bottom-width: 1px;
	border-bottom-style: solid;		
	transition: all 0.3s ease;
}

.form-table a.link {
	color: #010101;
}

.form-table a.link:hover {
	border-bottom-color: #010101;
}

.footer a.link {
	color: #ffbb0e;
}

.footer a.link:hover {
	border-bottom-color: #ffbb0e;
}

.footer__copyright {
	text-align: center;
}

/** DATALIST **/
.datalist {
	margin-bottom: 40px;
}

.datalist__item {
	position: relative;
	display: flex;
	justify-content: space-between;
	border: 1px solid #010101;
	padding: 15px;
	margin-bottom: 15px;
	min-height: 185px;
} 

.datalist--user .datalist__item {
	min-height: 170px;
}

.datalist__item .datalist-delete {
	position: absolute;
	left: 15px;
	bottom: 10px;
}

.datalist__item.event-cancel {	
	border: 1px solid #b30000;
	background-color: #f1f1f1;
	color: #b30000;
}

.datalist__item.event-cancel .tag-cancel {
	position: absolute;
	top: 50%;
	left: 22px;
	color: #c30303;
	border: 2px solid #c30303;
	background-color: #00000080;
	box-shadow: 0 0 15px rgb(255 255 255 / 50%);
	font-size: 20px;
	font-weight: 700;
	padding: 10px 20px;
	transform: translate(0, -50%) rotate(-25deg);
	cursor: default;
}

.datalist-image {
	width: 170px;
	height: 170px;
	max-height: 185px;
	object-fit: cover;
}

.datalist__info {
	text-align: center;
}

.datalist__info .alert {
	width: 300px;
	margin: 0 auto;
}

.datalist-title {
	margin-top: 10px;
	margin-bottom: 10px;
}

.datalist-date {
	font-size: 15px;
}

.datalist__action {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.datalist__action .btn {
	margin-bottom: 15px;
}

.datalist__action .btn:last-child {
	margin-bottom: 0;
}

.datalist-publish {
	margin-bottom: 15px;
}

/** PAGINATION **/
.pagination ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	list-style: none;
}

.pagination ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	color: #010101;
	border: 1px solid #010101;
	cursor: pointer;
}

.pagination ul li.current-page a,
.pagination ul li a:hover {
	background-color: #010101;
	color: #ffbb0e;
}

.pagination ul li a:hover svg {
	fill: #ffbb0e;
}

.pagination ul li.current-page a {
	cursor: default;
}

.pagination ul li.dots {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
}

/** FORM TABLE **/
.form-table {
	border: 1px solid #010101;
	min-width: 1150px;
}
.form-table__header,
.form-table__row {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
}

.form-table__header li,
.form-table__row li {
	text-align: center;
	border-left: 1px solid #010101;
	padding: 10px;
}

.form-table li {
	width: 100%;
	min-width: 125px;
}

.form-table li:first-child {
	min-width: 100px;
}

.form-table-col-8 li {
	width: calc(100%/8);
}

.form-table-col-6 li {
	width: calc(100%/6);
}

.form-table li.w100 {
	width: 100px;
}

.form-table li.w200 {
	width: 200px;
}

.form-table li.actions a {
	display: block;
	margin: 0 auto;
	width: fit-content;
}

.form-table__header {
	background-color: #010101;
	color: #ffbb0e;
}

.form-table__header li {
	border-bottom: 1px solid #010101;
}

.form-table__header li:first-child {
	border-left: 0;
}

.form-table__row.odd {
	background-color: rgba(255, 187, 15, .1);
}

.form-table__row li:first-child {
	text-align: left;
	border-left: 0;
	background-color: rgba(255, 187, 15, .1);	
	font-weight: 700;
	min-width: 100px;
}

.form-table__row li.text-center {
	text-align: center;
}

.form-table__row li.text-left {
	text-align: left;
}

.form-table-border-bottom {
	border-bottom: 1px solid #010101;
}

.form-table-border-bottom:last-child {
	border-bottom: 0;
}

.form-table input {
	height: 20px;
	text-align: center;
	border: 1px solid #010101;
	border-radius: 0;
	width: 100%;
	max-width: 200px;
}

.row-color-1 {
	background-color: rgba(255, 187, 15, .1);
}

.row-color-2 {
	background-color: rgba(255, 187, 15, .4);
}

.row-color-3 {
	background-color: rgba(255, 187, 15, .8);
}

/** DISTRIBUTIONS **/
.text-center {
	text-align: center;
}

.margin-auto {
	margin: 0 auto;
}

.w-50 {
	width: 50%;
}

.mt-50 {
	margin-top: 50px;
}

.d-none {
	display: none;
}

.d-flex {
	display: flex;
}

.justify-center {
	justify-content: center;
}

.pl-0 {
	padding-left: 0;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-200 {
	margin-bottom: 200px;
}

