h1, h2, h3, h4, h5, h6 {

    font-weight: 600;

    color: white;

    margin-top: 16px;
    margin-bottom: 8px;

}

h1 {

    font-size: 28px;

}

h2 {

    font-size: 22px;

}

h3 {

    font-size: 18px;

}

h4 {

    font-size: 16px;

}

h5 {

    font-size: 14px;

}

h6 {

    font-size: 13px;

    color: rgb(200,200,205);

}

.ctx-p {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(200,200,205);
}

.ctx-label {

    display: block;

    font-size: 13px;
    font-weight: 500;

    color: rgb(200,200,205);

    margin-bottom: 4px;

}

.ctx-list {

    margin: 8px 0;

    padding-left: 20px;

    color: rgb(200,200,205);

    font-size: 16px;

    line-height: 1.6;

}

.ctx-list li {

    margin: 4px 0;

}

.ctx-list ul {

    margin-top: 4px;
    padding-left: 18px;

}

.ctx-list ol {

    margin-top: 4px;
    padding-left: 18px;

}

.ctx-link {
    position: relative;
    color: rgb(220,60,60);
    text-decoration: none;
    transition: color 0.18s ease;
}

.ctx-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: rgb(255,90,90);
    transition: width 0.18s ease;
}

.ctx-link:hover {
    color: rgb(255,90,90);
}

.ctx-link:hover::after {
    width: 100%;
}

.ctx-button {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);

    border-radius: 6px;

    color: white;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition: background 0.15s, border-color 0.15s, transform 0.08s;

}

.ctx-button:hover {

    background: rgb(55,55,60);
    border-color: rgb(90,90,95);

}

.ctx-button:active {

    transform: scale(0.97);

}

.ctx-button:disabled {

    opacity: 0.5;
    cursor: not-allowed;

}



.ctx-input-text {

    width: 100%;

    padding: 8px 10px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    color: white;
    font-size: 14px;

    outline: none;

    transition: 
        border-color 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease;

}

.ctx-input-text::placeholder {

    color: rgb(150,150,155);

}

.ctx-input-text:hover {

    background: rgb(45,45,50);

}

.ctx-input-text:focus {

    border-color: rgb(120,120,130);
    box-shadow: 0 0 0 2px rgba(120,120,130,0.25);

}

.ctx-input-text:disabled {

    opacity: 0.5;
    cursor: not-allowed;

}

.ctx-input-password {

    width: 100%;

    padding: 8px 10px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    color: white;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease;

}

.ctx-input-password::placeholder {

    color: rgb(150,150,155);

}

.ctx-input-password:hover {

    background: rgb(45,45,50);

}

.ctx-input-password:focus {

    border-color: rgb(120,120,130);
    box-shadow: 0 0 0 2px rgba(120,120,130,0.25);

}

.ctx-input-password:disabled {

    opacity: 0.5;
    cursor: not-allowed;

}

.ctx-input-password {
    color-scheme: dark;
}


.ctx-input-email {

    width: 100%;

    padding: 8px 10px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    color: white;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease;

}

.ctx-input-email::placeholder {

    color: rgb(150,150,155);

}

.ctx-input-email:hover {

    background: rgb(45,45,50);

}

.ctx-input-email:focus {

    border-color: rgb(120,120,130);
    box-shadow: 0 0 0 2px rgba(120,120,130,0.25);

}

.ctx-input-email:disabled {

    opacity: 0.5;
    cursor: not-allowed;

}


.ctx-input-number {

    display: inline-flex;
    align-items: center;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    overflow: hidden;

}

.ctx-input-number-field {

    width: 70px;

    background: transparent;
    border: none;

    color: white;
    font-size: 14px;

    text-align: center;

    padding: 8px 6px;

    outline: none;

}


.ctx-input-number-field::-webkit-outer-spin-button,
.ctx-input-number-field::-webkit-inner-spin-button {

    -webkit-appearance: none;
    margin: 0;

}

.ctx-input-number-field {
    appearance: textfield;
    -moz-appearance: textfield;
}

