/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.15
}
/* Leave Review Section */


.text-warning {
    color: #f1c40f; /* Яркий желтый цвет для звезд */
    font-size: 1.5em; /* Размер звезд */
    display: inline-block; /* Для корректного отображения эффектов */
    position: relative;
    
    transition: transform 0.2s ease, text-shadow 0.3s ease; /* Плавные переходы */
}

/* Эффект при наведении */
.text-warning:hover {
    transform: scale(1.1); /* Легкое увеличение */
    text-shadow: 0 0 12px rgba(241, 196, 15, 1), /* Усиление свечения */
                 0 0 20px rgba(241, 196, 15, 0.7);
}

/* Анимация мерцания */
.text-warning::before {
    content: '★★★★★';
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 255, 255, 0.3); /* Легкое белое мерцание */
    opacity: 0;
    animation: twinkle 2s infinite ease-in-out;
}

/* Ключевые кадры для анимации мерцания */
@keyframes twinkle {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

/* Heading */
.leave-review h4 {
    color: #222222;
    font-size: 1.75rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Form Styling */
.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Labels */
.review-form label {
    color: #222222;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.review-form label:hover {
    color: #007bff;
}

/* Select Dropdown */
.review-form select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-form select:hover {
    border-color: #00c4b4;
    transform: translateY(-2px);
}

.review-form select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

/* Textarea */
.review-form textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333333;
    min-height: 120px;
    resize: vertical;
    transition: all 0.3s ease;
}

.review-form textarea:hover {
    border-color: #00c4b4;
    transform: translateY(-2px);
}

.review-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}

