.nModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    backdrop-filter: blur(20px);
    background-color: #00000060;
    z-index: 100002;
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
	color: white;
    font-family: 'CeraPro-Regular';
}
.nModal_body_wrap {
    width: 70%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    max-width: 1100px;
    position: absolute;
    left: 0;
    right: 0;
}
@media only screen and (max-width: 1600px) {
    .nModal_body_wrap {
        width: 1100px;
    }
}
@media only screen and (max-width: 1400px) {
    .nModal_body_wrap {
        width: 80%;
    }
}
@media only screen and (max-width: 480px) {
    .nModal_body_wrap {
        width: 95%;
    }
}
.nModal_body {
    max-height: 80%;
    overflow-y: auto;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nModal_body::-webkit-scrollbar {
    display: none;
}
.nModal_content {
    z-index: 1;
    max-height: 100%;
    position: relative;
    background-color: #000;
}
.nModal_content_data {
    padding: 1em 2em 2em 2em;
}
.nModal_title h2 {
    text-align: center;
    padding: 1em;
	color: #D6F133;
	font-size: 3em;
    text-transform: uppercase;
    font-family: 'CSTM';
	font-weight: normal;
	text-align: left;
}
@media only screen and (max-width: 800px) {
    .nModal_title h2 {
        padding: 0.5em;
		font-size: 2em;
    }
}
.nModal_buttons {
    padding-bottom: 2em;
    text-align: center;
}
.nModal_cb {
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
    cursor: pointer;
    display: inline-block;
    width: 30px;
    height: 30px;
    z-index: 11;
}
.nModal_cb:hover span:before, .nModal_cb:hover span:after {
    border-bottom: 2px solid #ffffff;
}
.nModal_cb span {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    pointer-events: none;
}
.nModal_cb span:before, .nModal_cb span:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid #9C9C9C;
    transition: all .35s ease;
    top: -3px;
}
.nModal_cb span:before {
    left: 10px;
    top: -10px;
    transform: rotate(45deg);
}
.nModal_cb span:after {
    left: -10px;
    top: -10px;
    transform: rotate(-45deg);
}
.nModal.active {
    opacity: 1;
    visibility: visible;
}
.nModal .f-carousel {
    position: relative;
    padding: 0 2em;
}
.nModal .f-carousel .f-carousel__slide {
    width: 100%;
    text-align: center;
}
.nModal .f-carousel .f-carousel__slide img {
    height: 300px;
    padding: 0;
}