.ctx-input-number-decrease,
.ctx-input-number-increase {

    width: 32px;
    height: 32px;

    border: none;

    background: rgb(40,40,45);

    color: white;
    font-size: 18px;

    cursor: pointer;

    transition: background 0.15s;

}

.ctx-input-number-decrease:hover,
.ctx-input-number-increase:hover {

    background: rgb(55,55,60);

}

.ctx-input-number-decrease {

    border-right: 1px solid rgb(70,70,75);

}

.ctx-input-number-increase {

    border-left: 1px solid rgb(70,70,75);

}

.ctx-checkbox {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    cursor: pointer;

    font-size: 14px;
    color: rgb(220,220,225);

}

.ctx-checkbox-input {

    display: none;

}

.ctx-checkbox-box {

    width: 16px;
    height: 16px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 4px;

    position: relative;

    transition: background 0.15s, border-color 0.15s;

}

.ctx-checkbox:hover .ctx-checkbox-box {

    background: rgb(55,55,60);

}

.ctx-checkbox-input:checked + .ctx-checkbox-box {

    background: rgb(220,60,60);
    border-color: rgb(220,60,60);

}

.ctx-checkbox-box::after {

    content: "";

    position: absolute;

    left: 4px;
    top: 1px;

    width: 5px;
    height: 9px;

    border: solid white;
    border-width: 0 2px 2px 0;

    transform: rotate(45deg) scale(0);
    transition: transform 0.12s ease;

}

.ctx-checkbox-input:checked + .ctx-checkbox-box::after {

    transform: rotate(45deg) scale(1);

}

.ctx-checkbox-input:disabled + .ctx-checkbox-box {

    opacity: 0.5;
    cursor: not-allowed;

}

.ctx-checkbox-input:disabled ~ .ctx-checkbox-text {

    opacity: 0.5;

}



.ctx-textarea {

    width: 100%;
    min-height: 120px;

    padding: 10px 12px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    color: white;
    font-size: 14px;
    line-height: 1.5;

    resize: vertical;

    outline: none;

    overflow-y: auto;

    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        box-shadow 0.15s ease;

}

.ctx-textarea::placeholder {

    color: rgb(150,150,155);

}

.ctx-textarea:hover {

    background: rgb(45,45,50);

}

.ctx-textarea:focus {

    border-color: rgb(120,120,130);
    box-shadow: 0 0 0 2px rgba(120,120,130,0.25);

}

.ctx-textarea:disabled {

    opacity: 0.5;
    cursor: not-allowed;

}


.ctx-textarea::-webkit-scrollbar {

    width: 8px;

}

.ctx-textarea::-webkit-scrollbar-track {

    background: rgb(32,31,36);
    border-radius: 6px;

}

.ctx-textarea::-webkit-scrollbar-thumb {

    background: rgb(70,70,75);
    border-radius: 6px;

    transition: background 0.15s;

}

.ctx-textarea::-webkit-scrollbar-thumb:hover {

    background: rgb(100,100,105);

}

.ctx-radio {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    cursor: pointer;

    font-size: 14px;
    color: rgb(220,220,225);

}

.ctx-radio-input {

    display: none;

}

.ctx-radio-circle {

    width: 16px;
    height: 16px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 50%;

    position: relative;

    transition: background 0.15s, border-color 0.15s;

}

.ctx-radio:hover .ctx-radio-circle {

    background: rgb(55,55,60);

}

.ctx-radio-circle::after {

    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    background: white;

    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) scale(0);

    transition: transform 0.12s ease;

}

.ctx-radio-input:checked + .ctx-radio-circle {

    border-color: rgb(220,60,60);
    background: rgb(220,60,60);

}

.ctx-radio-input:checked + .ctx-radio-circle::after {

    transform: translate(-50%, -50%) scale(1);

}

.ctx-radio-input:disabled + .ctx-radio-circle {

    opacity: 0.5;
}

.ctx-radio-input:disabled ~ .ctx-radio-text {

    opacity: 0.5;

}


.ctx-switch {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    cursor: pointer;

    font-size: 14px;
    color: rgb(220,220,225);

}

.ctx-switch-input {

    display: none;

}