/* Submit Button */
.review-form button {
    padding: 14px;
    background: linear-gradient(to right, #ffffff, #ffffff);
    color: #000000;
    border: none;
    border-radius: 8px;
    border: 1px solid #000000;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.review-form button::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.review-form button:hover::after {
    opacity: 1;
    right: 15px;
}

/* Animation Keyframes */
@keyframes slideAccent {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .leave-review {
        padding: 20px;
        margin: 15px;
    }

    .leave-review h4 {
        font-size: 1.5rem;
    }

    .review-form select,
    .review-form textarea,
    .review-form button {
        font-size: 0.95rem;
        padding: 10px;
    }

    .review-form label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .leave-review {
        padding: 15px;
        margin: 10px;
    }

    .leave-review h4 {
        font-size: 1.25rem;
    }

    .review-form select,
    .review-form textarea,
    .review-form button {
        font-size: 0.9rem;
        padding: 8px;
    }

    .review-form label {
        font-size: 0.95rem;
    }
}
body {
    margin: 0
}

main {
    display: block
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,strong {
    font-weight: 500
}

small {
    display: inline-block;
    font-size: 80%
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,input,optgroup,select,textarea {
    font-family: inherit;
    margin: 0
}

button,input {
    overflow: visible
}

button,select {
    text-transform: none
}

[type=button],[type=reset],[type=submit],button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,a:focus,button:-moz-focusring {
    outline: none
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

[hidden],template {
    display: none
}

/*!
 * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
html {
    -ms-overflow-style: scrollbar;
    box-sizing: border-box
}

*,:after,:before {
    box-sizing: inherit
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%
}

@media (min-width: 576px) {
    .container {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width:960px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width:1260px
    }
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px
}

.no-gutters {
    margin-left: 0;
    margin-right: 0
}

.no-gutters>.col,.no-gutters>[class*=col-] {
    padding-left: 0;
    padding-right: 0
}

.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    width: 100%
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    flex: 0 0 auto;
    max-width: 100%;
    width: auto
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.order-first {
    order: -1
}

.order-last {
    order: 13
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-6 {
    order: 6
}

.order-7 {
    order: 7
}

.order-8 {
    order: 8
}

.order-9 {
    order: 9
}

.order-10 {
    order: 10
}

.order-11 {
    order: 11
}

.order-12 {
    order: 12
}

.offset-1 {
    margin-left: 8.33333%
}

.offset-2 {
    margin-left: 16.66667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333%
}

.offset-5 {
    margin-left: 41.66667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333%
}

.offset-8 {
    margin-left: 66.66667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333%
}

.offset-11 {
    margin-left: 91.66667%
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        max-width: 100%;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        order: -1
    }

    .order-sm-last {
        order: 13
    }

    .order-sm-0 {
        order: 0
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-6 {
        order: 6
    }

    .order-sm-7 {
        order: 7
    }

    .order-sm-8 {
        order: 8
    }

    .order-sm-9 {
        order: 9
    }

    .order-sm-10 {
        order: 10
    }

    .order-sm-11 {
        order: 11
    }

    .order-sm-12 {
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333%
    }

    .offset-sm-2 {
        margin-left: 16.66667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333%
    }

    .offset-sm-5 {
        margin-left: 41.66667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333%
    }

    .offset-sm-8 {
        margin-left: 66.66667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333%
    }

    .offset-sm-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        flex: 0 0 auto;
        max-width: 100%;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        order: -1
    }

    .order-md-last {
        order: 13
    }

    .order-md-0 {
        order: 0
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    .order-md-3 {
        order: 3
    }

    .order-md-4 {
        order: 4
    }

    .order-md-5 {
        order: 5
    }

    .order-md-6 {
        order: 6
    }

    .order-md-7 {
        order: 7
    }

    .order-md-8 {
        order: 8
    }

    .order-md-9 {
        order: 9
    }

    .order-md-10 {
        order: 10
    }

    .order-md-11 {
        order: 11
    }

    .order-md-12 {
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333%
    }

    .offset-md-2 {
        margin-left: 16.66667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333%
    }

    .offset-md-5 {
        margin-left: 41.66667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333%
    }

    .offset-md-8 {
        margin-left: 66.66667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333%
    }

    .offset-md-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        max-width: 100%;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        order: -1
    }

    .order-lg-last {
        order: 13
    }

    .order-lg-0 {
        order: 0
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-6 {
        order: 6
    }

    .order-lg-7 {
        order: 7
    }

    .order-lg-8 {
        order: 8
    }

    .order-lg-9 {
        order: 9
    }

    .order-lg-10 {
        order: 10
    }

    .order-lg-11 {
        order: 11
    }

    .order-lg-12 {
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333%
    }

    .offset-lg-2 {
        margin-left: 16.66667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333%
    }

    .offset-lg-5 {
        margin-left: 41.66667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333%
    }

    .offset-lg-8 {
        margin-left: 66.66667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333%
    }

    .offset-lg-11 {
        margin-left: 91.66667%
    }
}

@media (min-width: 1280px) {
    .col-xl {
        flex-basis:0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        max-width: 100%;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-xl-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-xl-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-xl-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        order: -1
    }

    .order-xl-last {
        order: 13
    }

    .order-xl-0 {
        order: 0
    }

    .order-xl-1 {
        order: 1
    }

    .order-xl-2 {
        order: 2
    }

    .order-xl-3 {
        order: 3
    }

    .order-xl-4 {
        order: 4
    }

    .order-xl-5 {
        order: 5
    }

    .order-xl-6 {
        order: 6
    }

    .order-xl-7 {
        order: 7
    }

    .order-xl-8 {
        order: 8
    }

    .order-xl-9 {
        order: 9
    }

    .order-xl-10 {
        order: 10
    }

    .order-xl-11 {
        order: 11
    }

    .order-xl-12 {
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333%
    }

    .offset-xl-2 {
        margin-left: 16.66667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333%
    }

    .offset-xl-5 {
        margin-left: 41.66667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333%
    }

    .offset-xl-8 {
        margin-left: 66.66667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333%
    }

    .offset-xl-11 {
        margin-left: 91.66667%
    }
}

.d-none {
    display: none!important
}

.d-inline {
    display: inline!important
}

.d-inline-block {
    display: inline-block!important
}

.d-block {
    display: block!important
}

.d-table {
    display: table!important
}

.d-table-row {
    display: table-row!important
}

.d-table-cell {
    display: table-cell!important
}

.d-flex {
    display: flex!important
}

.d-inline-flex {
    display: inline-flex!important
}

@media (min-width: 576px) {
    .d-sm-none {
        display:none!important
    }

    .d-sm-inline {
        display: inline!important
    }

    .d-sm-inline-block {
        display: inline-block!important
    }

    .d-sm-block {
        display: block!important
    }

    .d-sm-table {
        display: table!important
    }

    .d-sm-table-row {
        display: table-row!important
    }

    .d-sm-table-cell {
        display: table-cell!important
    }

    .d-sm-flex {
        display: flex!important
    }

    .d-sm-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display:none!important
    }

    .d-md-inline {
        display: inline!important
    }

    .d-md-inline-block {
        display: inline-block!important
    }

    .d-md-block {
        display: block!important
    }

    .d-md-table {
        display: table!important
    }

    .d-md-table-row {
        display: table-row!important
    }

    .d-md-table-cell {
        display: table-cell!important
    }

    .d-md-flex {
        display: flex!important
    }

    .d-md-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display:none!important
    }

    .d-lg-inline {
        display: inline!important
    }

    .d-lg-inline-block {
        display: inline-block!important
    }

    .d-lg-block {
        display: block!important
    }

    .d-lg-table {
        display: table!important
    }

    .d-lg-table-row {
        display: table-row!important
    }

    .d-lg-table-cell {
        display: table-cell!important
    }

    .d-lg-flex {
        display: flex!important
    }

    .d-lg-inline-flex {
        display: inline-flex!important
    }
}

@media (min-width: 1280px) {
    .d-xl-none {
        display:none!important
    }

    .d-xl-inline {
        display: inline!important
    }

    .d-xl-inline-block {
        display: inline-block!important
    }

    .d-xl-block {
        display: block!important
    }

    .d-xl-table {
        display: table!important
    }

    .d-xl-table-row {
        display: table-row!important
    }

    .d-xl-table-cell {
        display: table-cell!important
    }

    .d-xl-flex {
        display: flex!important
    }

    .d-xl-inline-flex {
        display: inline-flex!important
    }
}

.flex-row {
    flex-direction: row!important
}

.flex-column {
    flex-direction: column!important
}

.flex-row-reverse {
    flex-direction: row-reverse!important
}

.flex-column-reverse {
    flex-direction: column-reverse!important
}

.flex-wrap {
    flex-wrap: wrap!important
}

.flex-nowrap {
    flex-wrap: nowrap!important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse!important
}

.flex-fill {
    flex: 1 1 auto!important
}

.flex-grow-0 {
    flex-grow: 0!important
}

.flex-grow-1 {
    flex-grow: 1!important
}

.flex-shrink-0 {
    flex-shrink: 0!important
}

.flex-shrink-1 {
    flex-shrink: 1!important
}

.justify-content-start {
    justify-content: flex-start!important
}

.justify-content-end {
    justify-content: flex-end!important
}

.justify-content-center {
    justify-content: center!important
}

.justify-content-between {
    justify-content: space-between!important
}

.justify-content-around {
    justify-content: space-around!important
}

.align-items-start {
    align-items: flex-start!important
}

.align-items-end {
    align-items: flex-end!important
}

.align-items-center {
    align-items: center!important
}

.align-items-baseline {
    align-items: baseline!important
}

.align-items-stretch {
    align-items: stretch!important
}

.align-content-start {
    align-content: flex-start!important
}

.align-content-end {
    align-content: flex-end!important
}

.align-content-center {
    align-content: center!important
}

.align-content-between {
    align-content: space-between!important
}

.align-content-around {
    align-content: space-around!important
}

.align-content-stretch {
    align-content: stretch!important
}

.align-self-auto {
    align-self: auto!important
}

.align-self-start {
    align-self: flex-start!important
}

.align-self-end {
    align-self: flex-end!important
}

.align-self-center {
    align-self: center!important
}

.align-self-baseline {
    align-self: baseline!important
}

.align-self-stretch {
    align-self: stretch!important
}

@media (min-width: 576px) {
    .flex-sm-row {
        flex-direction:row!important
    }

    .flex-sm-column {
        flex-direction: column!important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-sm-wrap {
        flex-wrap: wrap!important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-sm-fill {
        flex: 1 1 auto!important
    }

    .flex-sm-grow-0 {
        flex-grow: 0!important
    }

    .flex-sm-grow-1 {
        flex-grow: 1!important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-sm-start {
        justify-content: flex-start!important
    }

    .justify-content-sm-end {
        justify-content: flex-end!important
    }

    .justify-content-sm-center {
        justify-content: center!important
    }

    .justify-content-sm-between {
        justify-content: space-between!important
    }

    .justify-content-sm-around {
        justify-content: space-around!important
    }

    .align-items-sm-start {
        align-items: flex-start!important
    }

    .align-items-sm-end {
        align-items: flex-end!important
    }

    .align-items-sm-center {
        align-items: center!important
    }

    .align-items-sm-baseline {
        align-items: baseline!important
    }

    .align-items-sm-stretch {
        align-items: stretch!important
    }

    .align-content-sm-start {
        align-content: flex-start!important
    }

    .align-content-sm-end {
        align-content: flex-end!important
    }

    .align-content-sm-center {
        align-content: center!important
    }

    .align-content-sm-between {
        align-content: space-between!important
    }

    .align-content-sm-around {
        align-content: space-around!important
    }

    .align-content-sm-stretch {
        align-content: stretch!important
    }

    .align-self-sm-auto {
        align-self: auto!important
    }

    .align-self-sm-start {
        align-self: flex-start!important
    }

    .align-self-sm-end {
        align-self: flex-end!important
    }

    .align-self-sm-center {
        align-self: center!important
    }

    .align-self-sm-baseline {
        align-self: baseline!important
    }

    .align-self-sm-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction:row!important
    }

    .flex-md-column {
        flex-direction: column!important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-md-wrap {
        flex-wrap: wrap!important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-md-fill {
        flex: 1 1 auto!important
    }

    .flex-md-grow-0 {
        flex-grow: 0!important
    }

    .flex-md-grow-1 {
        flex-grow: 1!important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-md-start {
        justify-content: flex-start!important
    }

    .justify-content-md-end {
        justify-content: flex-end!important
    }

    .justify-content-md-center {
        justify-content: center!important
    }

    .justify-content-md-between {
        justify-content: space-between!important
    }

    .justify-content-md-around {
        justify-content: space-around!important
    }

    .align-items-md-start {
        align-items: flex-start!important
    }

    .align-items-md-end {
        align-items: flex-end!important
    }

    .align-items-md-center {
        align-items: center!important
    }

    .align-items-md-baseline {
        align-items: baseline!important
    }

    .align-items-md-stretch {
        align-items: stretch!important
    }

    .align-content-md-start {
        align-content: flex-start!important
    }

    .align-content-md-end {
        align-content: flex-end!important
    }

    .align-content-md-center {
        align-content: center!important
    }

    .align-content-md-between {
        align-content: space-between!important
    }

    .align-content-md-around {
        align-content: space-around!important
    }

    .align-content-md-stretch {
        align-content: stretch!important
    }

    .align-self-md-auto {
        align-self: auto!important
    }

    .align-self-md-start {
        align-self: flex-start!important
    }

    .align-self-md-end {
        align-self: flex-end!important
    }

    .align-self-md-center {
        align-self: center!important
    }

    .align-self-md-baseline {
        align-self: baseline!important
    }

    .align-self-md-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction:row!important
    }

    .flex-lg-column {
        flex-direction: column!important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-lg-wrap {
        flex-wrap: wrap!important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-lg-fill {
        flex: 1 1 auto!important
    }

    .flex-lg-grow-0 {
        flex-grow: 0!important
    }

    .flex-lg-grow-1 {
        flex-grow: 1!important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-lg-start {
        justify-content: flex-start!important
    }

    .justify-content-lg-end {
        justify-content: flex-end!important
    }

    .justify-content-lg-center {
        justify-content: center!important
    }

    .justify-content-lg-between {
        justify-content: space-between!important
    }

    .justify-content-lg-around {
        justify-content: space-around!important
    }

    .align-items-lg-start {
        align-items: flex-start!important
    }

    .align-items-lg-end {
        align-items: flex-end!important
    }

    .align-items-lg-center {
        align-items: center!important
    }

    .align-items-lg-baseline {
        align-items: baseline!important
    }

    .align-items-lg-stretch {
        align-items: stretch!important
    }

    .align-content-lg-start {
        align-content: flex-start!important
    }

    .align-content-lg-end {
        align-content: flex-end!important
    }

    .align-content-lg-center {
        align-content: center!important
    }

    .align-content-lg-between {
        align-content: space-between!important
    }

    .align-content-lg-around {
        align-content: space-around!important
    }

    .align-content-lg-stretch {
        align-content: stretch!important
    }

    .align-self-lg-auto {
        align-self: auto!important
    }

    .align-self-lg-start {
        align-self: flex-start!important
    }

    .align-self-lg-end {
        align-self: flex-end!important
    }

    .align-self-lg-center {
        align-self: center!important
    }

    .align-self-lg-baseline {
        align-self: baseline!important
    }

    .align-self-lg-stretch {
        align-self: stretch!important
    }
}

@media (min-width: 1280px) {
    .flex-xl-row {
        flex-direction:row!important
    }

    .flex-xl-column {
        flex-direction: column!important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse!important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse!important
    }

    .flex-xl-wrap {
        flex-wrap: wrap!important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap!important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse!important
    }

    .flex-xl-fill {
        flex: 1 1 auto!important
    }

    .flex-xl-grow-0 {
        flex-grow: 0!important
    }

    .flex-xl-grow-1 {
        flex-grow: 1!important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0!important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1!important
    }

    .justify-content-xl-start {
        justify-content: flex-start!important
    }

    .justify-content-xl-end {
        justify-content: flex-end!important
    }

    .justify-content-xl-center {
        justify-content: center!important
    }

    .justify-content-xl-between {
        justify-content: space-between!important
    }

    .justify-content-xl-around {
        justify-content: space-around!important
    }

    .align-items-xl-start {
        align-items: flex-start!important
    }

    .align-items-xl-end {
        align-items: flex-end!important
    }

    .align-items-xl-center {
        align-items: center!important
    }

    .align-items-xl-baseline {
        align-items: baseline!important
    }

    .align-items-xl-stretch {
        align-items: stretch!important
    }

    .align-content-xl-start {
        align-content: flex-start!important
    }

    .align-content-xl-end {
        align-content: flex-end!important
    }

    .align-content-xl-center {
        align-content: center!important
    }

    .align-content-xl-between {
        align-content: space-between!important
    }

    .align-content-xl-around {
        align-content: space-around!important
    }

    .align-content-xl-stretch {
        align-content: stretch!important
    }

    .align-self-xl-auto {
        align-self: auto!important
    }

    .align-self-xl-start {
        align-self: flex-start!important
    }

    .align-self-xl-end {
        align-self: flex-end!important
    }

    .align-self-xl-center {
        align-self: center!important
    }

    .align-self-xl-baseline {
        align-self: baseline!important
    }

    .align-self-xl-stretch {
        align-self: stretch!important
    }
}

.m-0 {
    margin: 0!important
}

.mt-0,.my-0 {
    margin-top: 0!important
}

.mr-0,.mx-0 {
    margin-right: 0!important
}

.mb-0,.my-0 {
    margin-bottom: 0!important
}

.ml-0,.mx-0 {
    margin-left: 0!important
}

.m-1 {
    margin: 5px!important
}

.mt-1,.my-1 {
    margin-top: 5px!important
}

.mr-1,.mx-1 {
    margin-right: 5px!important
}

.mb-1,.my-1 {
    margin-bottom: 5px!important
}

.ml-1,.mx-1 {
    margin-left: 5px!important
}

.m-2 {
    margin: 10px!important
}

.mt-2,.my-2 {
    margin-top: 10px!important
}

.mr-2,.mx-2 {
    margin-right: 10px!important
}

.mb-2,.my-2 {
    margin-bottom: 10px!important
}

.ml-2,.mx-2 {
    margin-left: 10px!important
}

.m-3 {
    margin: 20px!important
}

.mt-3,.my-3 {
    margin-top: 20px!important
}

.mr-3,.mx-3 {
    margin-right: 20px!important
}

.mb-3,.my-3 {
    margin-bottom: 20px!important
}

.ml-3,.mx-3 {
    margin-left: 20px!important
}

.m-4 {
    margin: 30px!important
}

.mt-4,.my-4 {
    margin-top: 30px!important
}

.mr-4,.mx-4 {
    margin-right: 30px!important
}

.mb-4,.my-4 {
    margin-bottom: 30px!important
}

.ml-4,.mx-4 {
    margin-left: 30px!important
}

.m-5 {
    margin: 40px!important
}

.mt-5,.my-5 {
    margin-top: 40px!important
}

.mr-5,.mx-5 {
    margin-right: 40px!important
}

.mb-5,.my-5 {
    margin-bottom: 40px!important
}

.ml-5,.mx-5 {
    margin-left: 40px!important
}

.m-6 {
    margin: 60px!important
}

.mt-6,.my-6 {
    margin-top: 60px!important
}

.mr-6,.mx-6 {
    margin-right: 60px!important
}

.mb-6,.my-6 {
    margin-bottom: 60px!important
}

.ml-6,.mx-6 {
    margin-left: 60px!important
}

.m-7 {
    margin: 80px!important
}

.mt-7,.my-7 {
    margin-top: 80px!important
}

.mr-7,.mx-7 {
    margin-right: 80px!important
}

.mb-7,.my-7 {
    margin-bottom: 80px!important
}

.ml-7,.mx-7 {
    margin-left: 80px!important
}

.m-8 {
    margin: 100px!important
}

.mt-8,.my-8 {
    margin-top: 100px!important
}

.mr-8,.mx-8 {
    margin-right: 100px!important
}

.mb-8,.my-8 {
    margin-bottom: 100px!important
}

.ml-8,.mx-8 {
    margin-left: 100px!important
}

.m-9 {
    margin: 120px!important
}

.mt-9,.my-9 {
    margin-top: 120px!important
}

.mr-9,.mx-9 {
    margin-right: 120px!important
}

.mb-9,.my-9 {
    margin-bottom: 120px!important
}

.ml-9,.mx-9 {
    margin-left: 120px!important
}

.p-0 {
    padding: 0!important
}

.pt-0,.py-0 {
    padding-top: 0!important
}

.pr-0,.px-0 {
    padding-right: 0!important
}

.pb-0,.py-0 {
    padding-bottom: 0!important
}

.pl-0,.px-0 {
    padding-left: 0!important
}

.p-1 {
    padding: 5px!important
}

.pt-1,.py-1 {
    padding-top: 5px!important
}

.pr-1,.px-1 {
    padding-right: 5px!important
}

.pb-1,.py-1 {
    padding-bottom: 5px!important
}

.pl-1,.px-1 {
    padding-left: 5px!important
}

.p-2 {
    padding: 10px!important
}

.pt-2,.py-2 {
    padding-top: 10px!important
}

.pr-2,.px-2 {
    padding-right: 10px!important
}

.pb-2,.py-2 {
    padding-bottom: 10px!important
}

.pl-2,.px-2 {
    padding-left: 10px!important
}

.p-3 {
    padding: 20px!important
}

.pt-3,.py-3 {
    padding-top: 20px!important
}

.pr-3,.px-3 {
    padding-right: 20px!important
}

.pb-3,.py-3 {
    padding-bottom: 20px!important
}

.pl-3,.px-3 {
    padding-left: 20px!important
}

.p-4 {
    padding: 30px!important
}

.pt-4,.py-4 {
    padding-top: 30px!important
}

.pr-4,.px-4 {
    padding-right: 30px!important
}

.pb-4,.py-4 {
    padding-bottom: 30px!important
}

.pl-4,.px-4 {
    padding-left: 30px!important
}

.p-5 {
    padding: 40px!important
}

.pt-5,.py-5 {
    padding-top: 40px!important
}

.pr-5,.px-5 {
    padding-right: 40px!important
}

.pb-5,.py-5 {
    padding-bottom: 40px!important
}

.pl-5,.px-5 {
    padding-left: 40px!important
}

.p-6 {
    padding: 60px!important
}

.pt-6,.py-6 {
    padding-top: 60px!important
}

.pr-6,.px-6 {
    padding-right: 60px!important
}

.pb-6,.py-6 {
    padding-bottom: 60px!important
}

.pl-6,.px-6 {
    padding-left: 60px!important
}

.p-7 {
    padding: 80px!important
}

.pt-7,.py-7 {
    padding-top: 80px!important
}

.pr-7,.px-7 {
    padding-right: 80px!important
}

.pb-7,.py-7 {
    padding-bottom: 80px!important
}

.pl-7,.px-7 {
    padding-left: 80px!important
}

.p-8 {
    padding: 100px!important
}

.pt-8,.py-8 {
    padding-top: 100px!important
}

.pr-8,.px-8 {
    padding-right: 100px!important
}

.pb-8,.py-8 {
    padding-bottom: 100px!important
}

.pl-8,.px-8 {
    padding-left: 100px!important
}

.p-9 {
    padding: 120px!important
}

.pt-9,.py-9 {
    padding-top: 120px!important
}

.pr-9,.px-9 {
    padding-right: 120px!important
}

.pb-9,.py-9 {
    padding-bottom: 120px!important
}

.pl-9,.px-9 {
    padding-left: 120px!important
}

.m-n1 {
    margin: -5px!important
}

.mt-n1,.my-n1 {
    margin-top: -5px!important
}

.mr-n1,.mx-n1 {
    margin-right: -5px!important
}

.mb-n1,.my-n1 {
    margin-bottom: -5px!important
}

.ml-n1,.mx-n1 {
    margin-left: -5px!important
}

.m-n2 {
    margin: -10px!important
}

.mt-n2,.my-n2 {
    margin-top: -10px!important
}

.mr-n2,.mx-n2 {
    margin-right: -10px!important
}

.mb-n2,.my-n2 {
    margin-bottom: -10px!important
}

.ml-n2,.mx-n2 {
    margin-left: -10px!important
}

.m-n3 {
    margin: -20px!important
}

.mt-n3,.my-n3 {
    margin-top: -20px!important
}

.mr-n3,.mx-n3 {
    margin-right: -20px!important
}

.mb-n3,.my-n3 {
    margin-bottom: -20px!important
}

.ml-n3,.mx-n3 {
    margin-left: -20px!important
}

.m-n4 {
    margin: -30px!important
}

.mt-n4,.my-n4 {
    margin-top: -30px!important
}

.mr-n4,.mx-n4 {
    margin-right: -30px!important
}

.mb-n4,.my-n4 {
    margin-bottom: -30px!important
}

.ml-n4,.mx-n4 {
    margin-left: -30px!important
}

.m-n5 {
    margin: -40px!important
}

.mt-n5,.my-n5 {
    margin-top: -40px!important
}

.mr-n5,.mx-n5 {
    margin-right: -40px!important
}

.mb-n5,.my-n5 {
    margin-bottom: -40px!important
}

.ml-n5,.mx-n5 {
    margin-left: -40px!important
}

.m-n6 {
    margin: -60px!important
}

.mt-n6,.my-n6 {
    margin-top: -60px!important
}

.mr-n6,.mx-n6 {
    margin-right: -60px!important
}

.mb-n6,.my-n6 {
    margin-bottom: -60px!important
}

.ml-n6,.mx-n6 {
    margin-left: -60px!important
}

.m-n7 {
    margin: -80px!important
}

.mt-n7,.my-n7 {
    margin-top: -80px!important
}

.mr-n7,.mx-n7 {
    margin-right: -80px!important
}

.mb-n7,.my-n7 {
    margin-bottom: -80px!important
}

.ml-n7,.mx-n7 {
    margin-left: -80px!important
}

.m-n8 {
    margin: -100px!important
}

.mt-n8,.my-n8 {
    margin-top: -100px!important
}

.mr-n8,.mx-n8 {
    margin-right: -100px!important
}

.mb-n8,.my-n8 {
    margin-bottom: -100px!important
}

.ml-n8,.mx-n8 {
    margin-left: -100px!important
}

.m-n9 {
    margin: -120px!important
}

.mt-n9,.my-n9 {
    margin-top: -120px!important
}

.mr-n9,.mx-n9 {
    margin-right: -120px!important
}

.mb-n9,.my-n9 {
    margin-bottom: -120px!important
}

.ml-n9,.mx-n9 {
    margin-left: -120px!important
}

.m-auto {
    margin: auto!important
}

.mt-auto,.my-auto {
    margin-top: auto!important
}

.mr-auto,.mx-auto {
    margin-right: auto!important
}

.mb-auto,.my-auto {
    margin-bottom: auto!important
}

.ml-auto,.mx-auto {
    margin-left: auto!important
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin:0!important
    }

    .mt-sm-0,.my-sm-0 {
        margin-top: 0!important
    }

    .mr-sm-0,.mx-sm-0 {
        margin-right: 0!important
    }

    .mb-sm-0,.my-sm-0 {
        margin-bottom: 0!important
    }

    .ml-sm-0,.mx-sm-0 {
        margin-left: 0!important
    }

    .m-sm-1 {
        margin: 5px!important
    }

    .mt-sm-1,.my-sm-1 {
        margin-top: 5px!important
    }

    .mr-sm-1,.mx-sm-1 {
        margin-right: 5px!important
    }

    .mb-sm-1,.my-sm-1 {
        margin-bottom: 5px!important
    }

    .ml-sm-1,.mx-sm-1 {
        margin-left: 5px!important
    }

    .m-sm-2 {
        margin: 10px!important
    }

    .mt-sm-2,.my-sm-2 {
        margin-top: 10px!important
    }

    .mr-sm-2,.mx-sm-2 {
        margin-right: 10px!important
    }

    .mb-sm-2,.my-sm-2 {
        margin-bottom: 10px!important
    }

    .ml-sm-2,.mx-sm-2 {
        margin-left: 10px!important
    }

    .m-sm-3 {
        margin: 20px!important
    }

    .mt-sm-3,.my-sm-3 {
        margin-top: 20px!important
    }

    .mr-sm-3,.mx-sm-3 {
        margin-right: 20px!important
    }

    .mb-sm-3,.my-sm-3 {
        margin-bottom: 20px!important
    }

    .ml-sm-3,.mx-sm-3 {
        margin-left: 20px!important
    }

    .m-sm-4 {
        margin: 30px!important
    }

    .mt-sm-4,.my-sm-4 {
        margin-top: 30px!important
    }

    .mr-sm-4,.mx-sm-4 {
        margin-right: 30px!important
    }

    .mb-sm-4,.my-sm-4 {
        margin-bottom: 30px!important
    }

    .ml-sm-4,.mx-sm-4 {
        margin-left: 30px!important
    }

    .m-sm-5 {
        margin: 40px!important
    }

    .mt-sm-5,.my-sm-5 {
        margin-top: 40px!important
    }

    .mr-sm-5,.mx-sm-5 {
        margin-right: 40px!important
    }

    .mb-sm-5,.my-sm-5 {
        margin-bottom: 40px!important
    }

    .ml-sm-5,.mx-sm-5 {
        margin-left: 40px!important
    }

    .m-sm-6 {
        margin: 60px!important
    }

    .mt-sm-6,.my-sm-6 {
        margin-top: 60px!important
    }

    .mr-sm-6,.mx-sm-6 {
        margin-right: 60px!important
    }

    .mb-sm-6,.my-sm-6 {
        margin-bottom: 60px!important
    }

    .ml-sm-6,.mx-sm-6 {
        margin-left: 60px!important
    }

    .m-sm-7 {
        margin: 80px!important
    }

    .mt-sm-7,.my-sm-7 {
        margin-top: 80px!important
    }

    .mr-sm-7,.mx-sm-7 {
        margin-right: 80px!important
    }

    .mb-sm-7,.my-sm-7 {
        margin-bottom: 80px!important
    }

    .ml-sm-7,.mx-sm-7 {
        margin-left: 80px!important
    }

    .m-sm-8 {
        margin: 100px!important
    }

    .mt-sm-8,.my-sm-8 {
        margin-top: 100px!important
    }

    .mr-sm-8,.mx-sm-8 {
        margin-right: 100px!important
    }

    .mb-sm-8,.my-sm-8 {
        margin-bottom: 100px!important
    }

    .ml-sm-8,.mx-sm-8 {
        margin-left: 100px!important
    }

    .m-sm-9 {
        margin: 120px!important
    }

    .mt-sm-9,.my-sm-9 {
        margin-top: 120px!important
    }

    .mr-sm-9,.mx-sm-9 {
        margin-right: 120px!important
    }

    .mb-sm-9,.my-sm-9 {
        margin-bottom: 120px!important
    }

    .ml-sm-9,.mx-sm-9 {
        margin-left: 120px!important
    }

    .p-sm-0 {
        padding: 0!important
    }

    .pt-sm-0,.py-sm-0 {
        padding-top: 0!important
    }

    .pr-sm-0,.px-sm-0 {
        padding-right: 0!important
    }

    .pb-sm-0,.py-sm-0 {
        padding-bottom: 0!important
    }

    .pl-sm-0,.px-sm-0 {
        padding-left: 0!important
    }

    .p-sm-1 {
        padding: 5px!important
    }

    .pt-sm-1,.py-sm-1 {
        padding-top: 5px!important
    }

    .pr-sm-1,.px-sm-1 {
        padding-right: 5px!important
    }

    .pb-sm-1,.py-sm-1 {
        padding-bottom: 5px!important
    }

    .pl-sm-1,.px-sm-1 {
        padding-left: 5px!important
    }

    .p-sm-2 {
        padding: 10px!important
    }

    .pt-sm-2,.py-sm-2 {
        padding-top: 10px!important
    }

    .pr-sm-2,.px-sm-2 {
        padding-right: 10px!important
    }

    .pb-sm-2,.py-sm-2 {
        padding-bottom: 10px!important
    }

    .pl-sm-2,.px-sm-2 {
        padding-left: 10px!important
    }

    .p-sm-3 {
        padding: 20px!important
    }

    .pt-sm-3,.py-sm-3 {
        padding-top: 20px!important
    }

    .pr-sm-3,.px-sm-3 {
        padding-right: 20px!important
    }

    .pb-sm-3,.py-sm-3 {
        padding-bottom: 20px!important
    }

    .pl-sm-3,.px-sm-3 {
        padding-left: 20px!important
    }

    .p-sm-4 {
        padding: 30px!important
    }

    .pt-sm-4,.py-sm-4 {
        padding-top: 30px!important
    }

    .pr-sm-4,.px-sm-4 {
        padding-right: 30px!important
    }

    .pb-sm-4,.py-sm-4 {
        padding-bottom: 30px!important
    }

    .pl-sm-4,.px-sm-4 {
        padding-left: 30px!important
    }

    .p-sm-5 {
        padding: 40px!important
    }

    .pt-sm-5,.py-sm-5 {
        padding-top: 40px!important
    }

    .pr-sm-5,.px-sm-5 {
        padding-right: 40px!important
    }

    .pb-sm-5,.py-sm-5 {
        padding-bottom: 40px!important
    }

    .pl-sm-5,.px-sm-5 {
        padding-left: 40px!important
    }

    .p-sm-6 {
        padding: 60px!important
    }

    .pt-sm-6,.py-sm-6 {
        padding-top: 60px!important
    }

    .pr-sm-6,.px-sm-6 {
        padding-right: 60px!important
    }

    .pb-sm-6,.py-sm-6 {
        padding-bottom: 60px!important
    }

    .pl-sm-6,.px-sm-6 {
        padding-left: 60px!important
    }

    .p-sm-7 {
        padding: 80px!important
    }

    .pt-sm-7,.py-sm-7 {
        padding-top: 80px!important
    }

    .pr-sm-7,.px-sm-7 {
        padding-right: 80px!important
    }

    .pb-sm-7,.py-sm-7 {
        padding-bottom: 80px!important
    }

    .pl-sm-7,.px-sm-7 {
        padding-left: 80px!important
    }

    .p-sm-8 {
        padding: 100px!important
    }

    .pt-sm-8,.py-sm-8 {
        padding-top: 100px!important
    }

    .pr-sm-8,.px-sm-8 {
        padding-right: 100px!important
    }

    .pb-sm-8,.py-sm-8 {
        padding-bottom: 100px!important
    }

    .pl-sm-8,.px-sm-8 {
        padding-left: 100px!important
    }

    .p-sm-9 {
        padding: 120px!important
    }

    .pt-sm-9,.py-sm-9 {
        padding-top: 120px!important
    }

    .pr-sm-9,.px-sm-9 {
        padding-right: 120px!important
    }

    .pb-sm-9,.py-sm-9 {
        padding-bottom: 120px!important
    }

    .pl-sm-9,.px-sm-9 {
        padding-left: 120px!important
    }

    .m-sm-n1 {
        margin: -5px!important
    }

    .mt-sm-n1,.my-sm-n1 {
        margin-top: -5px!important
    }

    .mr-sm-n1,.mx-sm-n1 {
        margin-right: -5px!important
    }

    .mb-sm-n1,.my-sm-n1 {
        margin-bottom: -5px!important
    }

    .ml-sm-n1,.mx-sm-n1 {
        margin-left: -5px!important
    }

    .m-sm-n2 {
        margin: -10px!important
    }

    .mt-sm-n2,.my-sm-n2 {
        margin-top: -10px!important
    }

    .mr-sm-n2,.mx-sm-n2 {
        margin-right: -10px!important
    }

    .mb-sm-n2,.my-sm-n2 {
        margin-bottom: -10px!important
    }

    .ml-sm-n2,.mx-sm-n2 {
        margin-left: -10px!important
    }

    .m-sm-n3 {
        margin: -20px!important
    }

    .mt-sm-n3,.my-sm-n3 {
        margin-top: -20px!important
    }

    .mr-sm-n3,.mx-sm-n3 {
        margin-right: -20px!important
    }

    .mb-sm-n3,.my-sm-n3 {
        margin-bottom: -20px!important
    }

    .ml-sm-n3,.mx-sm-n3 {
        margin-left: -20px!important
    }

    .m-sm-n4 {
        margin: -30px!important
    }

    .mt-sm-n4,.my-sm-n4 {
        margin-top: -30px!important
    }

    .mr-sm-n4,.mx-sm-n4 {
        margin-right: -30px!important
    }

    .mb-sm-n4,.my-sm-n4 {
        margin-bottom: -30px!important
    }

    .ml-sm-n4,.mx-sm-n4 {
        margin-left: -30px!important
    }

    .m-sm-n5 {
        margin: -40px!important
    }

    .mt-sm-n5,.my-sm-n5 {
        margin-top: -40px!important
    }

    .mr-sm-n5,.mx-sm-n5 {
        margin-right: -40px!important
    }

    .mb-sm-n5,.my-sm-n5 {
        margin-bottom: -40px!important
    }

    .ml-sm-n5,.mx-sm-n5 {
        margin-left: -40px!important
    }

    .m-sm-n6 {
        margin: -60px!important
    }

    .mt-sm-n6,.my-sm-n6 {
        margin-top: -60px!important
    }

    .mr-sm-n6,.mx-sm-n6 {
        margin-right: -60px!important
    }

    .mb-sm-n6,.my-sm-n6 {
        margin-bottom: -60px!important
    }

    .ml-sm-n6,.mx-sm-n6 {
        margin-left: -60px!important
    }

    .m-sm-n7 {
        margin: -80px!important
    }

    .mt-sm-n7,.my-sm-n7 {
        margin-top: -80px!important
    }

    .mr-sm-n7,.mx-sm-n7 {
        margin-right: -80px!important
    }

    .mb-sm-n7,.my-sm-n7 {
        margin-bottom: -80px!important
    }

    .ml-sm-n7,.mx-sm-n7 {
        margin-left: -80px!important
    }

    .m-sm-n8 {
        margin: -100px!important
    }

    .mt-sm-n8,.my-sm-n8 {
        margin-top: -100px!important
    }

    .mr-sm-n8,.mx-sm-n8 {
        margin-right: -100px!important
    }

    .mb-sm-n8,.my-sm-n8 {
        margin-bottom: -100px!important
    }

    .ml-sm-n8,.mx-sm-n8 {
        margin-left: -100px!important
    }

    .m-sm-n9 {
        margin: -120px!important
    }

    .mt-sm-n9,.my-sm-n9 {
        margin-top: -120px!important
    }

    .mr-sm-n9,.mx-sm-n9 {
        margin-right: -120px!important
    }

    .mb-sm-n9,.my-sm-n9 {
        margin-bottom: -120px!important
    }

    .ml-sm-n9,.mx-sm-n9 {
        margin-left: -120px!important
    }

    .m-sm-auto {
        margin: auto!important
    }

    .mt-sm-auto,.my-sm-auto {
        margin-top: auto!important
    }

    .mr-sm-auto,.mx-sm-auto {
        margin-right: auto!important
    }

    .mb-sm-auto,.my-sm-auto {
        margin-bottom: auto!important
    }

    .ml-sm-auto,.mx-sm-auto {
        margin-left: auto!important
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin:0!important
    }

    .mt-md-0,.my-md-0 {
        margin-top: 0!important
    }

    .mr-md-0,.mx-md-0 {
        margin-right: 0!important
    }

    .mb-md-0,.my-md-0 {
        margin-bottom: 0!important
    }

    .ml-md-0,.mx-md-0 {
        margin-left: 0!important
    }

    .m-md-1 {
        margin: 5px!important
    }

    .mt-md-1,.my-md-1 {
        margin-top: 5px!important
    }

    .mr-md-1,.mx-md-1 {
        margin-right: 5px!important
    }

    .mb-md-1,.my-md-1 {
        margin-bottom: 5px!important
    }

    .ml-md-1,.mx-md-1 {
        margin-left: 5px!important
    }

    .m-md-2 {
        margin: 10px!important
    }

    .mt-md-2,.my-md-2 {
        margin-top: 10px!important
    }

    .mr-md-2,.mx-md-2 {
        margin-right: 10px!important
    }

    .mb-md-2,.my-md-2 {
        margin-bottom: 10px!important
    }

    .ml-md-2,.mx-md-2 {
        margin-left: 10px!important
    }

    .m-md-3 {
        margin: 20px!important
    }

    .mt-md-3,.my-md-3 {
        margin-top: 20px!important
    }

    .mr-md-3,.mx-md-3 {
        margin-right: 20px!important
    }

    .mb-md-3,.my-md-3 {
        margin-bottom: 20px!important
    }

    .ml-md-3,.mx-md-3 {
        margin-left: 20px!important
    }

    .m-md-4 {
        margin: 30px!important
    }

    .mt-md-4,.my-md-4 {
        margin-top: 30px!important
    }

    .mr-md-4,.mx-md-4 {
        margin-right: 30px!important
    }

    .mb-md-4,.my-md-4 {
        margin-bottom: 30px!important
    }

    .ml-md-4,.mx-md-4 {
        margin-left: 30px!important
    }

    .m-md-5 {
        margin: 40px!important
    }

    .mt-md-5,.my-md-5 {
        margin-top: 40px!important
    }

    .mr-md-5,.mx-md-5 {
        margin-right: 40px!important
    }

    .mb-md-5,.my-md-5 {
        margin-bottom: 40px!important
    }

    .ml-md-5,.mx-md-5 {
        margin-left: 40px!important
    }

    .m-md-6 {
        margin: 60px!important
    }

    .mt-md-6,.my-md-6 {
        margin-top: 60px!important
    }

    .mr-md-6,.mx-md-6 {
        margin-right: 60px!important
    }

    .mb-md-6,.my-md-6 {
        margin-bottom: 60px!important
    }

    .ml-md-6,.mx-md-6 {
        margin-left: 60px!important
    }

    .m-md-7 {
        margin: 80px!important
    }

    .mt-md-7,.my-md-7 {
        margin-top: 80px!important
    }

    .mr-md-7,.mx-md-7 {
        margin-right: 80px!important
    }

    .mb-md-7,.my-md-7 {
        margin-bottom: 80px!important
    }

    .ml-md-7,.mx-md-7 {
        margin-left: 80px!important
    }

    .m-md-8 {
        margin: 100px!important
    }

    .mt-md-8,.my-md-8 {
        margin-top: 100px!important
    }

    .mr-md-8,.mx-md-8 {
        margin-right: 100px!important
    }

    .mb-md-8,.my-md-8 {
        margin-bottom: 100px!important
    }

    .ml-md-8,.mx-md-8 {
        margin-left: 100px!important
    }

    .m-md-9 {
        margin: 120px!important
    }

    .mt-md-9,.my-md-9 {
        margin-top: 120px!important
    }

    .mr-md-9,.mx-md-9 {
        margin-right: 120px!important
    }

    .mb-md-9,.my-md-9 {
        margin-bottom: 120px!important
    }

    .ml-md-9,.mx-md-9 {
        margin-left: 120px!important
    }

    .p-md-0 {
        padding: 0!important
    }

    .pt-md-0,.py-md-0 {
        padding-top: 0!important
    }

    .pr-md-0,.px-md-0 {
        padding-right: 0!important
    }

    .pb-md-0,.py-md-0 {
        padding-bottom: 0!important
    }

    .pl-md-0,.px-md-0 {
        padding-left: 0!important
    }

    .p-md-1 {
        padding: 5px!important
    }

    .pt-md-1,.py-md-1 {
        padding-top: 5px!important
    }

    .pr-md-1,.px-md-1 {
        padding-right: 5px!important
    }

    .pb-md-1,.py-md-1 {
        padding-bottom: 5px!important
    }

    .pl-md-1,.px-md-1 {
        padding-left: 5px!important
    }

    .p-md-2 {
        padding: 10px!important
    }

    .pt-md-2,.py-md-2 {
        padding-top: 10px!important
    }

    .pr-md-2,.px-md-2 {
        padding-right: 10px!important
    }

    .pb-md-2,.py-md-2 {
        padding-bottom: 10px!important
    }

    .pl-md-2,.px-md-2 {
        padding-left: 10px!important
    }

    .p-md-3 {
        padding: 20px!important
    }

    .pt-md-3,.py-md-3 {
        padding-top: 20px!important
    }

    .pr-md-3,.px-md-3 {
        padding-right: 20px!important
    }

    .pb-md-3,.py-md-3 {
        padding-bottom: 20px!important
    }

    .pl-md-3,.px-md-3 {
        padding-left: 20px!important
    }

    .p-md-4 {
        padding: 30px!important
    }

    .pt-md-4,.py-md-4 {
        padding-top: 30px!important
    }

    .pr-md-4,.px-md-4 {
        padding-right: 30px!important
    }

    .pb-md-4,.py-md-4 {
        padding-bottom: 30px!important
    }

    .pl-md-4,.px-md-4 {
        padding-left: 30px!important
    }

    .p-md-5 {
        padding: 40px!important
    }

    .pt-md-5,.py-md-5 {
        padding-top: 40px!important
    }

    .pr-md-5,.px-md-5 {
        padding-right: 40px!important
    }

    .pb-md-5,.py-md-5 {
        padding-bottom: 40px!important
    }

    .pl-md-5,.px-md-5 {
        padding-left: 40px!important
    }

    .p-md-6 {
        padding: 60px!important
    }

    .pt-md-6,.py-md-6 {
        padding-top: 60px!important
    }

    .pr-md-6,.px-md-6 {
        padding-right: 60px!important
    }

    .pb-md-6,.py-md-6 {
        padding-bottom: 60px!important
    }

    .pl-md-6,.px-md-6 {
        padding-left: 60px!important
    }

    .p-md-7 {
        padding: 80px!important
    }

    .pt-md-7,.py-md-7 {
        padding-top: 80px!important
    }

    .pr-md-7,.px-md-7 {
        padding-right: 80px!important
    }

    .pb-md-7,.py-md-7 {
        padding-bottom: 80px!important
    }

    .pl-md-7,.px-md-7 {
        padding-left: 80px!important
    }

    .p-md-8 {
        padding: 100px!important
    }

    .pt-md-8,.py-md-8 {
        padding-top: 100px!important
    }

    .pr-md-8,.px-md-8 {
        padding-right: 100px!important
    }

    .pb-md-8,.py-md-8 {
        padding-bottom: 100px!important
    }

    .pl-md-8,.px-md-8 {
        padding-left: 100px!important
    }

    .p-md-9 {
        padding: 120px!important
    }

    .pt-md-9,.py-md-9 {
        padding-top: 120px!important
    }

    .pr-md-9,.px-md-9 {
        padding-right: 120px!important
    }

    .pb-md-9,.py-md-9 {
        padding-bottom: 120px!important
    }

    .pl-md-9,.px-md-9 {
        padding-left: 120px!important
    }

    .m-md-n1 {
        margin: -5px!important
    }

    .mt-md-n1,.my-md-n1 {
        margin-top: -5px!important
    }

    .mr-md-n1,.mx-md-n1 {
        margin-right: -5px!important
    }

    .mb-md-n1,.my-md-n1 {
        margin-bottom: -5px!important
    }

    .ml-md-n1,.mx-md-n1 {
        margin-left: -5px!important
    }

    .m-md-n2 {
        margin: -10px!important
    }

    .mt-md-n2,.my-md-n2 {
        margin-top: -10px!important
    }

    .mr-md-n2,.mx-md-n2 {
        margin-right: -10px!important
    }

    .mb-md-n2,.my-md-n2 {
        margin-bottom: -10px!important
    }

    .ml-md-n2,.mx-md-n2 {
        margin-left: -10px!important
    }

    .m-md-n3 {
        margin: -20px!important
    }

    .mt-md-n3,.my-md-n3 {
        margin-top: -20px!important
    }

    .mr-md-n3,.mx-md-n3 {
        margin-right: -20px!important
    }

    .mb-md-n3,.my-md-n3 {
        margin-bottom: -20px!important
    }

    .ml-md-n3,.mx-md-n3 {
        margin-left: -20px!important
    }

    .m-md-n4 {
        margin: -30px!important
    }

    .mt-md-n4,.my-md-n4 {
        margin-top: -30px!important
    }

    .mr-md-n4,.mx-md-n4 {
        margin-right: -30px!important
    }

    .mb-md-n4,.my-md-n4 {
        margin-bottom: -30px!important
    }

    .ml-md-n4,.mx-md-n4 {
        margin-left: -30px!important
    }

    .m-md-n5 {
        margin: -40px!important
    }

    .mt-md-n5,.my-md-n5 {
        margin-top: -40px!important
    }

    .mr-md-n5,.mx-md-n5 {
        margin-right: -40px!important
    }

    .mb-md-n5,.my-md-n5 {
        margin-bottom: -40px!important
    }

    .ml-md-n5,.mx-md-n5 {
        margin-left: -40px!important
    }

    .m-md-n6 {
        margin: -60px!important
    }

    .mt-md-n6,.my-md-n6 {
        margin-top: -60px!important
    }

    .mr-md-n6,.mx-md-n6 {
        margin-right: -60px!important
    }

    .mb-md-n6,.my-md-n6 {
        margin-bottom: -60px!important
    }

    .ml-md-n6,.mx-md-n6 {
        margin-left: -60px!important
    }

    .m-md-n7 {
        margin: -80px!important
    }

    .mt-md-n7,.my-md-n7 {
        margin-top: -80px!important
    }

    .mr-md-n7,.mx-md-n7 {
        margin-right: -80px!important
    }

    .mb-md-n7,.my-md-n7 {
        margin-bottom: -80px!important
    }

    .ml-md-n7,.mx-md-n7 {
        margin-left: -80px!important
    }

    .m-md-n8 {
        margin: -100px!important
    }

    .mt-md-n8,.my-md-n8 {
        margin-top: -100px!important
    }

    .mr-md-n8,.mx-md-n8 {
        margin-right: -100px!important
    }

    .mb-md-n8,.my-md-n8 {
        margin-bottom: -100px!important
    }

    .ml-md-n8,.mx-md-n8 {
        margin-left: -100px!important
    }

    .m-md-n9 {
        margin: -120px!important
    }

    .mt-md-n9,.my-md-n9 {
        margin-top: -120px!important
    }

    .mr-md-n9,.mx-md-n9 {
        margin-right: -120px!important
    }

    .mb-md-n9,.my-md-n9 {
        margin-bottom: -120px!important
    }

    .ml-md-n9,.mx-md-n9 {
        margin-left: -120px!important
    }

    .m-md-auto {
        margin: auto!important
    }

    .mt-md-auto,.my-md-auto {
        margin-top: auto!important
    }

    .mr-md-auto,.mx-md-auto {
        margin-right: auto!important
    }

    .mb-md-auto,.my-md-auto {
        margin-bottom: auto!important
    }

    .ml-md-auto,.mx-md-auto {
        margin-left: auto!important
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin:0!important
    }

    .mt-lg-0,.my-lg-0 {
        margin-top: 0!important
    }

    .mr-lg-0,.mx-lg-0 {
        margin-right: 0!important
    }

    .mb-lg-0,.my-lg-0 {
        margin-bottom: 0!important
    }

    .ml-lg-0,.mx-lg-0 {
        margin-left: 0!important
    }

    .m-lg-1 {
        margin: 5px!important
    }

    .mt-lg-1,.my-lg-1 {
        margin-top: 5px!important
    }

    .mr-lg-1,.mx-lg-1 {
        margin-right: 5px!important
    }

    .mb-lg-1,.my-lg-1 {
        margin-bottom: 5px!important
    }

    .ml-lg-1,.mx-lg-1 {
        margin-left: 5px!important
    }

    .m-lg-2 {
        margin: 10px!important
    }

    .mt-lg-2,.my-lg-2 {
        margin-top: 10px!important
    }

    .mr-lg-2,.mx-lg-2 {
        margin-right: 10px!important
    }

    .mb-lg-2,.my-lg-2 {
        margin-bottom: 10px!important
    }

    .ml-lg-2,.mx-lg-2 {
        margin-left: 10px!important
    }

    .m-lg-3 {
        margin: 20px!important
    }

    .mt-lg-3,.my-lg-3 {
        margin-top: 20px!important
    }

    .mr-lg-3,.mx-lg-3 {
        margin-right: 20px!important
    }

    .mb-lg-3,.my-lg-3 {
        margin-bottom: 20px!important
    }

    .ml-lg-3,.mx-lg-3 {
        margin-left: 20px!important
    }

    .m-lg-4 {
        margin: 30px!important
    }

    .mt-lg-4,.my-lg-4 {
        margin-top: 30px!important
    }

    .mr-lg-4,.mx-lg-4 {
        margin-right: 30px!important
    }

    .mb-lg-4,.my-lg-4 {
        margin-bottom: 30px!important
    }

    .ml-lg-4,.mx-lg-4 {
        margin-left: 30px!important
    }

    .m-lg-5 {
        margin: 40px!important
    }

    .mt-lg-5,.my-lg-5 {
        margin-top: 40px!important
    }

    .mr-lg-5,.mx-lg-5 {
        margin-right: 40px!important
    }

    .mb-lg-5,.my-lg-5 {
        margin-bottom: 40px!important
    }

    .ml-lg-5,.mx-lg-5 {
        margin-left: 40px!important
    }

    .m-lg-6 {
        margin: 60px!important
    }

    .mt-lg-6,.my-lg-6 {
        margin-top: 60px!important
    }

    .mr-lg-6,.mx-lg-6 {
        margin-right: 60px!important
    }

    .mb-lg-6,.my-lg-6 {
        margin-bottom: 60px!important
    }

    .ml-lg-6,.mx-lg-6 {
        margin-left: 60px!important
    }

    .m-lg-7 {
        margin: 80px!important
    }

    .mt-lg-7,.my-lg-7 {
        margin-top: 80px!important
    }

    .mr-lg-7,.mx-lg-7 {
        margin-right: 80px!important
    }

    .mb-lg-7,.my-lg-7 {
        margin-bottom: 80px!important
    }

    .ml-lg-7,.mx-lg-7 {
        margin-left: 80px!important
    }

    .m-lg-8 {
        margin: 100px!important
    }

    .mt-lg-8,.my-lg-8 {
        margin-top: 100px!important
    }

    .mr-lg-8,.mx-lg-8 {
        margin-right: 100px!important
    }

    .mb-lg-8,.my-lg-8 {
        margin-bottom: 100px!important
    }

    .ml-lg-8,.mx-lg-8 {
        margin-left: 100px!important
    }

    .m-lg-9 {
        margin: 120px!important
    }

    .mt-lg-9,.my-lg-9 {
        margin-top: 120px!important
    }

    .mr-lg-9,.mx-lg-9 {
        margin-right: 120px!important
    }

    .mb-lg-9,.my-lg-9 {
        margin-bottom: 120px!important
    }

    .ml-lg-9,.mx-lg-9 {
        margin-left: 120px!important
    }

    .p-lg-0 {
        padding: 0!important
    }

    .pt-lg-0,.py-lg-0 {
        padding-top: 0!important
    }

    .pr-lg-0,.px-lg-0 {
        padding-right: 0!important
    }

    .pb-lg-0,.py-lg-0 {
        padding-bottom: 0!important
    }

    .pl-lg-0,.px-lg-0 {
        padding-left: 0!important
    }

    .p-lg-1 {
        padding: 5px!important
    }

    .pt-lg-1,.py-lg-1 {
        padding-top: 5px!important
    }

    .pr-lg-1,.px-lg-1 {
        padding-right: 5px!important
    }

    .pb-lg-1,.py-lg-1 {
        padding-bottom: 5px!important
    }

    .pl-lg-1,.px-lg-1 {
        padding-left: 5px!important
    }

    .p-lg-2 {
        padding: 10px!important
    }

    .pt-lg-2,.py-lg-2 {
        padding-top: 10px!important
    }

    .pr-lg-2,.px-lg-2 {
        padding-right: 10px!important
    }

    .pb-lg-2,.py-lg-2 {
        padding-bottom: 10px!important
    }

    .pl-lg-2,.px-lg-2 {
        padding-left: 10px!important
    }

    .p-lg-3 {
        padding: 20px!important
    }

    .pt-lg-3,.py-lg-3 {
        padding-top: 20px!important
    }

    .pr-lg-3,.px-lg-3 {
        padding-right: 20px!important
    }

    .pb-lg-3,.py-lg-3 {
        padding-bottom: 20px!important
    }

    .pl-lg-3,.px-lg-3 {
        padding-left: 20px!important
    }

    .p-lg-4 {
        padding: 30px!important
    }

    .pt-lg-4,.py-lg-4 {
        padding-top: 30px!important
    }

    .pr-lg-4,.px-lg-4 {
        padding-right: 30px!important
    }

    .pb-lg-4,.py-lg-4 {
        padding-bottom: 30px!important
    }

    .pl-lg-4,.px-lg-4 {
        padding-left: 30px!important
    }

    .p-lg-5 {
        padding: 40px!important
    }

    .pt-lg-5,.py-lg-5 {
        padding-top: 40px!important
    }

    .pr-lg-5,.px-lg-5 {
        padding-right: 40px!important
    }

    .pb-lg-5,.py-lg-5 {
        padding-bottom: 40px!important
    }

    .pl-lg-5,.px-lg-5 {
        padding-left: 40px!important
    }

    .p-lg-6 {
        padding: 60px!important
    }

    .pt-lg-6,.py-lg-6 {
        padding-top: 60px!important
    }

    .pr-lg-6,.px-lg-6 {
        padding-right: 60px!important
    }

    .pb-lg-6,.py-lg-6 {
        padding-bottom: 60px!important
    }

    .pl-lg-6,.px-lg-6 {
        padding-left: 60px!important
    }

    .p-lg-7 {
        padding: 80px!important
    }

    .pt-lg-7,.py-lg-7 {
        padding-top: 80px!important
    }

    .pr-lg-7,.px-lg-7 {
        padding-right: 80px!important
    }

    .pb-lg-7,.py-lg-7 {
        padding-bottom: 80px!important
    }

    .pl-lg-7,.px-lg-7 {
        padding-left: 80px!important
    }

    .p-lg-8 {
        padding: 100px!important
    }

    .pt-lg-8,.py-lg-8 {
        padding-top: 100px!important
    }

    .pr-lg-8,.px-lg-8 {
        padding-right: 100px!important
    }

    .pb-lg-8,.py-lg-8 {
        padding-bottom: 100px!important
    }

    .pl-lg-8,.px-lg-8 {
        padding-left: 100px!important
    }

    .p-lg-9 {
        padding: 120px!important
    }

    .pt-lg-9,.py-lg-9 {
        padding-top: 120px!important
    }

    .pr-lg-9,.px-lg-9 {
        padding-right: 120px!important
    }

    .pb-lg-9,.py-lg-9 {
        padding-bottom: 120px!important
    }

    .pl-lg-9,.px-lg-9 {
        padding-left: 120px!important
    }

    .m-lg-n1 {
        margin: -5px!important
    }

    .mt-lg-n1,.my-lg-n1 {
        margin-top: -5px!important
    }

    .mr-lg-n1,.mx-lg-n1 {
        margin-right: -5px!important
    }

    .mb-lg-n1,.my-lg-n1 {
        margin-bottom: -5px!important
    }

    .ml-lg-n1,.mx-lg-n1 {
        margin-left: -5px!important
    }

    .m-lg-n2 {
        margin: -10px!important
    }

    .mt-lg-n2,.my-lg-n2 {
        margin-top: -10px!important
    }

    .mr-lg-n2,.mx-lg-n2 {
        margin-right: -10px!important
    }

    .mb-lg-n2,.my-lg-n2 {
        margin-bottom: -10px!important
    }

    .ml-lg-n2,.mx-lg-n2 {
        margin-left: -10px!important
    }

    .m-lg-n3 {
        margin: -20px!important
    }

    .mt-lg-n3,.my-lg-n3 {
        margin-top: -20px!important
    }

    .mr-lg-n3,.mx-lg-n3 {
        margin-right: -20px!important
    }

    .mb-lg-n3,.my-lg-n3 {
        margin-bottom: -20px!important
    }

    .ml-lg-n3,.mx-lg-n3 {
        margin-left: -20px!important
    }

    .m-lg-n4 {
        margin: -30px!important
    }

    .mt-lg-n4,.my-lg-n4 {
        margin-top: -30px!important
    }

    .mr-lg-n4,.mx-lg-n4 {
        margin-right: -30px!important
    }

    .mb-lg-n4,.my-lg-n4 {
        margin-bottom: -30px!important
    }

    .ml-lg-n4,.mx-lg-n4 {
        margin-left: -30px!important
    }

    .m-lg-n5 {
        margin: -40px!important
    }

    .mt-lg-n5,.my-lg-n5 {
        margin-top: -40px!important
    }

    .mr-lg-n5,.mx-lg-n5 {
        margin-right: -40px!important
    }

    .mb-lg-n5,.my-lg-n5 {
        margin-bottom: -40px!important
    }

    .ml-lg-n5,.mx-lg-n5 {
        margin-left: -40px!important
    }

    .m-lg-n6 {
        margin: -60px!important
    }

    .mt-lg-n6,.my-lg-n6 {
        margin-top: -60px!important
    }

    .mr-lg-n6,.mx-lg-n6 {
        margin-right: -60px!important
    }

    .mb-lg-n6,.my-lg-n6 {
        margin-bottom: -60px!important
    }

    .ml-lg-n6,.mx-lg-n6 {
        margin-left: -60px!important
    }

    .m-lg-n7 {
        margin: -80px!important
    }

    .mt-lg-n7,.my-lg-n7 {
        margin-top: -80px!important
    }

    .mr-lg-n7,.mx-lg-n7 {
        margin-right: -80px!important
    }

    .mb-lg-n7,.my-lg-n7 {
        margin-bottom: -80px!important
    }

    .ml-lg-n7,.mx-lg-n7 {
        margin-left: -80px!important
    }

    .m-lg-n8 {
        margin: -100px!important
    }

    .mt-lg-n8,.my-lg-n8 {
        margin-top: -100px!important
    }

    .mr-lg-n8,.mx-lg-n8 {
        margin-right: -100px!important
    }

    .mb-lg-n8,.my-lg-n8 {
        margin-bottom: -100px!important
    }

    .ml-lg-n8,.mx-lg-n8 {
        margin-left: -100px!important
    }

    .m-lg-n9 {
        margin: -120px!important
    }

    .mt-lg-n9,.my-lg-n9 {
        margin-top: -120px!important
    }

    .mr-lg-n9,.mx-lg-n9 {
        margin-right: -120px!important
    }

    .mb-lg-n9,.my-lg-n9 {
        margin-bottom: -120px!important
    }

    .ml-lg-n9,.mx-lg-n9 {
        margin-left: -120px!important
    }

    .m-lg-auto {
        margin: auto!important
    }

    .mt-lg-auto,.my-lg-auto {
        margin-top: auto!important
    }

    .mr-lg-auto,.mx-lg-auto {
        margin-right: auto!important
    }

    .mb-lg-auto,.my-lg-auto {
        margin-bottom: auto!important
    }

    .ml-lg-auto,.mx-lg-auto {
        margin-left: auto!important
    }
}

@media (min-width: 1280px) {
    .m-xl-0 {
        margin:0!important
    }

    .mt-xl-0,.my-xl-0 {
        margin-top: 0!important
    }

    .mr-xl-0,.mx-xl-0 {
        margin-right: 0!important
    }

    .mb-xl-0,.my-xl-0 {
        margin-bottom: 0!important
    }

    .ml-xl-0,.mx-xl-0 {
        margin-left: 0!important
    }

    .m-xl-1 {
        margin: 5px!important
    }

    .mt-xl-1,.my-xl-1 {
        margin-top: 5px!important
    }

    .mr-xl-1,.mx-xl-1 {
        margin-right: 5px!important
    }

    .mb-xl-1,.my-xl-1 {
        margin-bottom: 5px!important
    }

    .ml-xl-1,.mx-xl-1 {
        margin-left: 5px!important
    }

    .m-xl-2 {
        margin: 10px!important
    }

    .mt-xl-2,.my-xl-2 {
        margin-top: 10px!important
    }

    .mr-xl-2,.mx-xl-2 {
        margin-right: 10px!important
    }

    .mb-xl-2,.my-xl-2 {
        margin-bottom: 10px!important
    }

    .ml-xl-2,.mx-xl-2 {
        margin-left: 10px!important
    }

    .m-xl-3 {
        margin: 20px!important
    }

    .mt-xl-3,.my-xl-3 {
        margin-top: 20px!important
    }

    .mr-xl-3,.mx-xl-3 {
        margin-right: 20px!important
    }

    .mb-xl-3,.my-xl-3 {
        margin-bottom: 20px!important
    }

    .ml-xl-3,.mx-xl-3 {
        margin-left: 20px!important
    }

    .m-xl-4 {
        margin: 30px!important
    }

    .mt-xl-4,.my-xl-4 {
        margin-top: 30px!important
    }

    .mr-xl-4,.mx-xl-4 {
        margin-right: 30px!important
    }

    .mb-xl-4,.my-xl-4 {
        margin-bottom: 30px!important
    }

    .ml-xl-4,.mx-xl-4 {
        margin-left: 30px!important
    }

    .m-xl-5 {
        margin: 40px!important
    }

    .mt-xl-5,.my-xl-5 {
        margin-top: 40px!important
    }

    .mr-xl-5,.mx-xl-5 {
        margin-right: 40px!important
    }

    .mb-xl-5,.my-xl-5 {
        margin-bottom: 40px!important
    }

    .ml-xl-5,.mx-xl-5 {
        margin-left: 40px!important
    }

    .m-xl-6 {
        margin: 60px!important
    }

    .mt-xl-6,.my-xl-6 {
        margin-top: 60px!important
    }

    .mr-xl-6,.mx-xl-6 {
        margin-right: 60px!important
    }

    .mb-xl-6,.my-xl-6 {
        margin-bottom: 60px!important
    }

    .ml-xl-6,.mx-xl-6 {
        margin-left: 60px!important
    }

    .m-xl-7 {
        margin: 80px!important
    }

    .mt-xl-7,.my-xl-7 {
        margin-top: 80px!important
    }

    .mr-xl-7,.mx-xl-7 {
        margin-right: 80px!important
    }

    .mb-xl-7,.my-xl-7 {
        margin-bottom: 80px!important
    }

    .ml-xl-7,.mx-xl-7 {
        margin-left: 80px!important
    }

    .m-xl-8 {
        margin: 100px!important
    }

    .mt-xl-8,.my-xl-8 {
        margin-top: 100px!important
    }

    .mr-xl-8,.mx-xl-8 {
        margin-right: 100px!important
    }

    .mb-xl-8,.my-xl-8 {
        margin-bottom: 100px!important
    }

    .ml-xl-8,.mx-xl-8 {
        margin-left: 100px!important
    }

    .m-xl-9 {
        margin: 120px!important
    }

    .mt-xl-9,.my-xl-9 {
        margin-top: 120px!important
    }

    .mr-xl-9,.mx-xl-9 {
        margin-right: 120px!important
    }

    .mb-xl-9,.my-xl-9 {
        margin-bottom: 120px!important
    }

    .ml-xl-9,.mx-xl-9 {
        margin-left: 120px!important
    }

    .p-xl-0 {
        padding: 0!important
    }

    .pt-xl-0,.py-xl-0 {
        padding-top: 0!important
    }

    .pr-xl-0,.px-xl-0 {
        padding-right: 0!important
    }

    .pb-xl-0,.py-xl-0 {
        padding-bottom: 0!important
    }

    .pl-xl-0,.px-xl-0 {
        padding-left: 0!important
    }

    .p-xl-1 {
        padding: 5px!important
    }

    .pt-xl-1,.py-xl-1 {
        padding-top: 5px!important
    }

    .pr-xl-1,.px-xl-1 {
        padding-right: 5px!important
    }

    .pb-xl-1,.py-xl-1 {
        padding-bottom: 5px!important
    }

    .pl-xl-1,.px-xl-1 {
        padding-left: 5px!important
    }

    .p-xl-2 {
        padding: 10px!important
    }

    .pt-xl-2,.py-xl-2 {
        padding-top: 10px!important
    }

    .pr-xl-2,.px-xl-2 {
        padding-right: 10px!important
    }

    .pb-xl-2,.py-xl-2 {
        padding-bottom: 10px!important
    }

    .pl-xl-2,.px-xl-2 {
        padding-left: 10px!important
    }

    .p-xl-3 {
        padding: 20px!important
    }

    .pt-xl-3,.py-xl-3 {
        padding-top: 20px!important
    }

    .pr-xl-3,.px-xl-3 {
        padding-right: 20px!important
    }

    .pb-xl-3,.py-xl-3 {
        padding-bottom: 20px!important
    }

    .pl-xl-3,.px-xl-3 {
        padding-left: 20px!important
    }

    .p-xl-4 {
        padding: 30px!important
    }

    .pt-xl-4,.py-xl-4 {
        padding-top: 30px!important
    }

    .pr-xl-4,.px-xl-4 {
        padding-right: 30px!important
    }

    .pb-xl-4,.py-xl-4 {
        padding-bottom: 30px!important
    }

    .pl-xl-4,.px-xl-4 {
        padding-left: 30px!important
    }

    .p-xl-5 {
        padding: 40px!important
    }

    .pt-xl-5,.py-xl-5 {
        padding-top: 40px!important
    }

    .pr-xl-5,.px-xl-5 {
        padding-right: 40px!important
    }

    .pb-xl-5,.py-xl-5 {
        padding-bottom: 40px!important
    }

    .pl-xl-5,.px-xl-5 {
        padding-left: 40px!important
    }

    .p-xl-6 {
        padding: 60px!important
    }

    .pt-xl-6,.py-xl-6 {
        padding-top: 60px!important
    }

    .pr-xl-6,.px-xl-6 {
        padding-right: 60px!important
    }

    .pb-xl-6,.py-xl-6 {
        padding-bottom: 60px!important
    }

    .pl-xl-6,.px-xl-6 {
        padding-left: 60px!important
    }

    .p-xl-7 {
        padding: 80px!important
    }

    .pt-xl-7,.py-xl-7 {
        padding-top: 80px!important
    }

    .pr-xl-7,.px-xl-7 {
        padding-right: 80px!important
    }

    .pb-xl-7,.py-xl-7 {
        padding-bottom: 80px!important
    }

    .pl-xl-7,.px-xl-7 {
        padding-left: 80px!important
    }

    .p-xl-8 {
        padding: 100px!important
    }

    .pt-xl-8,.py-xl-8 {
        padding-top: 100px!important
    }

    .pr-xl-8,.px-xl-8 {
        padding-right: 100px!important
    }

    .pb-xl-8,.py-xl-8 {
        padding-bottom: 100px!important
    }

    .pl-xl-8,.px-xl-8 {
        padding-left: 100px!important
    }

    .p-xl-9 {
        padding: 120px!important
    }

    .pt-xl-9,.py-xl-9 {
        padding-top: 120px!important
    }

    .pr-xl-9,.px-xl-9 {
        padding-right: 120px!important
    }

    .pb-xl-9,.py-xl-9 {
        padding-bottom: 120px!important
    }

    .pl-xl-9,.px-xl-9 {
        padding-left: 120px!important
    }

    .m-xl-n1 {
        margin: -5px!important
    }

    .mt-xl-n1,.my-xl-n1 {
        margin-top: -5px!important
    }

    .mr-xl-n1,.mx-xl-n1 {
        margin-right: -5px!important
    }

    .mb-xl-n1,.my-xl-n1 {
        margin-bottom: -5px!important
    }

    .ml-xl-n1,.mx-xl-n1 {
        margin-left: -5px!important
    }

    .m-xl-n2 {
        margin: -10px!important
    }

    .mt-xl-n2,.my-xl-n2 {
        margin-top: -10px!important
    }

    .mr-xl-n2,.mx-xl-n2 {
        margin-right: -10px!important
    }

    .mb-xl-n2,.my-xl-n2 {
        margin-bottom: -10px!important
    }

    .ml-xl-n2,.mx-xl-n2 {
        margin-left: -10px!important
    }

    .m-xl-n3 {
        margin: -20px!important
    }

    .mt-xl-n3,.my-xl-n3 {
        margin-top: -20px!important
    }

    .mr-xl-n3,.mx-xl-n3 {
        margin-right: -20px!important
    }

    .mb-xl-n3,.my-xl-n3 {
        margin-bottom: -20px!important
    }

    .ml-xl-n3,.mx-xl-n3 {
        margin-left: -20px!important
    }

    .m-xl-n4 {
        margin: -30px!important
    }

    .mt-xl-n4,.my-xl-n4 {
        margin-top: -30px!important
    }

    .mr-xl-n4,.mx-xl-n4 {
        margin-right: -30px!important
    }

    .mb-xl-n4,.my-xl-n4 {
        margin-bottom: -30px!important
    }

    .ml-xl-n4,.mx-xl-n4 {
        margin-left: -30px!important
    }

    .m-xl-n5 {
        margin: -40px!important
    }

    .mt-xl-n5,.my-xl-n5 {
        margin-top: -40px!important
    }

    .mr-xl-n5,.mx-xl-n5 {
        margin-right: -40px!important
    }

    .mb-xl-n5,.my-xl-n5 {
        margin-bottom: -40px!important
    }

    .ml-xl-n5,.mx-xl-n5 {
        margin-left: -40px!important
    }

    .m-xl-n6 {
        margin: -60px!important
    }

    .mt-xl-n6,.my-xl-n6 {
        margin-top: -60px!important
    }

    .mr-xl-n6,.mx-xl-n6 {
        margin-right: -60px!important
    }

    .mb-xl-n6,.my-xl-n6 {
        margin-bottom: -60px!important
    }

    .ml-xl-n6,.mx-xl-n6 {
        margin-left: -60px!important
    }

    .m-xl-n7 {
        margin: -80px!important
    }

    .mt-xl-n7,.my-xl-n7 {
        margin-top: -80px!important
    }

    .mr-xl-n7,.mx-xl-n7 {
        margin-right: -80px!important
    }

    .mb-xl-n7,.my-xl-n7 {
        margin-bottom: -80px!important
    }

    .ml-xl-n7,.mx-xl-n7 {
        margin-left: -80px!important
    }

    .m-xl-n8 {
        margin: -100px!important
    }

    .mt-xl-n8,.my-xl-n8 {
        margin-top: -100px!important
    }

    .mr-xl-n8,.mx-xl-n8 {
        margin-right: -100px!important
    }

    .mb-xl-n8,.my-xl-n8 {
        margin-bottom: -100px!important
    }

    .ml-xl-n8,.mx-xl-n8 {
        margin-left: -100px!important
    }

    .m-xl-n9 {
        margin: -120px!important
    }

    .mt-xl-n9,.my-xl-n9 {
        margin-top: -120px!important
    }

    .mr-xl-n9,.mx-xl-n9 {
        margin-right: -120px!important
    }

    .mb-xl-n9,.my-xl-n9 {
        margin-bottom: -120px!important
    }

    .ml-xl-n9,.mx-xl-n9 {
        margin-left: -120px!important
    }

    .m-xl-auto {
        margin: auto!important
    }

    .mt-xl-auto,.my-xl-auto {
        margin-top: auto!important
    }

    .mr-xl-auto,.mx-xl-auto {
        margin-right: auto!important
    }

    .mb-xl-auto,.my-xl-auto {
        margin-bottom: auto!important
    }

    .ml-xl-auto,.mx-xl-auto {
        margin-left: auto!important
    }
}

.center {
    text-align: center!important
}

.center-none {
    text-align: inherit!important
}

@media (min-width: 576px) {
    .center-sm {
        text-align:center!important
    }

    .center-sm-none {
        text-align: inherit!important
    }
}

@media (min-width: 768px) {
    .center-md {
        text-align:center!important
    }

    .center-md-none {
        text-align: inherit!important
    }
}

@media (min-width: 992px) {
    .center-lg {
        text-align:center!important
    }

    .center-lg-none {
        text-align: inherit!important
    }
}

@media (min-width: 1280px) {
    .center-xl {
        text-align:center!important
    }

    .center-xl-none {
        text-align: inherit!important
    }
}

body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    color: #24282d;
    font-family: Inter,sans-serif;
    line-height: 1.5
}

ul {
    margin: 0;
    padding: 0
}

p {
    margin-bottom: 15px;
    margin-top: 0
}

a {
    background-color: transparent;
    color: #06f;
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.sticky-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

h1,h2,h3,h4,h5 {
    line-height: 1.3;
    margin: 0
}

.h1,.h2,.h3,.h4,.h5 {
    font-weight: 500;
    word-break: break-word
}

.h1 {
    font-size: 38px
}

.h1,.h2 {
    font-weight: 700
}

.h2 {
    font-size: 30px
}

.h3 {
    font-size: 24px
}

.h4 {
    font-size: 20px
}

.h5 {
    font-size: 18px
}

@media (max-width: 767px) {
    .h1 {
        font-size:30px
    }

    .h2 {
        font-size: 24px
    }

    .h3 {
        font-size: 20px
    }

    .h4 {
        font-size: 18px
    }
}

.text-black-1 {
    color: #24282d
}

.text-black-2 {
    color: #6d7883
}

.text-black-3 {
    color: #afb8c0
}

.text-white-1 {
    color: #f6f8f8
}

.text-white-2 {
    color: #8f99a3
}

.text-white-3 {
    color: #4b545d
}

@media (min-width: 576px) {
    .container-sm {
        max-width:540px!important
    }
}

@media (min-width: 768px) {
    .container-md {
        max-width:720px!important
    }
}

@media (min-width: 992px) {
    .container-lg {
        max-width:960px!important
    }
}

@media (min-width: 1280px) {
    .container-xl {
        max-width:1080px!important
    }
}

@media only screen and (max-width: 576px) {
    .container,.container-fluid {
        padding-left:15px;
        padding-right: 15px
    }
}

.svg-text {
    display: inline-block;
    vertical-align: middle
}

.svg-text svg {
    display: block;
    height: 1em;
    width: 1em
}

.width100 {
    width: 100%
}

button {
    font-family: inherit;
    margin: 0;
    text-transform: none
}

button,button:focus,button:hover {
    outline: none
}

.btn {
    align-items: center;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    font-weight: 500;
    justify-content: center;
    line-height: 1.4;
    padding: 7px 12px;
    text-align: center;
    transition: background .2s,opacity .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle
}

.btn:hover {
    text-decoration: none
}

.btn.disabled,.btn[disabled] {
    cursor: default;
    opacity: .6;
    pointer-events: none
}

.btn-text {
    font-size: 14px;
    line-height: 20px
}

.btn svg {
    flex-shrink: 0;
    height: 20px;
    width: 20px
}

.btn svg:not(:root) {
    overflow: hidden
}

.btn>* {
    margin-right: 5px
}

.btn>:last-child {
    margin-right: 0
}

.btn-sm {
    border-radius: 6px;
    padding: 4px 8px
}

.btn-sm .btn-text {
    font-size: 13px;
    line-height: 18px
}

.btn-sm svg {
    height: 18px;
    width: 18px
}

.btn-lg {
    border-radius: 10px;
    padding: 10px 16px
}

.btn-lg .btn-text {
    font-size: 16px;
    line-height: 24px
}

.btn-lg svg {
    height: 24px;
    width: 24px
}

.btn-onlyicon {
    padding: 7px
}

.btn-onlyicon.btn-sm {
    padding: 4px 5px
}

.btn-onlyicon.btn-lg {
    padding: 10px 12px
}

.btn-primary {
    background: #06f;
    color: #f6f8f8
}

.btn-primary:hover {
    background: #025ee8
}

.btn-primary:active {
    background: #0456d0
}

.btn-secondary {
    background: #fff;
    border: 1px solid rgba(18,20,22,.1);
    color: #24282d
}

.btn-secondary:hover {
    background: #f3f3f3
}

.btn-secondary:active {
    background: #e7e8e8
}

.btn-danger {
    background: #f24343;
    color: #f6f8f8
}

.btn-danger:hover {
    background: #dc3e3f
}

.btn-danger:active {
    background: #c53a3a
}

.btn-transparent {
    color: #24282d
}

.btn-transparent:hover {
    background: rgba(18,20,22,.05)
}

.btn-transparent:active {
    background: rgba(18,20,22,.1)
}

.loader-box,.loader-btn {
    position: relative
}

.loader-box:after,.loader-btn:after {
    animation: spin .8s linear infinite;
    border-radius: 100%;
    box-sizing: border-box;
    content: "";
    position: absolute
}

.loader-btn>* {
    opacity: 0
}

.loader-btn:after {
    border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: currentcolor;
    height: 22px;
    left: calc(50% - 11px);
    top: calc(50% - 11px);
    width: 22px
}

.loader-box {
    min-height: 80px;
    pointer-events: none
}

.loader-box:after {
    border: 5px solid rgba(75,84,93,.3);
    border-top-color: #4b545d;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    width: 40px;
    z-index: 11
}

.loader-box>* {
    opacity: .3
}

@keyframes spin {
    to {
        transform: rotate(1turn)
    }
}

.lbl:before {
    border-radius: 4px;
    content: "";
    display: inline-block;
    height: 8px;
    margin-right: 5px;
    width: 8px
}

.lbl-primary:before {
    background: #06f
}

.lbl-warning:before {
    background: #ffa127
}

.lbl-danger:before {
    background: #f24343
}

.lbl-secondary:before {
    background: #ced3d9
}

.lbl-success:before {
    background: #29b95b
}

.box-msg {
    border-radius: 8px;
    display: flex;
    padding: 10px
}

.box-msg-text {
    font-size: 14px;
    margin-left: 10px;
    text-align: left
}

.box-msg-icon svg {
    display: block;
    height: 20px;
    width: 20px
}

.box-msg-primary {
    background: rgba(0,102,255,.1)
}

.box-msg-primary .box-msg-text {
    color: #003d99
}

.box-msg-primary .box-msg-icon {
    color: #06f
}

.box-msg-primary a {
    color: #003d99;
    text-decoration: underline
}

.box-msg-warning {
    background: rgba(255,161,39,.1)
}

.box-msg-warning .box-msg-text {
    color: #c06c00
}

.box-msg-warning .box-msg-icon {
    color: #ffa127
}

.box-msg-warning a {
    color: #c06c00;
    text-decoration: underline
}

.box-msg-danger {
    background: rgba(242,67,67,.1)
}

.box-msg-danger .box-msg-text {
    color: #c20d0d
}

.box-msg-danger .box-msg-icon {
    color: #f24343
}

.box-msg-danger a {
    color: #c20d0d;
    text-decoration: underline
}

.dropdown {
    cursor: pointer;
    display: inline-block;
    position: relative
}

.dropdown-box,.dropdown-menu {
    background: #fff;
    border: 1px solid rgba(18,20,22,.06);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(36,40,45,.15);
    cursor: default;
    display: none;
    margin-top: 4px;
    opacity: 0;
    position: absolute;
    transform: translateY(10px);
    transition: .2s;
    z-index: 3
}

.dropdown-box.open,.dropdown-menu.open {
    display: block
}

.dropdown-box.fade,.dropdown-menu.fade {
    opacity: 1;
    transform: translateY(0)
}

.dropdown-menu {
    padding: 8px 0;
    text-align: left
}

.dropdown-menu .item {
    color: #24282d;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    line-height: 18px;
    padding: 7px 14px;
    white-space: nowrap
}

.dropdown-menu .item:hover {
    background: #f6f8f8;
    text-decoration: none
}

.dropdown-menu .item svg {
    height: 18px;
    margin-right: 10px;
    width: 18px
}

.dropdown-menu .item-danger {
    color: #f24343
}

.dropdown-menu .item-danger:hover {
    background: #fef6f6
}

.dropdown-right .dropdown-box,.dropdown-right .dropdown-menu {
    right: 0
}

.dropdown-left .dropdown-box,.dropdown-left .dropdown-menu {
    left: 0
}

.table {
    color: #24282d;
    font-size: 14px;
    position: relative
}

.table__header {
    color: #67798b;
    font-size: 13px;
    font-weight: 500
}

.table__header,.table__row {
    border-bottom: 1px solid rgba(18,20,22,.06);
    display: flex
}

.table__row {
    align-items: center;
    position: relative;
    transition: background .1s
}

.table__row:last-child {
    border-bottom: 0
}

.table__row:hover {
    background: rgba(246,248,248,.5)
}

.table__col {
    flex: 1;
    padding: 10px 5px;
    word-break: break-word
}

.table__col--btnset {
    flex: 0;
    white-space: nowrap
}

.table__col--move {
    cursor: -webkit-grab;
    cursor: grab;
    display: flex;
    max-width: 34px
}

.table__col--move svg {
    color: #afb8c0;
    height: 24px;
    width: 24px
}

.table__col--w1 {
    flex: 2
}

.table__col--w2 {
    flex: 3
}

.table__col--w3 {
    flex: 4
}

.table__descr {
    color: #6d7883;
    font-size: 13px;
    margin-top: 2px
}

@media (max-width: 767px) {
    .table {
        font-size:13px
    }

    .table__descr {
        font-size: 12px
    }

    .table__col:not(.table__col--first) .table__descr {
        display: inline-block;
        font-size: 13px;
        margin-left: 5px;
        margin-top: 0
    }

    .table--mobile .table__header {
        display: none
    }

    .table--mobile .table__row {
        border: 1px solid #dee1e6;
        border-radius: 8px;
        flex-direction: column;
        margin-bottom: 15px;
        padding: 5px 10px
    }

    .table--mobile .table__row:last-child {
        border-bottom: 1px solid #dee1e6
    }

    .table--mobile .table__col {
        border-top: 1px solid rgba(18,20,22,.06);
        padding: 5px 0;
        text-align: right;
        width: 100%
    }

    .table--mobile .table__col:first-child {
        border-top: 0
    }

    .table--mobile .table__col:before {
        color: #6d7883;
        content: attr(data-col);
        float: left;
        font-size: 13px;
        margin-right: 10px
    }

    .table--mobile .table__col--btnset {
        border: 0;
        position: absolute;
        right: 5px;
        top: 0;
        width: auto
    }

    .table--mobile .table__col--first {
        border-top: 0;
        font-size: 15px;
        order: -10;
        text-align: left
    }

    .table--mobile .table__col--first:not(:first-child) {
        border-bottom: 1px solid rgba(18,20,22,.06)
    }
}

.box {
    word-wrap: break-word;
    background: #fff;
    border: 1px solid rgba(18,20,22,.06);
    border-radius: 10px;
    color: #24282d;
    font-size: 14px;
    margin-bottom: 20px
}

.box .box-btnset,.box .box-header,.box .box-item {
    border-top: 1px solid rgba(18,20,22,.06)
}

.box .box-btnset:first-child,.box .box-header:first-child,.box .box-item:first-child {
    border-top: 0
}

.box-item {
    padding: 20px
}

.box-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative
}

.box-header-article {
    color: #24282d;
    display: inline-flex;
    font-size: 16px;
    font-weight: 500;
    margin-right: 10px
}

.box-btnset {
    font-size: 0;
    padding: 10px 20px;
    text-align: right
}

.box-btnset>.btn:not(:last-child) {
    margin-right: 10px
}

.box-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 1
}

@media (max-width: 575px) {
    .box-sm-compact {
        border:0;
        border-radius: 0;
        margin-left: -15px;
        margin-right: -15px
    }

    .box-sm-compact>.box-btnset,.box-sm-compact>.box-header,.box-sm-compact>.box-item {
        padding-left: 15px;
        padding-right: 15px
    }
}

.modal {
    background: rgba(18,20,22,.55);
    bottom: 0;
    display: none;
    left: 0;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity .2s ease-out;
    z-index: 2050
}

.modal.fade {
    opacity: 1
}

.modal.fade .modal-box {
    transform: unset
}

.modal.open {
    display: block
}

.modal-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: 0 15px
}

.modal-box {
    border: none;
    margin: 40px 0;
    position: relative;
    transform: scale(.9);
    transition: transform .2s ease-out;
    width: 100%
}

.modal-sm .modal-box {
    max-width: 450px
}

.modal-md .modal-box {
    max-width: 600px
}

.modal-lg .modal-box {
    max-width: 800px
}

.modal-xl .modal-box {
    max-width: 920px
}

.tabs-container {
    display: none;
    opacity: 0;
    transition: .3s
}

.tabs-container.open {
    display: block
}

.tabs-container.fade {
    opacity: 1
}

.hint {
    position: relative
}

.hint-svg svg {
    display: block
}

.hint:after {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(0,0,0,.7);
    border-radius: 8px;
    color: #f6f8f8;
    content: attr(aria-label);
    font-size: 13px;
    font-weight: 400;
    opacity: 0;
    padding: 8px 10px;
    pointer-events: none;
    position: absolute;
    text-align: left;
    transition: transform .2s,opacity .2s;
    visibility: hidden;
    white-space: nowrap;
    z-index: 10
}

.hint:hover:after {
    opacity: 1;
    visibility: visible
}

.hint-top-left:after,.hint-top-right:after,.hint-top:after {
    bottom: 100%
}

.hint-top:after {
    left: 50%;
    transform: translateX(-50%)
}

.hint-top:hover:after {
    transform: translateX(-50%) translateY(-8px)
}

.hint-top-left:after {
    right: 0
}

.hint-top-left:hover:after {
    transform: translateY(-8px)
}

.hint-top-right:after {
    left: 0
}

.hint-top-right:hover:after {
    transform: translateY(-8px)
}

.hint-bottom-left:after,.hint-bottom-right:after,.hint-bottom:after {
    top: 100%
}

.hint-bottom:after {
    left: 50%;
    transform: translateX(-50%)
}

.hint-bottom:hover:after {
    transform: translateX(-50%) translateY(8px)
}

.hint-bottom-left:after {
    right: 0
}

.hint-bottom-left:hover:after {
    transform: translateY(8px)
}

.hint-bottom-right:after {
    left: 0
}

.hint-bottom-right:hover:after {
    transform: translateY(8px)
}

.hint-lg:after,.hint-md:after,.hint-sm:after {
    word-wrap: break-word;
    line-height: 1.4em;
    white-space: normal
}

.hint-sm:after {
    width: 80px
}

.hint-md:after {
    width: 150px
}

.hint-lg:after {
    width: 250px
}

.wdgt1 {
    align-items: flex-start;
    display: flex;
    margin: -5px -8px
}

.wdgt1>div {
    margin: 5px 8px
}

.wdgt1-container {
    display: flex
}

.wdgt1-container>div,.wdgt1-container>img {
    margin-right: 16px
}

.wdgt1-container :last-child {
    margin-right: 0
}

.wdgt1-icon {
    flex: 0 0 auto;
    height: 48px
}

.wdgt1-icon img {
    border-radius: 6px;
    height: 100%
}

.wdgt1-info>div {
    margin-bottom: 2px
}

.wdgt1-info>div:last-child {
    margin-bottom: 0
}

.wdgt1-info-title {
    color: #24282d;
    font-size: 18px;
    font-weight: 500
}

.wdgt1-info-descr {
    color: #6d7883;
    font-size: 13px
}

.wdgt1-line {
    font-size: 13px
}

.wdgt1-line-item {
    color: #6d7883;
    margin-bottom: 10px
}

.wdgt1-line-item:last-child {
    margin-bottom: 0
}

.wdgt1-line-value {
    color: #24282d;
    font-weight: 500
}

.wdgt3 {
    display: flex;
    font-size: 14px;
    margin-bottom: 20px
}

.wdgt3:last-child {
    margin: 0
}

.wdgt3-title {
    color: #6d7883;
    display: flex;
    flex: 1 0 auto;
    white-space: nowrap
}

.wdgt3-title:after {
    border-bottom: 4px dotted rgba(18,20,22,.06);
    content: "";
    display: block;
    margin: 0 8px;
    width: 100%
}

.wdgt3-val {
    color: #24282d;
    flex: 0 1 auto;
    font-weight: 500;
    word-break: break-word
}

.wdgt3.caption {
    font-size: 22px
}

.wdgt3.caption>div {
    color: #24282d;
    font-weight: 700
}

.mobile-nav {
    background: #fff;
    display: flex;
    height: 100vh;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: transform .2s ease-out;
    width: 75vw;
    z-index: 2040
}

.mobile-nav.open {
    transform: none!important
}

@media (min-width: 992px) {
    .mobile-nav,.mobile-nav-bg {
        display:none
    }
}

.aside-nav {
    background: #fff;
    bottom: 0;
    display: flex;
    left: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transition: transform .2s ease-out;
    width: 250px;
    z-index: 2040
}

.aside-nav.open {
    transform: none!important
}

@media (max-width: 991px) {
    .aside-nav {
        transform:translateX(-100%)
    }
}

@media (min-width: 992px) {
    .aside-nav-bg {
        display:none
    }
}

.overlay {
    background-color: rgba(18,20,22,.55);
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity .2s ease-out;
    z-index: 2030
}

.overlay.fade {
    opacity: 1
}

@media (min-width: 992px) {
    .body-aside-nav {
        margin-left:250px
    }
}

.pagination {
    flex-wrap: wrap;
    padding: 15px 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: 100%
}

.page-item,.pagination {
    display: inline-flex;
    justify-content: center;
}
/* Контейнер */
.pagination {
  display: flex;
  gap: 10px;
  list-style: none;
  /* padding: 12px 18px; */
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
}

/* Элемент */
.page-item {
  position: relative;
}

/* Ссылка */
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(145deg, #000000, #000000);
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* Hover */
.page-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  color: #2563eb;
}

/* Активный элемент */
.page-item.active .page-link {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  transform: scale(1.08);
  z-index: 2;
}

/* Эффект "светового кольца" */
.page-link::after {
  /* content: ""; */
  position: absolute;
  inset: -6px;
  border-radius: 14px;
  background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.page-link:hover::after {
  opacity: 1;
}

.page-item {
    align-items: center;
    border-radius: 6px;
    color: #6d7883;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    height: 28px;
    margin-right: 3px;
    min-width: 28px;
    text-align: center
}

.page-item:last-child {
    margin-right: 0
}

.page-item svg {
    height: 24px;
    width: 24px
}

.page-dots {
    cursor: default
}

.page-link {
    transition: .1s
}

.page-link:hover {
    color: #24282d;
    text-decoration: none
}

.page-link.active {
    background: #6d7883;
    color: #f6f8f8;
    cursor: not-allowed;
    pointer-events: none
}

.article {
    color: #4b545d;
    font-size: 16px;
    line-height: 1.625
}

.article>:first-child {
    margin-top: 0
}

.article>:last-child {
    margin-bottom: 0
}

.article img {
    border: 1px solid rgba(18,20,22,.06);
    border-radius: 4px;
    display: block;
    height: auto;
    margin: 0 auto 20px;
    max-width: 100%;
    width: auto
}

.article figure {
    margin: 20px auto
}

.article figcaption {
    font-size: 14px;
    font-style: italic;
    padding: 5px 0;
    text-align: center
}

.article b,.article strong {
    color: #24282d
}

.article ol,.article p,.article ul {
    color: #4b545d;
    margin-bottom: 20px
}

.article ol,.article ul {
    padding-left: 2em
}

.article li {
    color: #4b545d;
    margin-bottom: 8px;
    margin-top: 8px
}

.article li p {
    margin-bottom: 0
}

.article a b,.article a strong {
    color: inherit
}

.article h1,.article h2,.article h3,.article h4 {
    color: #24282d;
    font-weight: 500;
    margin: 40px 0 20px
}

.article h1 {
    font-size: 30px
}

.article h2 {
    font-size: 24px
}

.article h3 {
    font-size: 20px
}

.article h4 {
    font-size: 18px
}

@media (max-width: 767px) {
    .article h1 {
        font-size:24px
    }

    .article h2 {
        font-size: 20px
    }

    .article h3 {
        font-size: 18px
    }

    .article h4 {
        font-size: 16px
    }
}

.notify {
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 2060
}

.notify-box {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(0,0,0,.7);
    border-radius: 10px;
    display: flex;
    margin: 10px;
    max-width: 600px;
    opacity: 0;
    padding: 8px 15px;
    transform: translateY(-15px);
    transition: opacity .2s,transform .2s
}

.notify svg {
    flex-shrink: 0;
    height: 20px;
    margin-right: 6px;
    width: 20px
}

.notify-msg {
    color: #f6f8f8;
    font-size: 13px;
    line-height: 20px
}

.notify.fade .notify-box {
    opacity: 1;
    transform: translateY(0)
}

.notify-success svg {
    color: #29b95b
}

.notify-danger svg {
    color: #f24343
}

input,input:active,input:focus,select,textarea {
    outline: none
}

textarea {
    min-height: 100px;
    resize: vertical
}

input::-moz-placeholder,textarea::-moz-placeholder {
    color: #afb8c0;
    opacity: 1
}

input::placeholder,textarea::placeholder {
    color: #afb8c0;
    opacity: 1
}

.form-label,optgroup {
    font-weight: 500
}

.form-label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px
}

.form-label span.required:after,.form-label.required:after {
    color: #f24343;
    content: "*";
    padding-left: 2px
}

.form-label-descr {
    color: #6d7883;
    display: block;
    font-size: 13px;
    font-weight: 400
}

.form-control {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid #ced3d9;
    border-radius: 8px;
    color: #24282d;
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    padding: 8px 12px;
    width: 100%
}

.form-control[type=date] {
    padding: 7px 12px
}

.form-control.error,.form-custom.error,.select.error>.select-custom-input {
    border: 1px solid #f67b7b
}

.error.form-custom:focus-within,.form-control.error:focus,.form-custom.error:focus,.select.error:focus>.select-custom-input,.select.error>.select-custom-input:focus,.select:focus>.error.select-custom-input {
    border: 1px solid #f67b7b;
    box-shadow: 0 0 0 1px #f24343
}

.form-control:disabled,.select.disabled .select-custom-input {
    -webkit-text-fill-color: #6d7883;
    background-color: #f6f8f8;
    border: 1px solid #ced3d9;
    color: #6d7883;
    opacity: .5
}

.form-control:focus,.form-custom:focus-within,.select:focus>.select-custom-input {
    border: 1px solid #06f;
    box-shadow: 0 0 0 1px #06f;
    transition: border .2s,box-shadow .2s
}

.form-control-sm {
    border-radius: 6px;
    font-size: 13px;
    padding: 3px 8px
}

.form-control-lg {
    border-radius: 10px;
    font-size: 18px;
    padding: 12px 16px
}

.form-control-error {
    color: #f24343;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px
}

.select-custom-input,select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 18'%3E%3Cpath fill='%23AEB0BC' d='m5 3 3 3 1.5-1.5L5 0 .5 4.5 2 6l3-3Zm0 12-3-3-1.5 1.5L5 18l4.5-4.5L8 12l-3 3Z'/%3E%3C/svg%3E") no-repeat right 10px center/10px 18px;
    background-color: #fff;
    padding: 8px 26px 8px 12px
}

.form-custom {
    align-items: center;
    background: #fff;
    border: 1px solid #ced3d9;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative
}

.form-custom-control {
    background: transparent;
    border: none;
    color: #24282d;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    padding: 8px 12px;
    width: 100%
}

.form-custom-control:focus {
    outline: none
}

.form-custom-text {
    color: #6d7883;
    font-size: 15px
}

.form-custom-text:first-child {
    margin-left: 12px
}

.form-custom-text:last-child {
    margin-right: 12px
}

.form-custom .btn {
    flex-shrink: 0;
    margin: 4px
}

.form-custom-sm {
    border-radius: 6px
}

.form-custom-sm .form-custom-control {
    font-size: 13px;
    padding: 3px 8px
}

.form-custom-lg {
    border-radius: 10px
}

.form-custom-lg .form-custom-control {
    font-size: 18px;
    padding: 12px 16px
}

.form-custom.disabled {
    background: #f6f8f8;
    border: 1px solid #ced3d9;
    opacity: .5;
    pointer-events: none
}

.form-custom.disabled input {
    -webkit-text-fill-color: #6d7883;
    color: #6d7883
}

.form-custom-file {
    border: none;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.filearea {
    display: flex;
    flex-direction: column;
    position: relative
}

.filearea>input[type=file] {
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.filearea.disabled {
    opacity: .4;
    pointer-events: none
}

.filearea-label {
    align-items: center;
    border: 2px dashed #ced3d9;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 20px 10px
}

.filearea-label-icon {
    background: #edeff2;
    border-radius: 17px;
    color: #24282d;
    display: block;
    height: 34px;
    margin-bottom: 5px;
    padding: 7px;
    width: 34px
}

.filearea-label-title {
    color: #24282d;
    font-size: 14px
}

.filearea-label-subtitle {
    color: #6d7883;
    font-size: 12px;
    margin-top: 5px
}

.filearea-label-subtitle:empty {
    margin-top: 0
}

.filearea.error .filearea-label {
    border: 2px dashed #f67b7b
}

.filearea.limit .filearea-label {
    display: none
}

.filearea-list {
    margin-top: 10px
}

.filearea-list:empty,.filearea.limit .filearea-list {
    margin-top: 0
}

.filearea-file {
    background: #fff;
    border: 1px solid #ced3d9;
    border-radius: 8px;
    display: flex;
    margin-bottom: 10px;
    padding: 10px
}

.filearea-file:last-child {
    margin-bottom: 0
}

.filearea-file.error {
    border: 1px solid #f67b7b
}

.filearea-file.error .filearea-file-msg {
    color: #f24343
}

.filearea-file-img {
    background: #f6f8f8;
    border-radius: 6px;
    flex-shrink: 0;
    height: 48px;
    margin-right: 10px;
    overflow: hidden;
    position: relative;
    width: 48px
}

.filearea-file-img svg {
    color: #afb8c0;
    height: 48px;
    padding: 12px;
    width: 48px
}

.filearea-file-img img {
    background: #f6f8f8;
    height: 100%;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 0;
    width: 100%
}

.filearea-file-info {
    align-self: center;
    flex: 1 1 auto;
    margin-right: 10px;
    overflow: hidden
}

.filearea-file-name {
    color: #24282d;
    font-size: 14px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.filearea-file-msg {
    color: #6d7883;
    font-size: 12px;
    line-height: 16px;
    position: relative
}

.filearea-file-msg.loader-progress {
    padding-left: 20px
}

.filearea-file-msg.loader-progress:before {
    animation: spin .8s linear infinite;
    border: 2px solid rgba(75,84,93,.3);
    border-radius: 100%;
    border-top-color: #4b545d;
    box-sizing: border-box;
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 0;
    width: 16px
}

.filearea-file-del {
    align-items: center;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    height: 24px;
    justify-content: center;
    transition: background .2s;
    width: 24px
}

.filearea-file-del:hover {
    background: rgba(242,67,67,.2)
}

.filearea-file-del svg {
    color: #f24343;
    height: 20px;
    width: 20px
}

.filearea-file-move {
    align-items: center;
    cursor: -webkit-grab;
    cursor: grab;
    display: flex;
    margin-left: -5px;
    margin-right: 5px
}

.filearea-file-move svg {
    color: #afb8c0;
    height: 24px;
    width: 24px
}

.radio-tabs {
    border-radius: 8px;
    display: inline-flex
}

.radio-tabs-item {
    cursor: pointer;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.radio-tabs-choice {
    align-items: center;
    border-radius: 6px;
    display: flex;
    font-size: 13px;
    font-weight: 500;
    justify-content: center;
    margin: 3px;
    padding: 5px 12px;
    text-align: center;
    transition: .2s
}

.radio-tabs-choice svg {
    display: inline-block;
    height: 16px;
    margin-right: 5px;
    vertical-align: text-bottom;
    width: 16px
}

.radio-tabs-secondary {
    background: #edeff2
}

.radio-tabs-secondary .radio-tabs-choice {
    color: #24282d
}

.radio-tabs-secondary .radio-tabs-choice:hover {
    background: #dbdde0
}

.radio-tabs-secondary .radio-tabs-choice:active {
    background: #cacccf
}

.radio-tabs-secondary input:checked~.radio-tabs-choice {
    background: #fff;
    box-shadow: 0 0 4px -1px rgba(18,20,22,.3);
    color: #24282d
}

.radio-tabs-primary {
    background: #06f
}

.radio-tabs-primary .radio-tabs-choice {
    color: #fff
}

.radio-tabs-primary .radio-tabs-choice:hover {
    background: #015fec
}

.radio-tabs-primary .radio-tabs-choice:active {
    background: #0359da
}

.radio-tabs-primary input:checked~.radio-tabs-choice {
    background: #fff;
    box-shadow: 0 0 4px -1px rgba(18,20,22,.3);
    color: #06f
}

.radio-tabs-white {
    background: #24282d
}

.radio-tabs-white .radio-tabs-choice {
    color: #fff
}

.radio-tabs-white .radio-tabs-choice:hover {
    background: #23262b
}

.radio-tabs-white .radio-tabs-choice:active {
    background: #212529
}

.radio-tabs-white input:checked~.radio-tabs-choice {
    background: #fff;
    box-shadow: 0 0 4px -1px rgba(18,20,22,.3);
    color: #24282d
}

.radio-tabs.width100 .radio-tabs-item {
    flex: 1 1 auto
}

.radio-wdgt {
    display: flex;
    flex-wrap: wrap;
    margin: -5px
}

.radio-wdgt>div {
    padding: 5px
}

.radio-wdgt-box {
    border: 1px solid #ced3d9;
    border-radius: 8px;
    display: block;
    padding: 10px;
    transition: border .2s,box-shadow .2s
}

.radio-wdgt-item {
    cursor: pointer;
    display: block;
    padding: 5px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.radio-wdgt-item:focus {
    outline: none
}

.radio-wdgt-item input:checked~.radio-wdgt-box {
    border: 1px solid #06f;
    box-shadow: 0 0 0 1px #06f
}

.radio-wdgt2-item {
    cursor: pointer;
    display: block;
    margin-bottom: 5px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.radio-wdgt2-item:last-child {
    margin-bottom: 0
}

.radio-wdgt2-item:focus {
    outline: none
}

.radio-wdgt2-item input:checked~.radio-wdgt2-box {
    border: 1px solid #06f;
    box-shadow: 0 0 0 1px #06f
}

.radio-wdgt2-item input:checked~.radio-wdgt2-box:after {
    background: #06f;
    border: 1px solid #06f
}

.radio-wdgt2-box {
    border: 1px solid transparent;
    border-radius: 8px;
    display: block;
    padding: 8px 10px 8px 36px;
    position: relative;
    transition: border .2s,box-shadow .2s
}

.radio-wdgt2-box:after {
    border: 1px solid #ced3d9;
    border-radius: 15px;
    content: "";
    display: block;
    height: 16px;
    left: 10px;
    position: absolute;
    top: calc(50% - 8px);
    transition: background .2s,border .2s;
    width: 16px
}

.custom-control {
    display: flex;
    min-height: 18px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.custom-control-input {
    opacity: 0;
    position: absolute;
    z-index: -1
}

.custom-control-label {
    cursor: pointer;
    display: block;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    padding-left: 28px;
    padding-right: 10px;
    position: relative
}

.custom-control-label:empty {
    padding-left: 8px
}

.custom-control-label:before {
    background: #fff;
    border: 1px solid #ced3d9;
    display: block;
    height: 18px;
    left: 0;
    pointer-events: none;
    top: 0;
    transition: background .2s ease;
    width: 18px
}

.custom-control-label:after,.custom-control-label:before {
    content: "";
    position: absolute;
    z-index: 1
}

.custom-control-descr {
    color: #6d7883;
    display: block;
    font-size: 13px;
    margin-top: 2px
}

.custom-control.custom-radio .custom-control-label:before {
    border-radius: 50%
}

.custom-control.custom-radio .custom-control-label:after {
    border-radius: 50%;
    display: block;
    height: 8px;
    left: 5px;
    top: 5px;
    width: 8px
}

.custom-control.custom-radio .custom-control-input:checked~.custom-control-label:after {
    background: #fff
}

.custom-control.custom-checkbox .custom-control-label:before {
    border-radius: 5px
}

.custom-control.custom-checkbox .custom-control-label:after {
    background: no-repeat 50%/60% 60%;
    display: block;
    height: 16px;
    left: 1px;
    top: 1px;
    width: 16px
}

.custom-control.custom-checkbox .custom-control-input:checked~.custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E")
}

.custom-control.custom-switch.error .custom-control-label:before {
    background: #f67b7b;
    border: none
}

.custom-control.custom-switch .custom-control-label {
    padding-left: 42px
}

.custom-control.custom-switch .custom-control-label:empty {
    padding-left: 22px
}

.custom-control.custom-switch .custom-control-label:before {
    background: #ced3d9;
    border: none;
    border-radius: 16px;
    width: 32px
}

.custom-control.custom-switch .custom-control-label:after {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 7px;
    height: 14px;
    left: 2px;
    top: 2px;
    transition: left .2s ease;
    width: 14px
}

.custom-control.custom-switch .custom-control-input:checked~.custom-control-label:after {
    left: 16px
}

.custom-control-input:checked~.custom-control-label:before {
    background: #06f;
    border-color: #06f
}

.custom-control-input:disabled~.custom-control-label {
    cursor: default;
    opacity: .5
}

.custom-control-input:disabled~.custom-control-label:before {
    background: #f6f8f8;
    border: 1px solid #ced3d9
}

.custom-control.error .custom-control-label:before {
    border: 1px solid #f67b7b
}

.custom-control.error .custom-control-input:checked~.custom-control-label:before {
    background: #f45f5f;
    border: 1px solid #f45f5f
}

.select {
    display: inline-block;
    height: 38px;
    outline: none;
    position: relative;
    width: 100%
}

.select select {
    display: none
}

.select-custom-input {
    cursor: pointer;
    position: relative
}

.select-custom-input.placeholder {
    color: #afb8c0
}

.select-search {
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.select-search-control {
    padding-right: 38px
}

.select-search-close {
    color: #afb8c0;
    cursor: pointer;
    height: 38px;
    padding: 9px;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px
}

.select-box {
    background: #fff;
    border: 1px solid #ced3d9;
    border-radius: 8px;
    box-shadow: 0 5px 15px 2px rgba(36,40,45,.15);
    color: #24282d;
    display: none;
    font-size: 13px;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 46px;
    transform: translateY(10px);
    transition: transform .2s,opacity .2s;
    width: 100%;
    word-break: break-word;
    z-index: 2
}

.select-box-all {
    background: #fff;
    border-bottom: 1px solid rgba(18,20,22,.06);
    box-shadow: 0 0 10px rgba(36,40,45,.15);
    position: -webkit-sticky;
    position: sticky
}

.select-box-nomatch {
    color: #afb8c0;
    font-style: italic;
    padding: 8px 10px
}

.select-box-list {
    list-style: none;
    max-height: 250px;
    overflow-y: auto
}

.select-box .option {
    cursor: pointer;
    display: flex;
    padding: 8px 10px
}

.select-box .option:hover:not(.disabled) {
    background: #f6f8f8
}

.select-box .option i {
    background-color: #fff;
    border: 1px solid #ced3d9;
    border-radius: 5px;
    display: inline-block;
    flex-shrink: 0;
    height: 18px;
    margin-right: 10px;
    transition: background-color .2s ease,border .2s;
    width: 18px
}

.select-box .option.selected i {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='m6.564.75-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E") no-repeat 50%/60% 60%;
    background-color: #06f;
    border-color: #06f
}

.select-box .option.disabled {
    opacity: .4;
    pointer-events: none
}

.select-box .option.hidden {
    display: none
}

.select.open .select-box {
    display: block
}

.select.fade .select-box {
    opacity: 1;
    transform: translateY(0)
}

.select.fade .select-search,.select.fade .select-search-close {
    display: block
}

.select.disabled {
    pointer-events: none
}

.form-custom-color {
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
    display: block;
    flex-shrink: 0;
    height: 28px;
    margin-left: 4px;
    position: relative;
    width: 28px
}

.form-custom-color input[type=color] {
    border: none;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
}

.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%
}

.input-group>.form-control-error {
    order: 99;
    width: 100%
}

.input-group>.form-control {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    width: 1%
}

.input-group>.form-control:focus,.input-group>.form-custom:focus-within,.select.input-group:focus>.select-custom-input {
    z-index: 3
}

.input-group>:not(:first-child):not(.form-control-error) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    margin-left: -1px
}

.input-group>:not(:last-child):not(.form-control-error) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group.input-group-error>.form-control:nth-last-child(-n+2) {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px
}

.input-group>.form-control-error:empty {
    margin-top: 0
}

.b {
    border: 1px solid rgba(18,20,22,.06)!important
}

.bt {
    border-top: 1px solid rgba(18,20,22,.06)!important
}

.br {
    border-right: 1px solid rgba(18,20,22,.06)!important
}

.bb {
    border-bottom: 1px solid rgba(18,20,22,.06)!important
}

.bl {
    border-left: 1px solid rgba(18,20,22,.06)!important
}

.b-none {
    border: 0!important
}

.bt-none {
    border-top: 0!important
}

.br-none {
    border-right: 0!important
}

.bb-none {
    border-bottom: 0!important
}

.bl-none {
    border-left: 0!important
}

@media (min-width: 576px) {
    .b-sm {
        border:1px solid rgba(18,20,22,.06)!important
    }

    .bt-sm {
        border-top: 1px solid rgba(18,20,22,.06)!important
    }

    .br-sm {
        border-right: 1px solid rgba(18,20,22,.06)!important
    }

    .bb-sm {
        border-bottom: 1px solid rgba(18,20,22,.06)!important
    }

    .bl-sm {
        border-left: 1px solid rgba(18,20,22,.06)!important
    }

    .b-sm-none {
        border: 0!important
    }

    .bt-sm-none {
        border-top: 0!important
    }

    .br-sm-none {
        border-right: 0!important
    }

    .bb-sm-none {
        border-bottom: 0!important
    }

    .bl-sm-none {
        border-left: 0!important
    }
}

@media (min-width: 768px) {
    .b-md {
        border:1px solid rgba(18,20,22,.06)!important
    }

    .bt-md {
        border-top: 1px solid rgba(18,20,22,.06)!important
    }

    .br-md {
        border-right: 1px solid rgba(18,20,22,.06)!important
    }

    .bb-md {
        border-bottom: 1px solid rgba(18,20,22,.06)!important
    }

    .bl-md {
        border-left: 1px solid rgba(18,20,22,.06)!important
    }

    .b-md-none {
        border: 0!important
    }

    .bt-md-none {
        border-top: 0!important
    }

    .br-md-none {
        border-right: 0!important
    }

    .bb-md-none {
        border-bottom: 0!important
    }

    .bl-md-none {
        border-left: 0!important
    }
}

@media (min-width: 992px) {
    .b-lg {
        border:1px solid rgba(18,20,22,.06)!important
    }

    .bt-lg {
        border-top: 1px solid rgba(18,20,22,.06)!important
    }

    .br-lg {
        border-right: 1px solid rgba(18,20,22,.06)!important
    }

    .bb-lg {
        border-bottom: 1px solid rgba(18,20,22,.06)!important
    }

    .bl-lg {
        border-left: 1px solid rgba(18,20,22,.06)!important
    }

    .b-lg-none {
        border: 0!important
    }

    .bt-lg-none {
        border-top: 0!important
    }

    .br-lg-none {
        border-right: 0!important
    }

    .bb-lg-none {
        border-bottom: 0!important
    }

    .bl-lg-none {
        border-left: 0!important
    }
}

@media (min-width: 1280px) {
    .b-xl {
        border:1px solid rgba(18,20,22,.06)!important
    }

    .bt-xl {
        border-top: 1px solid rgba(18,20,22,.06)!important
    }

    .br-xl {
        border-right: 1px solid rgba(18,20,22,.06)!important
    }

    .bb-xl {
        border-bottom: 1px solid rgba(18,20,22,.06)!important
    }

    .bl-xl {
        border-left: 1px solid rgba(18,20,22,.06)!important
    }

    .b-xl-none {
        border: 0!important
    }

    .bt-xl-none {
        border-top: 0!important
    }

    .br-xl-none {
        border-right: 0!important
    }

    .bb-xl-none {
        border-bottom: 0!important
    }

    .bl-xl-none {
        border-left: 0!important
    }
}
/* Text Input */
.review-form input[type="text"] {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333333;
    transition: all 0.3s ease;
}

.review-form input[type="text"]:hover {
    border-color: #00c4b4;
    transform: translateY(-2px);
}

.review-form input[type="text"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
}