@charset "utf-8";
/* CSS Document */

/* Body - Default Font and Layout */
body {
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #3C3C4F;

	background-color: #000;
}

:focus {
  outline: none !important;
}

/* Body - Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Body - Links */
a {
	color: #3C3C4F;

	transition: 0.3s;
}
	a:hover {
		color: #3C3C4F;
		text-decoration: underline;
		text-decoration-style: solid;
		text-decoration-thickness: 1px;

		transition: 0.3s;
	}

/* Body - Lines */
hr {
	border-top: 1px solid #eaedf2;
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Body - Lists */
ul.custom {
	list-style-type: "\2605";

	padding: 0 15px;
	margin: 0;
}
ul.custom li {
	padding: 4px 10px;
}

ul.inline {
	list-style: none;

	padding: 0;
	margin: 0;
}
ul.inline li {
	padding: 0;
}

/* Body - Headers */
h1, h2, h3, h4, h5 {
	font-family: "Outfit", sans-serif;
	font-weight: 700;
}
	h1 {
		font-size: 72px;
	}
	h2 {
		font-size: 64px;
	}
	h3 {
		font-size: 56px;
	}
	h4 {
		font-size: 48px;
	}
	h5 {
		font-size: 32px;
	}

/* Body - Default Buttons */
button {
	box-shadow: none !important;

	outline: none !important;
}
	button:focus {
		box-shadow: none !important;

		outline: none !important;
	}
	button:active {
		box-shadow: none !important;

		outline: none !important;
	}
	button:disabled, button:disabled:hover {
		background: #d5d5d5;
		color: #3C3C4F;
	}

video {
	width: 100%;
	height: 100%;

}

/* Tables */
.table {
	font-size: 14px;
	color: #3C3C4F;

	margin: 0;
	padding: 0;
}
.table thead th {
	border-top: none;
	border-bottom: 1px solid #dee2e6;
}
.table td, .table th {
	vertical-align: middle;
}
	.table td:last-child, .table th:last-child {
		text-align: right;
	}
.table img {
	border-radius: 25px;
	width: 40px;
	height: 40px;
}
.table.large-image img {
	border-radius: 4px;
	width: 70px;
	height: 70px;
}

/* Border */
.border-pink {
	border: 1px solid #e22066;
}
.border-top-pink {
	border-top: 1px solid #e22066;
}

/* Body - Disable Scroll */
.scroll-disable {
	position: fixed;

    overflow-y: scroll;

    width: 100%;

	touch-action: none;
}
.scroll-overlay {
	background: rgb(0, 0, 0, 0.8);

    position: absolute;
	z-index: 10003;

    width: 100%;
    height: 100%;

	transition: 0.5s;
	transition-timing-function: ease;
}

/* Body - Default Navigation - Sticky */
.sticky-element {
    position: sticky;
    top: 0;

	background: #ffffff;

    z-index: 10;
}

/* Text Lines Truncate */
.character-limit {
	white-space: nowrap;

	overflow: hidden;
	text-overflow: ellipsis;

	max-width: 150px;
}
.truncate-small {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.truncate-medium {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.truncate-large {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* Images */
.image-fit {
	object-fit: cover;
	overflow-clip-margin: unset;
}
.image-width-xxsmall {
	width: 45px;
}
.image-width-xsmall {
	width: 65px;
}
.image-width-small {
	width: 150px;
}
.image-width-medium {
	width: 280px;
}
.image-width-large {
	width: 480px;
}
.image-width-xlarge {
	width: 630px;
}

.image-height-xxsmall {
	height: 45px;
}
.image-height-xsmall {
	height: 85px;
}
.image-height-small {
	height: 120px;
}
.image-height-medium {
	height: 250px;
}
.image-height-large {
	height: 450px;
}
.image-height-xlarge {
	height: 600px;
}

/* */
.image-round {
    border-radius: 50%;
}
	.image-round.xsmall {
		width: 30px;
		height: 30px;
	}
	.image-round.small {
		width: 50px;
	    height: 50px;
	}
	.image-round.medium {
		width: 140px;
	    height: 140px;
	}
	.image-round.large {
		width: 220px;
	    height: 220px;
	}

/* */
.image-price {
    background: #e22066;
	border-radius: 0 0 0 4px;

	font-size: 12px;
	font-weight: 600;
	color: #fff;

	position: absolute;
	top: 0;
	right: 0;

	padding: 4px 8px;

	z-index: 10;
}
.image-featured {
	position: relative;
}
.image-featured::after {
    content: "Featured";

	background: #e22066;
	border-radius: 0 0 4px 0;

	font-size: 12px;
	font-weight: 600;
	color: #fff;

	position: absolute;
	top: 0;
	left: 0;

	padding: 4px 8px;
}
.image-with-text {
	position: relative;
}
	.image-with-text .grad {
		background-image: linear-gradient(rgba(255, 0, 0, 0), rgba(0, 0, 0, 1));
	    position: absolute;
	    bottom: 0;
		border-radius: 0 0 4px 4px;

	    z-index: 20;

	    width: 100%;
	    height: 150px;
	}
	.image-with-text .content {
		position: absolute;
		bottom: 20px;
		left: 0;
		right: 0;

		width: 100%;
		height: auto;

		color: #fff;

		margin: 0 auto;

		z-index: 30;
	}

/* */
.image-hover-wrapper {
    overflow: hidden;
}
.image-hover img:not(.no-hover) {
    transition: all 0.3s ease;
}
.image-hover:hover img:not(.no-hover) {
    filter: brightness(0.7);
	transform: scale(1.2);

	transition: all 0.3s ease;
}

/* */
.full-img-section {
	position: absolute;
	top: 0;
}
.full-img-section__right {
    position: relative;

    float: right;

    width: 50%;
    height: 100%;
}
.full-img-section__left {
    position: relative;

    float: left;

    width: 50%;
    height: 100%;
}

/* */
.image-section {
	position: absolute;
	top: 0;
}
.image-section__right {
    position: relative;

    float: right;

    width: 50%;
    height: 100%;
}
.image-section__left {
    position: relative;

    float: left;

    width: 50%;
    height: 100%;
}

/* Alert Popup */
.swal-overlay {
	background-color: rgba(0, 0, 0, 0.5);
}
.swal-title {
	font-size: 22px;
	font-weight: 700;
	color: #3C3C4F;
}
.swal-text {
	font-size: 16px;
	color: #3C3C4F;
}
.swal-modal {
	max-width: 500px;

    margin: 1.75rem auto;

	will-change: initial !important;
}

.swal-icon--success {
	border-color: #e22066;
}
.swal-icon--success__line {
	background-color: #e22066;
}
.swal-icon--success__ring {
	border: 4px solid #e22066;
}
.swal-overlay:before {
	height: auto;
}

.swal-button-container .btn-black {
    background: #000;
    border: none;

    color: #fff;
}
    .swal-button-container .btn-black:hover {
        background: #353535;

        color: #fff;
    }

/* Dropdowns */
.dropdown-menu {
	border: 1px solid #ddd;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 8px #e1e1e1;

	font-size: 14px;

	padding: 0;
	margin: 23px 0 0;
}
	th .dropdown-menu {
		margin: 14px 0 0;
	}
	.dropdown-item {
		background: none;
		border: none;

        font-size: 14px;
		color: #3C3C4F;
		text-decoration: none;

        margin: 0;
        padding: 15px;

		transition: 0.1s;
	}
	.dropdown-item:hover {
		background-color: #f5f5f5;

		transition: 0.1s;
	}
	.dropdown-item i {
		position: relative;
        top: 6px;

        font-size: 12px;

        float: right;
	}

	.navigation .dropdown-menu {
        background: #282828;
        border: none;
        border-radius: 4px;
		box-shadow: none;

        color: #717171;

        margin: 8px 0 0 0;
        padding: 0;

        min-width: 500px;
    }
        .navigation .dropdown-menu a {
            padding: 0;
        }
            .navigation .dropdown-menu a:hover {
                background: #282828;
            }
        .navigation .dropdown-header {
            border-bottom: 1px solid #535353;

            color: #a6a6a6;
            font-size: 16px;
            font-weight: 600;

            padding: 20px;
        }
        .navigation .dropdown-item {
            color: #a6a6a6;
            font-size: 14px;
            font-weight: normal;

            padding: 10px 20px;
        }
        .navigation .dropdown-item:hover {
            background: #282828;
        }
		.navigation .dropdown-item i {
			position: static;
			
			font-size: 20px;

			float: none;
		}

/* Progress Bar */
.progress-bar {
	background-color: #e22066;
}

/* Tooltip */
.tip {
	position: relative;
	display: inline;

	line-height: normal;

	cursor: pointer;
}
	.tip .tooltiptext {
		background-color: #282828;
		border-radius: 4px;

		font-size: 12px;
		color: #fff;
		text-transform: none;
		white-space: nowrap;

		width: auto;
		height: auto;

		padding: 6px 12px;
		margin-left: -20px;

	  	visibility: hidden;

		position: absolute;
		top: 100%;
		left: 50%;

  	  	z-index: 50;
	}

	.tip:hover .tooltiptext {
	  visibility: visible;
	  transition-delay: 0.3s;
	}

/* Modal - Hack */
body.modal-open {
    overflow: auto !important;
}
body.modal-open[style] {
    padding-right: 0px !important;
}
.modal::-webkit-scrollbar {
    width: 0 !important;
}
.modal-content {
	border: none;
}
.modal-header {
	border: none;

	margin: 26px 0 13px 0;
	padding: 13px 16px;

	display: block;
	text-align: center;
}
	.modal-header h5 {
		font-size: 24px;
	}

.modal-body {
	padding: 0px 20px;

	display: block;

	color: #3C3C4F;
}
.modal-footer {
	border: none;

	padding: 15px;
}
.modal.show {
	animation: showSweetAlert 0.3s;
}
.modal.fade .modal-dialog {
	transform: none;
}

.modal.modal-disclaimer.fade {
	background: rgba(0, 0, 0, 0.9);
}
.modal.modal-disclaimer.show {
	animation: none;
}

/* Lightbox */
.spl-title {
	font-size: 18px;
}

/* Misc */
.favourites {
	position: absolute;
	top: 6px;
	right: 6px;
}
.card-panel .addFavourites {
	position: absolute;
	top: 6px;
	right: 6px;
}
.forum-pinned {
	position: absolute;
    top: 6px;
    right: 10px;

    font-size: 14px;
}
.forum-options {
	position: absolute;
    top: 6px;
    right: 14px;

    font-size: 16px;
}