.ctx-switch-slider {

    position: relative;

    width: 42px;
    height: 22px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 20px;

    transition: background 0.15s;

}

.ctx-switch-slider::before {

    content: "";

    position: absolute;

    height: 16px;
    width: 16px;

    left: 3px;
    top: 2px;

    background: white;

    border-radius: 50%;

    transition: transform 0.18s ease;

}

.ctx-switch-input:checked + .ctx-switch-slider {

    background: rgb(220,60,60);
    border-color: rgb(220,60,60);

}

.ctx-switch-input:checked + .ctx-switch-slider::before {

    transform: translateX(20px);

}

.ctx-switch-input:disabled + .ctx-switch-slider {

    opacity: 0.5;
}

.ctx-switch-input:disabled ~ .ctx-switch-text {

    opacity: 0.5;

}



.ctx-select {

    position: relative;
    width: 100%;

    font-size: 14px;

}

.ctx-select-trigger {

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 10px;

    background: rgb(40,40,45);
    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    color: white;

    cursor: pointer;

    transition: background 0.15s, border-color 0.15s;

}

.ctx-select-trigger:hover {

    background: rgb(55,55,60);

}

.ctx-select-arrow {

    font-size: 12px;
    opacity: 0.7;

}

.ctx-select-dropdown {

    position: absolute;

    top: calc(100% + 4px);
    left: 0;

    width: 100%;
    padding: 4px 0;

    background: rgb(32,32,35);
    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    overflow-y: auto;
    overflow-x: hidden;

    max-height: 120px; 

    box-shadow: 0 4px 10px rgba(0,0,0,0.35);

    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;

    transition:
        opacity 0.15s,
        transform 0.15s;

}

.ctx-select.open .ctx-select-dropdown {

    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;

}

.ctx-select-option {

    padding: 8px 10px;

    color: rgb(220,220,225);

    cursor: pointer;

    transition: background 0.15s;

}

.ctx-select-option:hover {

    background: rgb(55,55,60);

}

.ctx-select-dropdown::-webkit-scrollbar {

    width: 8px;

}

.ctx-select-dropdown::-webkit-scrollbar-track {

    background: rgb(22,22,25);

}

.ctx-select-dropdown::-webkit-scrollbar-thumb {

    background: rgb(70,70,75);
    border-radius: 6px;

}

.ctx-select-dropdown::-webkit-scrollbar-thumb:hover {

    background: rgb(100,100,105);

}

@media (max-width: 768px) {

    .ctx-select-dropdown {

        position: fixed;

        top: 0;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;

        border-radius: 0;
        border: none;

        background: rgb(22,22,25);

        padding-top: 70px;

        overflow-y: auto;
        overflow-x: hidden;

        -webkit-overflow-scrolling: touch;

        max-height: none;

        transform: translateY(20px);

    }

    .ctx-select.open .ctx-select-dropdown {

        transform: translateY(0);

    }

    .ctx-select-option {

        padding: 16px 20px;

        font-size: 18px;
        border-bottom: 1px solid rgb(50,50,55);

    }

}

.ctx-slider {
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(
        to right,
        rgb(220,60,60) 0%,
        rgb(220,60,60) var(--ctx-slider-progress, 50%),
        rgb(40,40,45) var(--ctx-slider-progress, 50%),
        rgb(40,40,45) 100%
    );
    border: 1px solid rgb(70,70,75);
    appearance: none;
    outline: none;
}

.ctx-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgb(220,60,60);
    cursor: pointer;
}

.ctx-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgb(220,60,60);
    cursor: pointer;
}

.ctx-slider::-moz-range-track {
    height: 6px;
    border-radius: 6px;
    background: transparent;
}



.ctx-form {

    background: rgb(32,32,35);

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    padding: 20px;

}

.ctx-form-title {

    font-size: 18px;
    font-weight: 600;

    color: white;

    margin-bottom: 16px;

}

.ctx-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.ctx-form-label {
    font-size: 13px;
    color: rgb(200,200,205);
}

.ctx-form-help {
    font-size: 12px;
    color: rgb(160,160,165);
}

