.c_navbar {
    width: 100%;
    height: 8rem;
    padding: 1rem 0;
    background-color: rgb(var(--primary-grey));
    display: flex;
    justify-content: center;
}
.c_navbar.c_admin {
    background: linear-gradient(180deg, rgb(var(--white)), rgb(var(--white),.1), transparent 50%);
}

.c_navbar.c_affiliate{
    background: transparent;
    height: 12rem;
}
.c_navbar button {
    user-select: none;
}
.c_footer {
    background-color: rgb(var(--primary-grey));
    margin-top: 5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5rem 0;
}
.c_footer .c_footer-container {
    max-width: 90rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3rem;
}
.c_navbar .c_items-container, .c_footer .c_items-container {
    max-width: 90rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.c_navbar .c_items-container .c_logo{
    max-width: 100%;
}
.c_navbar.c_admin .c_items-container .c_logo{
    max-width: 10rem;
    width: 100%;
}
.c_navbar .c_items-container ul{
    display: flex;
    height: 100%;
    align-items: center;
    gap: 2.5rem;
}
.c_navbar .c_items-container ul li{
    display: flex;
    height: 100%;
    align-items: center;
}
.c_footer .c_navbar .c_items-container {
    max-width: unset !important;
    align-items: center;
}
.c_footer .c_navbar .c_items-container ul li{
    height: unset;
}
.c_menuelements {
    width: 100%;
    height: calc(100vh - 8rem);
    overflow: auto;
    display: flex;
    flex-direction: column;
    background-color: rgb(var(--primary-grey));
}
.c_footer .c_navbar {
    height: auto !important;
    padding: 0 !important;
}
.c_menuelements ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    height: 100%;
}
.c_menuelements ul li.c_last {
    margin-top: auto;
    margin-bottom: 4rem;
}
.c_navbar .c_items-container ul li a, .c_menuelements ul li a{
    display: flex;
    height: 3.5rem;
    align-items: center;
    font-size: 1.5rem;
    color: rgb(var(--white));
    font-weight: 400;
    text-decoration: none;
    letter-spacing: .006rem;
    opacity: .6;
}
.c_navbar.c_affiliate .c_items-container ul li a,
.c_navbar.c_admin .c_items-container ul li a{
    color: rgb(var(--black));
}
.c_navbar .c_items-container ul li a:hover, .c_menuelements ul li a:hover{
    opacity: 1;
    transition: 0.6s;
}
.c_footer .c_navbar .c_items-container ul li a {
    font-size: 1.17rem;
    height: 100%;
}
.c_footer .c_navbar .c_items-container ul {
    column-gap: 2rem;
    row-gap: 1rem;
}
.c_navbar .c_items-container ul li a.c_cta-button{
    color: rgb(var(--primary-grey));
    font-weight: 600;
    background-color: rgb(var(--white));
    padding: 0 1.5rem;
    border-radius: 100rem;
    opacity: 1;
    display: flex;
    align-items: center;
}
.c_main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.c_main-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    max-width: 90rem;
}
.c_side-panel {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1px;
    max-width: 90rem;
}
.c_container {
    display: flex;
    max-width: 90rem;
    width: 100%;
}
.c_section {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}
.c_article-bg-box {
    position: relative;
    display: flex;
    max-width: 50rem;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
}
.c_bg-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
    background-color: rgb(var(--primary-grey));
}
.c_cover-section{
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.c_article-bg-box:hover .c_cover-section, .c_landing-p-image img:hover {
    transform: scale(1.12);
}
.c_cover-section-content {
    display: flex;
    z-index: 0;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
    width: 100%;
    max-height: 50rem;
    align-items: self-start;
    justify-content: end;
    flex-direction: column;
    color: #ffffff;
    text-shadow:rgba(0, 0, 0, 0.9) 0px .1rem .3rem;
    padding: 2rem;
    gap: 1rem;
}
.c_cover-section-content.c_libreria {
    height: 30rem !important;
    max-height: unset !important;
}
.c_cover-section-content.c_land {
    padding: 5rem 2rem;
}
.c_section-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
}
.c_video-preview-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
}
.c_article-preview, .c_video-preview {
    display: flex;
    width: 100%;
    max-width: 50rem;
    flex-direction: column;
}
.c_article-preview-content, .c_video-preview-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: .5rem;
    width: 100%;
}
.c_video-preview-content a{
    font-size: 1.5rem;
    font-weight: 700;
}
.c_article-preview-content .c_link{
    display: flex;
    align-items: center;
}
.c_article-preview-image a, .c_video-preview-image a{
    width: 100%;
    display: flex;
    overflow: hidden;
}
.c_video-preview-image a img:hover {
    filter: brightness(0.62);
    transform: scale(1.12);
}
.c_article-preview-image a .c_thumbnail{
    width: 100%;
    max-width: 100%;
    height: 12rem;
    object-fit: cover;
    object-position: center center;
    border-radius: 1.5rem;
}
.c_video-preview-image a .c_thumbnail{
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
}
.c_video-preview-image a .c_author {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
}
.c_videopage-header{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.c_videopage-heading, .c_videopage-content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.c_form, .c_account-article {
    gap: 2.17rem;
    display: flex;
    width: 100%;
    max-width: 38rem;
    flex-direction: column;
    padding: 3rem;
}
.c_form .c_form-item, .c_form-item.c_db div {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: .5rem;
}
.c_form label {
    font-size: 1.17rem;
    font-weight: 800;
}
.c_form-item.c_db {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-end;
}
.c_form input[type="text"], .c_form input[type="email"], .c_form input[type="password"], .c_form input[type="date"], .c_form textarea {
    width: 100%;
    border: none;
    font-size: 1.17rem;
    border-radius: 1rem;
    border: 1px solid rgb(var(--dark-grey));
    height: 3.5rem;
    padding: .5rem 1rem;
    cursor: text;
}
textarea.c_chat {
    max-height: 9rem;
    resize: none;
    overflow: auto;
    height: 2.5rem;
    padding: .5rem 0;
}
textarea.c_chat, textarea.c_chat:focus, textarea.c_chat:focus-visible {
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
}
textarea.c_new-chat {
    max-height: 9rem;
    resize: none;
    overflow: auto;
    height: 3.17rem;
    padding: .76rem 1rem;
}
textarea.c_new-chat.c_6rem {
    height: 6rem !important;
}
button.c_send {
    height: 2.5rem;
    width: 6rem;
    display: flex;
    justify-content: center;
}
.c_primary-button, .c_secondary-button, .c_tertiary-button, .c_payment-button {
    background-color: rgb(var(--primary-red));
    height: 3.5rem;
    color: rgb(var(--white)) !important;
    padding: .5rem 1.5rem;
    border: none;
    width: 100%;
    font-size: 1.17rem;
    border-radius: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}
.c_small {
    height: 2.5rem;
    width: auto;
    padding: 0 1rem;
    text-transform: capitalize;
}
.c_primary-button.c_reverse {
    background-color: rgb(var(--white));
    color: rgb(var(--primary-red)) !important;
}
.c_secondary-button {
    border: 1px solid rgba(0, 0, 0, 0.4);
    color: rgb(var(--black)) !important;
    background: transparent;
}
.c_secondary-button.c_undo {
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: rgb(0, 0, 0, 0.8) !important;
}
.c_secondary-button.c_undo:hover {
    border: 1px solid rgba(0, 0, 0, 0.4) !important;
}
.c_secondary-button:hover {
    border-color: rgba(0, 0, 0, 1);
    box-shadow: 0 0 1rem rgb(0,0,0,.1);
}
.c_secondary-button:active{
    opacity: .6;
}
.c_primary-button.c_blue {
    background-color: rgb(var(--primary-blue));
    border-color: transparent !important;
}
.c_payment-button {
    background-color: rgb(var(--gold));
    border-color: transparent !important;
}
.c_payment-button:hover {
    background-color: rgb(var(--gold-dark));
    text-shadow: none;
}
.c_primary-button:hover {
    background-color: var(--primary-red-dark);
    box-shadow: 0 0 1rem rgb(var(--primary-red),.4);
}
.c_primary-button.c_reverse:hover {
    background-color: rgb(var(--white),.8);
}
.c_primary-button.c_blue:hover {
    background-color: var(--primary-blue-dark);
}
.c_tertiary-button {
    background-color: rgb(var(--dark-grey));
    color: rgb(var(--black));
}
.c_tertiary-button:hover {
    background-color: var(--dark-grey-dark);
}
.c_primary-button.c_iscriviti{
    text-transform: capitalize;
    font-weight: 700 !important;
    opacity: 1 !important;
}
.c_quaternary-button {
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3rem;
}
.c_quaternary-button img {
    width: 2.5rem;
}
.c_opacity-1-hover{
    opacity: .62;
}
.c_opacity-1-hover:hover{
    opacity: 1;
}
.c_form .c_separator {
    display: flex;
    align-items: center;
    color: rgb(var(--black));
    font-size: 1rem;
}
.c_form .c_separator hr{
    flex: 1;
    border: none;
    border-top: 1px solid rgb(var(--dark-grey));
    margin: 0 1.5rem;
}

.c_password-container {
    position: relative;
}

.c_password-container button {
    position: absolute;
    right: .57rem;
    top: .75rem;
    background-color: transparent;
    padding: 0;
    width: 3rem;
    display: flex;
    justify-content: center;
    border: none;
}

.c_password-container input {
    padding-right: 4rem !important;
}

input, textarea {
    outline: 0 !important;
}

.video-player-container {
    max-width: 90rem;
    width: 100%;
    height: 100%;
    display: flex;
}

.video-player-container video {
    width: 100%;
    height: auto;
}
.vjs-poster {
    display: none !important;
}

.error-messages, .c_notice-info {
    padding: 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.17rem;
    text-align: center;
}
.c_notice-info {
    background-color: rgb(var(--black),.06);
    color: rgb(var(--black));
}
.error-message {
    color: rgb(var(--red-alert));
    line-height: 1.3rem;
}
.error-messages {
    background-color: rgb(var(--red-alert),.1);
    color: rgb(var(--red-alert));
}

.c_profile-ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.c_profile-nav{
    width: 50rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: sticky;
    top: 0;
    left: 0;
    height: 100%;
}
.c_settings-panel {
    max-width: 50rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.c_white-box, .c_white-box-article{
    background-color: rgb(var(--white));
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 0 1rem rgb(0,0,0,.1);
    display: flex;
}
.c_white-box-article {
    padding: 0;
    overflow: hidden;
    flex-direction: column;
    max-width: 50rem;
}
.c_white-box-article a.c_th{
    display: flex;
    height: 100%;
    width: 100%;
    aspect-ratio: 16/9;
}
.c_white-box-article img{
    object-fit: cover;
    object-position: center center;
    height: 100%;
    width: 100%;
    z-index: 0;
}
.c_white-box-article img:hover {
    opacity: .9;
}

.c_white-box-article:hover img{
    transform: scale(1.12);
}
.c_video-preview:hover .c_video-preview-image a .c_thumbnail {
    transform: scale(1.12);
}

.c_profile-nav li{
    width: fit-content;
    display: flex;
    flex-direction: row;
    font-size: 1.5rem;
    gap: .5rem;
    cursor: pointer;
    user-select: none;
    align-items: center;
    font-weight: 500;
    /*align-items: center;*/
    transform: translateX(-.75rem);
}
.c_cards {
    background-color: rgb(var(--white));
    border-radius: 2rem;
    width: 100%;
    box-shadow: 0 0 1rem rgb(0,0,0,.1);
    display: flex;
    flex-direction: column;
    font-size: 1.17rem;
    gap: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 3rem;
}
.c_cards:hover {
    transform: translateY(-.5rem);
}
.c_card-box {
    background-color: rgb(var(--white));
    border-radius: 1rem;
    width: 100%;
    padding: 1rem .5rem 1rem 1.5rem;
    box-shadow: 0 0 1rem rgb(0,0,0,.1);
    display: flex;
    flex-direction: row;
    font-size: 1.17rem;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
    /*align-items: center;*/
}
.c_profile-nav li:not(.c_profile-nav li.c_bell):hover {
    opacity: .6;
    transform: translateX(.75rem);
    transition: .2s;
}
.c_card-box:not(.c_card-box.c_disabled-li):hover {
    box-shadow: 0 0 1rem rgb(var(--primary-grey),.3);
}
.c_red-button:hover {
    box-shadow: 0 0 1rem rgb(var(--red-alert),.3) !important;
}
.c_red-button {
    background-color: transparent !important;
    border: 1px solid rgb(var(--red-alert)) !important;
    color: rgb(var(--red-alert)) !important;
    box-shadow: none !important;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    user-select: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.17rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c_red-button.c_fill {
    background-color: rgb(var(--red-alert)) !important;
    border: none !important;
    color: rgb(var(--white)) !important;
}
.c_red-button.c_fill:hover {
    background-color: var(--red-alert-dark) !important;
}
.c_blue-button {
    background-color: transparent;
    border: 1px solid rgb(var(--primary-blue));
    color: rgb(var(--primary-blue));
    box-shadow: none;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    user-select: none;
    cursor: pointer;
    font-size: 1.17rem;
    height: 3.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.c_blue-button.c_fill {
    background-color: rgb(var(--primary-blue)) !important;
    border: none !important;
    color: rgb(var(--white)) !important;
}
.c_blue-button:hover {
    box-shadow: 0 0 1rem rgb(var(--primary-blue),.3) !important;
}
.c_blue-button.c_fill:hover {
    background-color: var(--primary-blue-dark) !important;
}
.c_blue-button.c_primary-red:hover {
    box-shadow: 0 0 1rem rgb(var(--primary-red),.3) !important;
}
.c_blue-button.c_primary-red {
    border: 1px solid rgb(var(--primary-red)) !important;
    color: rgb(var(--primary-red)) !important;
}
.c_profile-nav li:not(.c_profile-nav li.c_bell):active,
.c_card-box:not(.c_card-box.c_disabled-li):active,
.c_red-button:active,
.c_blue-button:active {
    opacity: .6;
    box-shadow: none !important;
}
.c_disabled-li {
    user-select: unset;
    cursor: default;
}
.c_bell, .c_disabled-li:not(.c_disabled-li.c_p-4) {
    padding: 1rem 1.5rem !important;
    cursor: default !important;
}
.c_profile-nav li p {
    display: none;
    font-size: 1rem;
}
.c_profile-nav li .c_img-icon, .c_img-arrow, .c_card-box .c_img-icon, .c_affiliate .c_round {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    min-height: 3rem;
    max-width: 3rem;
    max-height: 3rem;
    /*border: 1px solid rgb(var(--primary-grey));*/
    border-radius: 100rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c_logout-icon {
    border: 0 !important;
}
.c_img-arrow {
    border: 0 !important;
    margin-left: auto;
}
.c_img-arrow.c_min {
    width: 1.5rem !important;
    height: 1.5rem !important;
    min-width: 1.5rem !important;
    min-height: 1.5rem !important;
    max-width: 1.5rem !important;
    max-height: 1.5rem !important;
}
.c_img-arrow.c_min img {
    width: 1.5rem;
}

/* © CHSSML */

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    min-width: 50px;
    min-height: 28px;
    max-width: 50px;
    max-height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: rgb(var(--dark-grey));
    transition: 0.4s;
    border-radius: 34px;
}

.slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: rgb(var(--white));
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgb(var(--green-success));
}

input:checked + .slider::before {
    transform: translateX(.5rem);
    transition: .2s;
}
.c_settings-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:1rem;
}

a.c_no-style {
    text-decoration: none;
    color: inherit;
}
a.c_no-style.c_hover:hover, button.c_no-style.c_hover:hover{
    text-decoration: underline;
}
a.c_no-style.c_hover:active, button.c_no-style.c_hover:active, button.c_no-style.c_actived:active{
    opacity: .6;
}

button.c_no-style {
    background-color: transparent;
    padding: 0;
    border: 0;
}
.c_no-shadow {
    text-shadow: none !important;
}
.c_feedback-page {
    width: 100%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    padding: 3rem;
}
.c_chat-display {
    background-color: rgb(var(--white));
    border-radius: 2rem;
    width: 100%;
    box-shadow: 0 0 1rem rgb(0,0,0,.1);
    display: flex;
    flex-direction: column;
}

.c_chat-display .c_user {
    background-color: rgb(var(--blue-light),.3);
    color: rgb(var(--black));
    align-self: flex-end;
    border-radius: 1rem 1rem 0 1rem;
    padding: .75rem 1rem;
    font-size: 1.17rem;
    max-width: 64%;
    gap: 2px;
    display: flex;
    flex-direction: column;
}

.c_chat-display .c_user span {
    font-size: 1rem;
    opacity: .6;
    margin-left: auto;
    width: fit-content;
    display: flex;
}
.c_chat-display .c_operator span {
    font-size: 1rem;
    opacity: .6;
    margin-right: auto;
    width: fit-content;
    display: flex;
}

.c_adm-button-active {
    border: 1px solid rgb(var(--black),0);
    border-radius: 100rem;
    padding: .5rem 1rem;
    background: rgb(var(--black),.9);
    color: rgb(var(--white));
    font-size: 1.17rem;
    font-weight: 500;
    height: 2.5rem;
}
.c_adm-button {
    border: 1px solid rgb(var(--black), 0.6);
    border-radius: 100rem;
    padding: .5rem 1rem;
    background: transparent;
    font-size: 1.17rem;
    height: 2.5rem;
}


.c_chat-display .c_operator {
    border: 1px solid rgb(var(--blue-light),.9);
    color: rgb(var(--black));
    padding: .75rem 1rem;
    border-radius: 1rem 1rem 1rem 0;
    font-size: 1.17rem;
    max-width: 64%;
    align-self: flex-start;
    gap: 2px;
    display: flex;
    flex-direction: column;
}
.c_notice {
    background-color: rgb(var(--cream));
    padding: 1.5rem;
    color: rgb(var(--dark-cream));
    font-size: 1.17rem;
    border-radius: 1rem;
}
.c_star-container img {
    width: 3rem;
}
.c_bg-stripe-light {
    background-color: rgb(79, 72, 204,.2);
}
.c_stripe-button {
    background-color: #4F48CC;
    color: rgb(var(--white));
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    border: 0;
    display: flex;
    gap: .5rem;
    justify-content: center;
    font-size: 1.17rem;
    font-weight: 700;
    text-transform: uppercase;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c_stripe-button.c_secondary {
    background-color: transparent;
    color: rgb(49, 45, 127);
    border: 1px solid rgb(49, 45, 127,.6);
}
.c_stripe-button.c_secondary:hover {
    background-color: transparent !important;
    border: 1px solid rgb(49, 45, 127,1);
}
.c_stripe-button:hover {
    background-color: rgb(49, 45, 127);
    box-shadow: 0 0 1rem rgb(49, 45, 127,.4) !important;
}
.c_stripe-button img.c_min {
    display: flex;
    width: 3rem;
    vertical-align: middle;
}
.c_modal-box {
    position: fixed;
    top: 0;
    left: 0;
    color: black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    background-color: rgb(var(--primary-grey-dark),.9);
    padding: 2rem;
    z-index: 10;
}

.c_modal-box > div {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 50rem;
    width: 100%;
    height: fit-content;
    font-size: 1.17rem;
}
.c_grid-preview, .c_grid-ad {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3rem;
    column-gap: 2rem;
}
.c_grid-preview.c_titles {
    row-gap: 4rem !important;
    column-gap: 3rem;
}
a.c_arrow-episode {
    border: 1px solid rgb(var(--primary-grey));
    border-radius: 1rem;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 1.17rem;
    font-weight: 800;
}
a.c_arrow-episode:hover {
    border: 1px solid rgb(var(--primary-grey),.4);
}
.c_author-preview-line {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.c_author-preview-line img {
    width: 3rem;
    height: 3rem;
    border-radius: 100rem;
    object-fit: cover;
    object-position: center center;
}
.c_grid-ad div{
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    display: flex;
}
.c_grid-ad img {
    width: 100%;
}
.c_menu {
    background: transparent;
    border: 0;
    padding: 0;
    opacity: .6;
}
.c_menu:hover {
    opacity: 1;
}
.c_menu img {
    width: 3rem;
}
.c_form-search {
    border-bottom: 2px solid rgb(var(--white));
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: .6;
    width: 100%;
    max-width: 50rem;
}
.c_form-search:hover, .c_form-search:focus-within {
    opacity: 1;
}
.c_form-search input {
    font-size: 1.5rem;
    color: rgb(var(--white));
    font-weight: 600;
    width: 100%;
    padding: 0;
    display: flex;
    border: 0;
    background: transparent;
}
.c_form-search input:hover, .c_form-search input:focus, .c_form-search input:focus-visible {
    outline: 0 !important;
    border: 0 !important;
}
.c_form-search button {
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-self: center;
}
.c_form-search button img{
    width: 2.5rem;
}
.c_subscription-window {
    background-color: rgb(var(--white));
    border-radius: 2rem;
    width: 100%;
    box-shadow: 0 0 1rem rgb(0,0,0,.1);
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-bottom: 2rem;
    max-width: 38rem;
    overflow: hidden;
    margin: 0 auto;
}
.c_subscription-window header {
    background-color: #4F48CC;
    color: rgb(var(--white));
    text-align: center;
    padding: 3rem 2rem;
}
.c_landing-page {
    min-height: 100vh;
    width: 100%;
    background-image: url('../img/bg-cover/jpg/5.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.c_landing-page .c_navbar {
    background: transparent;
    transition: 0s !important;
}
.c_hero-video .c_video-box{
    width: 100%;
    height: 100%;
    max-width: 50rem;
    border-radius: 2rem;
    overflow: hidden;
}
.c_hero-shadow {
    text-shadow:rgba(0, 0, 0, 0.9) 0px .1rem .3rem;
}

/* © CHSSML */

.c_landing-article {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.c_landing-article .c_landing-p-image {
    user-select: none;
    width: 100%;
    display: flex;
    overflow: hidden;
}
.c_landing-p-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center center;
}
.c_landing-article .c_landing-p {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    justify-content: center;
}
.c_landing-article .c_landing-p.c_justify-content-start {
    justify-content: flex-start !important;
}
.c_landing-article .c_landing-p h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 500;
}

.c_landing-p.c_white {
    background-color: rgb(var(--white));
    box-shadow: 0 0 1rem rgb(0,0,0,.1);
    padding: 5rem 2rem;
}
.c_landing-p.c_white.c_grey {
    background-color: rgb(var(--primary-grey));
    color: rgb(var(--white));
}
.c_landing-p.c_white.c_red {
    background-color: rgb(var(--primary-red));
    color: rgb(var(--white));
}
.c_order-reverse button:first-child{
    order: 2;
}
.c_order-reverse button:last-child{
    order: 1;
}
.c_affiliate-box {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.17rem;
    border: 1px solid rgb(0,0,0,.2);
    background-color: rgb(var(--white));
}
.c_affiliate-box.c_video {
    padding: 0;
    gap: 0;
}

.c_affiliate-box:not(.c_not):hover, .c_translateY-hover:hover {
    transform: translateY(-.5rem);
    transition: .2s;
}
/*.c_margin-top {
    
    margin-top: -24rem;
    z-index: 2;
    background: rgb(var(--light-grey));
    max-width: calc(90rem - 4rem) !important;
    
}*/


.loader {
    display: block;
    border: 2px solid transparent;
    border-radius: 100%;
    width: 2.25rem;
    height: 2.25rem;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
.loader-small {
    width: 1.4rem;
    height: 1.4rem;
}
.loader.c_red-alert {
    border-top: 2px solid rgb(var(--red-alert));
    border-bottom: 2px solid rgb(var(--red-alert));
    border-right: 2px solid rgb(var(--red-alert));
}
.loader.c_grey {
    border-top: 2px solid rgb(var(--dark-grey));
    border-bottom: 2px solid rgb(var(--dark-grey));
    border-right: 2px solid rgb(var(--dark-grey));
}
.loader.c_white {
    border-top: 2px solid rgb(var(--white));
    border-bottom: 2px solid rgb(var(--white));
    border-right: 2px solid rgb(var(--white));
}
.loader.c_purple {
    border-top: 2px solid #4F48CC;
    border-bottom: 2px solid #4F48CC;
    border-right: 2px solid #4F48CC;
}
.c_profile-container {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 1rem rgb(0, 0, 0, .1);
}
.c_profile-container.c_hover:hover {
    transform: translateY(-.5rem);
    transition: .2s;
}
.c_profile-container.c_active:active{
    opacity: .6;
}
.c_div-profile-initials {
    height: 5rem;
    width: 5rem;
    min-width: 5rem;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 2rem;
    border-radius: 100rem;
    border: 1px solid rgb(0, 0, 0, .5);
    font-weight: 200;
    user-select: none;
}

.c_loader-filter {
    position: absolute;
    top: 0;
    left: 0;
    color: black;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    background-color: rgb(var(--primary-grey-dark), .1);
    padding: 2rem;
    z-index: 2;
    border-radius: 2rem;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.c_aff-con, .c_aff-con-storico {
    border: 1px solid rgb(0, 0, 0, .1);
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(-315deg, rgba(14, 181, 255, .06), rgba(255, 255, 255, 0.3), transparent);
}
.c_affiliate-container, .c_affiliate-container-storico {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    backdrop-filter: unset;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.c_aff-con-storico {
    background: linear-gradient(-315deg, rgba(255, 197, 14, .03), rgba(0, 0, 0, 0.01), transparent) !important;
}
.c_aff-con-storico.c_border {
    border: 1px solid rgb(175, 135, 19, .5) !important;
}
.c_status-active {
    padding: .5rem 1.17rem;
    border-radius: 999px;
    border: 1px solid rgba(2, 129, 4, 0.4);
    background: linear-gradient(-225deg, rgba(55, 219, 0, 0.3), rgba(50, 215, 5, .1));
    color: rgb(2, 129, 4);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c_copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(var(--black),.1);
    background: linear-gradient(-225deg, rgba(255, 255, 255, 0.6), transparent);
    background: transparent;
    border-radius: 1rem;
    font-size: 1.17rem;
    font-weight: 600;
    user-select: none;
    padding: .5rem 1rem;
    flex: none;
    gap: .5rem;
    height: 3rem;
    width: 8rem;
}
.c_copy-btn:hover, iframe:hover {
    box-shadow: 0 .5rem 1.5rem rgba(14, 181, 255, .1);
    transform: translateY(-.5rem);
}
.c_aff-bg {
    background-image: radial-gradient(180rem 150rem at 10% 100%, rgba(255, 197, 14, .06), rgba(255, 255, 255, .9), transparent 50%);
    background-attachment: fixed;
}
img.c_rotate {
    transform: scaleY(-1);
}
.c_promo-bg {
    background-image: radial-gradient(180rem 150rem at 10% 100%, rgba(var(--primary-red), .06), transparent 50%);
    background-attachment: fixed;
}
.c_offerta-1 {
    background: radial-gradient(180rem 150rem at 100% 100%, rgba(var(--white), .4), transparent 60%);
    box-shadow: 0 1rem 3rem rgba(var(--black), .08);
}
.c_offerta-2 {
    box-shadow: 0 1rem 3rem rgba(var(--primary-red), .08);
    position: relative;
    overflow: hidden;
}
.c_offerta-2::before {
    content: "";
    background: conic-gradient(from 120deg, rgba(14, 181, 255,.45), rgba(var(--primary-red),.45), rgba(79, 72, 204,.45), rgb(var(--white),.8), rgba(7, 117, 185,.45));
    filter: blur(12rem);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    z-index: 0;
}
.c_offerta-2 * {
    z-index: 1;
}
.c_offerta-2-box {
    border: 1px solid rgb(var(--primary-red),.12);
    background-image: radial-gradient(180rem 150rem at 10% 100%, rgba(255, 255, 255, .6), transparent 60%);
}


.c_offerta-3 {
    box-shadow: 0 1rem 3rem rgba(var(--golden-title), .08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(var(--primary-red),.16);
}
.c_offerta-3::before {
    content: "";
    background: conic-gradient(from 120deg, rgba(var(--primary-red),.5), rgba(var(--golden-title),.8), rgba(214, 156, 47,.75), rgb(var(--white),.8), rgba(255, 227, 138,.7));
    filter: blur(12rem);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    z-index: 0;
}
.c_offerta-3 * {
    z-index: 1;
}

.c_checkbox-label {
    display: flex;
    gap: 2px;
    align-items: start;
    user-select: none;
    cursor: pointer;
}

.c_checkbox-label {
    display: block;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.c_checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.c_checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  background-color: rgb(var(--white));
    border: 1px solid rgb(var(--dark-grey));
    border-radius: .5rem;
}

/* On mouse-over, add a grey background color */
.c_checkbox-label:hover input ~ .c_checkmark {
  background-color: rgb(var(--black),.1);
}

/* When the checkbox is checked, add a blue background */
.c_checkbox-label input:checked ~ .c_checkmark {
  background-color: rgb(var(--primary-red));
}

/* Create the c_checkmark/indicator (hidden when not checked) */
.c_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the c_checkmark when checked */
.c_checkbox-label input:checked ~ .c_checkmark:after {
  display: block;
}

/* Style the c_checkmark/indicator */
.c_checkbox-label .c_checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}