.ctx-form-error {
    font-size: 12px;
    color: rgb(220,60,60);
}

.ctx-form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ctx-form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}


.ctx-table {

    width: 100%;

    border-collapse: collapse;

    background: rgb(32,32,35);

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    overflow: hidden;

}

.ctx-table thead {

    background: rgb(40,40,45);

}

.ctx-table th {

    text-align: left;

    padding: 10px 12px;

    font-size: 13px;
    font-weight: 600;

    color: rgb(220,220,225);

    border-bottom: 1px solid rgb(70,70,75);

}

.ctx-table td {

    padding: 10px 12px;

    font-size: 14px;

    color: rgb(200,200,205);

    border-bottom: 1px solid rgb(50,50,55);

}

.ctx-table tbody tr {

    transition: background 0.15s;

}

.ctx-table tbody tr:hover {

    background: rgb(40,40,45);

}

.ctx-table tbody tr:last-child td {

    border-bottom: none;

}

.ctx-image {

    display: block;

    max-width: 100%;

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

}

.ctx-box {

    background: rgb(32,32,35);

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    padding: 16px;

}

.ctx-image-box img {

    display: block;

    width: 100%;
    height: auto;

}

.ctx-image-box {

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    overflow: hidden;

}

.ctx-image-box img {

    display: block;

    width: 100%;
    height: auto;

}

.ctx-switch-box {

    position: relative;

    display: flex;

    background: rgb(40,40,45);

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    padding: 2px;

    overflow: hidden;

}

.ctx-switch-box-option {

    flex: 1;

    text-align: center;

    padding: 8px 10px;

    font-size: 14px;
    font-weight: 500;

    color: rgb(200,200,205);

    cursor: pointer;

    transition: color 0.2s ease;

    z-index: 2;

}

.ctx-switch-box-option.active {

    color: white;

}

.ctx-switch-box-slider {

    position: absolute;

    top: 2px;
    left: 2px;

    height: calc(100% - 4px);

    background: rgb(220,60,60);

    border-radius: 4px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.35);

    transition: transform 0.25s ease, width 0.25s ease;

    z-index: 1;

}


.ctx-switch-grid {

    position: relative;
    overflow: hidden;
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 2px;

    background: rgb(40,40,45);

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    padding: 2px;

}

.ctx-switch-grid-option {

    text-align: center;

    padding: 8px 10px;

    font-size: 14px;

    color: rgb(220,220,225);

    cursor: pointer;

    z-index: 2;

}

.ctx-switch-grid-option.active {

    color: white;

}

.ctx-switch-grid-slider {

    position: absolute;
    will-change: transform;
    background: rgb(220,60,60);

    border-radius: 4px;

    transition: all 0.25s ease;

    z-index: 1;

}


.ctx-split-h {

    width: 100%;
    height: 1px;

    background: rgb(70,70,75);

    margin: 12px 0;

}

.ctx-split-w {

    width: 1px;
    align-self: stretch;

    background: rgb(70,70,75);

    margin: 0 12px;

    flex-shrink: 0;

}





.ctx-cookies {

    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    background: rgb(22,22,25);

    border-top: 1px solid rgb(70,70,75);

    padding: 18px;

    z-index: 2000;

}

.ctx-cookies-text {

    color: rgb(200,200,205);

    font-size: 14px;

    margin-bottom: 12px;

}

.ctx-cookies-actions {

    display: flex;

    gap: 10px;

}

.ctx-cookies-settings {

    display: none;

    flex-direction: column;

    gap: 10px;

}

.ctx-cookies-title {

    font-size: 16px;

    color: white;

    margin-bottom: 8px;

}

.ctx-cookies.settings-open .ctx-cookies-main {

    display: none;

}

.ctx-cookies.settings-open .ctx-cookies-settings {

    display: flex;

}


.ctx-news-block {

    background: rgb(32,32,35);

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    padding: 14px 16px;

    cursor: pointer;

    transition: 
        background 0.2s ease,
        border-color 0.2s ease;

}

.ctx-news-block:hover {

    background: rgb(40,40,45);
    border-color: rgb(90,90,95);

}

.ctx-news-header {

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.ctx-news-title {

    font-size: 15px;
    font-weight: 600;

    color: white;

}

.ctx-news-arrow {

    font-size: 12px;

    color: rgb(200,200,205);

    transition: transform 0.25s ease;

}

.ctx-news-block.open .ctx-news-arrow {

    transform: rotate(180deg);

}

.ctx-news-text {

    margin-top: 6px;

    font-size: 14px;
    line-height: 1.5;

    color: rgb(200,200,205);

    overflow: hidden;

    transition:
        height 0.68s ease,
        color 0.2s ease;

}

.ctx-news-meta {

    display: flex;
    gap: 10px;

    margin-top: 4px;
    margin-bottom: 6px;

    font-size: 12px;

    color: rgb(160,160,165);

}

.ctx-news-author {

    color: rgb(200,200,205);

}

.ctx-news-date {

    color: rgb(160,160,165);

}

.ctx-news-text p {

    margin: 8px 0;

}

.ctx-news-text ul {

    margin: 8px 0;
    padding-left: 18px;

}

.ctx-news-text li {

    margin: 4px 0;

}


.ctx-paginat-nav {

    display: flex;
    gap: 6px;

    margin-top: 10px;

    flex-wrap: wrap;

}

.ctx-accordion {

    background: rgb(32,32,35);

    border: 1px solid rgb(70,70,75);
    border-radius: 6px;

    padding: 12px 14px;

    cursor: pointer;

}

.ctx-accordion-header {

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.ctx-accordion-title {

    font-size: 15px;
    font-weight: 600;

    color: white;

}

.ctx-accordion-icon {

    font-size: 18px;

    color: rgb(200,200,205);

    transition: transform 0.25s ease;

}

.ctx-accordion.open .ctx-accordion-icon {

    transform: rotate(45deg);

}

.ctx-accordion-content {

    margin-top: 8px;

    font-size: 14px;

    color: rgb(200,200,205);

    overflow: hidden;

    height: 0;

    transition: height 0.28s ease;

}



@media (max-width: 768px) {

    .ctx-form-row {
        flex-direction: column;
    }

}

.ctx-w50 { max-width: 50px; width: 85%; }
.ctx-w100 { max-width: 100px; width: 85%; }
.ctx-w150 { max-width: 150px; width: 85%; }
.ctx-w200 { max-width: 200px; width: 85%; }
.ctx-w250 { max-width: 250px; width: 85%; }
.ctx-w300 { max-width: 300px; width: 85%; }
.ctx-w350 { max-width: 350px; width: 85%; }
.ctx-w400 { max-width: 400px; width: 85%; }
.ctx-w450 { max-width: 450px; width: 85%; }
.ctx-w500 { max-width: 500px; width: 85%; }
.ctx-w550 { max-width: 550px; width: 85%; }
.ctx-w600 { max-width: 600px; width: 85%; }
.ctx-w650 { max-width: 650px; width: 85%; }
.ctx-w700 { max-width: 700px; width: 85%; }
.ctx-w750 { max-width: 750px; width: 85%; }
.ctx-w800 { max-width: 800px; width: 85%; }
.ctx-w850 { max-width: 850px; width: 85%; }
.ctx-w900 { max-width: 900px; width: 85%; }
.ctx-w950 { max-width: 950px; width: 85%; }
.ctx-w1000 { max-width: 1000px; width: 85%; }

.ctx-h50 { height: 50px; }
.ctx-h100 { height: 100px; }
.ctx-h150 { height: 150px; }
.ctx-h200 { height: 200px; }
.ctx-h250 { height: 250px; }
.ctx-h300 { height: 300px; }
.ctx-h350 { height: 350px; }
.ctx-h400 { height: 400px; }
.ctx-h450 { height: 450px; }
.ctx-h500 { height: 500px; }
.ctx-h550 { height: 550px; }
.ctx-h600 { height: 600px; }
.ctx-h650 { height: 650px; }
.ctx-h700 { height: 700px; }
.ctx-h750 { height: 750px; }
.ctx-h800 { height: 800px; }
.ctx-h850 { height: 850px; }
.ctx-h900 { height: 900px; }
.ctx-h950 { height: 950px; }
.ctx-h1000 { height: 1000px; }

.ctx-wp10 { width: 10%; }
.ctx-wp20 { width: 20%; }
.ctx-wp30 { width: 30%; }
.ctx-wp40 { width: 40%; }
.ctx-wp50 { width: 50%; }
.ctx-wp60 { width: 60%; }
.ctx-wp70 { width: 70%; }
.ctx-wp80 { width: 80%; }
.ctx-wp90 { width: 90%; }
.ctx-wp100 { width: 100%; }

.ctx-m5 { margin: 5px; }
.ctx-m10 { margin: 10px; }
.ctx-m15 { margin: 15px; }
.ctx-m20 { margin: 20px; }
.ctx-m25 { margin: 25px; }
.ctx-m30 { margin: 30px; }
.ctx-m35 { margin: 35px; }
.ctx-m40 { margin: 40px; }
.ctx-m45 { margin: 45px; }
.ctx-m50 { margin: 50px; }
.ctx-m55 { margin: 55px; }
.ctx-m60 { margin: 60px; }
.ctx-m65 { margin: 65px; }
.ctx-m70 { margin: 70px; }
.ctx-m75 { margin: 75px; }
.ctx-m80 { margin: 80px; }
.ctx-m85 { margin: 85px; }
.ctx-m90 { margin: 90px; }
.ctx-m95 { margin: 95px; }
.ctx-m100 { margin: 100px; }

.ctx-mt5 { margin-top: 5px; }
.ctx-mt10 { margin-top: 10px; }
.ctx-mt15 { margin-top: 15px; }
.ctx-mt20 { margin-top: 20px; }
.ctx-mt25 { margin-top: 25px; }
.ctx-mt30 { margin-top: 30px; }
.ctx-mt35 { margin-top: 35px; }
.ctx-mt40 { margin-top: 40px; }
.ctx-mt45 { margin-top: 45px; }
.ctx-mt50 { margin-top: 50px; }
.ctx-mt55 { margin-top: 55px; }
.ctx-mt60 { margin-top: 60px; }
.ctx-mt65 { margin-top: 65px; }
.ctx-mt70 { margin-top: 70px; }
.ctx-mt75 { margin-top: 75px; }
.ctx-mt80 { margin-top: 80px; }
.ctx-mt85 { margin-top: 85px; }
.ctx-mt90 { margin-top: 90px; }
.ctx-mt95 { margin-top: 95px; }
.ctx-mt100 { margin-top: 100px; }

.ctx-mb5 { margin-bottom: 5px; }
.ctx-mb10 { margin-bottom: 10px; }
.ctx-mb15 { margin-bottom: 15px; }
.ctx-mb20 { margin-bottom: 20px; }
.ctx-mb25 { margin-bottom: 25px; }
.ctx-mb30 { margin-bottom: 30px; }
.ctx-mb35 { margin-bottom: 35px; }
.ctx-mb40 { margin-bottom: 40px; }
.ctx-mb45 { margin-bottom: 45px; }
.ctx-mb50 { margin-bottom: 50px; }
.ctx-mb55 { margin-bottom: 55px; }
.ctx-mb60 { margin-bottom: 60px; }
.ctx-mb65 { margin-bottom: 65px; }
.ctx-mb70 { margin-bottom: 70px; }
.ctx-mb75 { margin-bottom: 75px; }
.ctx-mb80 { margin-bottom: 80px; }
.ctx-mb85 { margin-bottom: 85px; }
.ctx-mb90 { margin-bottom: 90px; }
.ctx-mb95 { margin-bottom: 95px; }
.ctx-mb100 { margin-bottom: 100px; }

.ctx-ml5 { margin-left: 5px; }
.ctx-ml10 { margin-left: 10px; }
.ctx-ml15 { margin-left: 15px; }
.ctx-ml20 { margin-left: 20px; }
.ctx-ml25 { margin-left: 25px; }
.ctx-ml30 { margin-left: 30px; }
.ctx-ml35 { margin-left: 35px; }
.ctx-ml40 { margin-left: 40px; }
.ctx-ml45 { margin-left: 45px; }
.ctx-ml50 { margin-left: 50px; }
.ctx-ml55 { margin-left: 55px; }
.ctx-ml60 { margin-left: 60px; }
.ctx-ml65 { margin-left: 65px; }
.ctx-ml70 { margin-left: 70px; }
.ctx-ml75 { margin-left: 75px; }
.ctx-ml80 { margin-left: 80px; }
.ctx-ml85 { margin-left: 85px; }
.ctx-ml90 { margin-left: 90px; }
.ctx-ml95 { margin-left: 95px; }
.ctx-ml100 { margin-left: 100px; }

.ctx-mr5 { margin-right: 5px; }
.ctx-mr10 { margin-right: 10px; }
.ctx-mr15 { margin-right: 15px; }
.ctx-mr20 { margin-right: 20px; }
.ctx-mr25 { margin-right: 25px; }
.ctx-mr30 { margin-right: 30px; }
.ctx-mr35 { margin-right: 35px; }
.ctx-mr40 { margin-right: 40px; }
.ctx-mr45 { margin-right: 45px; }
.ctx-mr50 { margin-right: 50px; }
.ctx-mr55 { margin-right: 55px; }
.ctx-mr60 { margin-right: 60px; }
.ctx-mr65 { margin-right: 65px; }
.ctx-mr70 { margin-right: 70px; }
.ctx-mr75 { margin-right: 75px; }
.ctx-mr80 { margin-right: 80px; }
.ctx-mr85 { margin-right: 85px; }
.ctx-mr90 { margin-right: 90px; }
.ctx-mr95 { margin-right: 95px; }
.ctx-mr100 { margin-right: 100px; }

.ctx-nl {flex-basis: 100%; width: 100%;}
.ctx-br {width: 100%; height: 0;}

.ctx-text-left { text-align: left; }
.ctx-text-center { text-align: center; }
.ctx-text-right { text-align: right; }

.ctx-elm-left { margin-right: auto; }
.ctx-elm-center { margin-left: auto; margin-right: auto; }
.ctx-elm-right { margin-left: auto; }

.ctx-opt-2 { grid-template-columns: repeat(2,1fr); }
.ctx-opt-3 { grid-template-columns: repeat(3,1fr); }
.ctx-opt-4 { grid-template-columns: repeat(4,1fr); }
.ctx-opt-5 { grid-template-columns: repeat(5,1fr); }
.ctx-opt-6 { grid-template-columns: repeat(6,1fr); }

.ctx-flex { display: flex; }

.ctx-flex-center { display: flex; align-items: center; }

.ctx-flex-middle { display: flex; align-items: center; justify-content: center; }

.ctx-flex-between { display: flex; align-items: center; justify-content: space-between; }

.ctx-flex-around { display: flex; align-items: center; justify-content: space-around; }

.ctx-flex-evenly { display: flex; align-items: center; justify-content: space-evenly; }

.ctx-flex-col { display: flex; flex-direction: column; }

.ctx-flex-wrap { display: flex; flex-wrap: wrap; }

.ctx-flex-gap10 { gap: 10px; }
.ctx-flex-gap20 { gap: 20px; }

.ctx-red-text {
    color: rgb(220,60,60);
}
.ctx-white-text {
    color: white;
}

.ctx-fs-12 { font-size: 12px; }
.ctx-fs-14 { font-size: 14px; }
.ctx-fs-16 { font-size: 16px; }
.ctx-fs-18 { font-size: 18px; }
.ctx-fs-20 { font-size: 20px; }
.ctx-fs-22 { font-size: 22px; }
.ctx-fs-24 { font-size: 24px; }

.ctx-bc-green {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.ctx-bc-green:hover {
  background-color: #218838;
}

.ctx-bc-red {
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.ctx-bc-red:hover {
  background-color: #c82333;
}

#ctxOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  z-index: 999;
  display: none;
}

#ctxCookies {
  z-index: 1000;
}

#ctxCookies,
#ctxOverlay {
  display: none;
}

[hidden] {
    display: none !important;
}