body.ds-open {
    overflow: hidden;
}

body.ds-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255 255 255 / 75%);
    z-index: 9;
}

.container {
    max-width: 75em;
    margin: auto;
    padding: 0 0.5rem;
}

.spinner {
    width: 56px;
    height: 56px;
    display: grid;
    animation: spinner-round 4s infinite;
}

.spinner::before,
.spinner::after {
    content: "";
    grid-area: 1/1;
    border: 9px solid;
    border-radius: 50%;
    border-color: #474bff #474bff #0000 #0000;
    mix-blend-mode: darken;
    animation: spinner-round 1s infinite linear;
}

.spinner::after {
    border-color: #0000 #0000 #dbdcef #dbdcef;
    animation-direction: reverse;
}

@keyframes spinner-round {
    100% {
        transform: rotate(1turn);
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(255 255 255 / 10%);
    z-index: 1001;
}

.loader.open {
    display: flex;
}

.loader__item {
    padding: 3em;
    border-radius: 12px;
    background: #FFFFFF;
    box-shadow: var(--medium-shadow);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.loader__message {
    width: 100%;
    font-family: 'Tektur', sans-serif;
    text-align: center;
    display: none;
    font-weight: 500;
    color: #777777;
}

.loader__message.open {
    display: block;
    padding-top: 2em;
}

.notification {
    position: fixed;
    top: 2em;
    left: 2em;
    max-width: calc(100% - 4em);
    z-index: 1001;
}

.notification i {
    display: inline-flex;
    align-items: center;
    padding: 0.65em;
    transform: translateY(0px);
    border-radius: 2px 0 0 2px;
}

.notification span {
    padding: 0.5em 1.25em 0.5em 0;
    display: block;
    box-sizing: border-box;
    align-self: center;
}

.notification__error {
    background: #FFFFFF;
    color: #4F4F4F;
    font-weight: 500;
    display: flex;
    gap: 1em;
    border-radius: 4px;
    position: relative;
    font-family: 'Tektur', sans-serif;
    font-size: .875em;
}

.notification__error i {
    background: var(--danger-color);
    color: var(--danger-color-text);
}

.notification__error i::after {
    content: '';
    border: 5px solid transparent;
    border-left: 5px solid var(--danger-color);
    position: absolute;
    top: 36%;
    left: 100%;
}

.notification__success {
    background: #FFFFFF;
    color: #4F4F4F;
    font-weight: 500;
    display: flex;
    gap: 1em;
    align-items: center;
    border-radius: 4px;
    position: relative;
    font-family: 'Tektur', sans-serif;
    font-size: .875em;
}

.notification__success i {
    background: var(--success-color);
    color: var(--success-color-text);
}

.notification__success i::after {
    content: '';
    border: 5px solid transparent;
    border-left: 5px solid var(--success-color);
    position: absolute;
    top: 36%;
    left: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.row--gap {
    gap: 1em;
    justify-content: space-between;
}

.row__col-1 {
    width: 8.333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 8.333333%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-1 {
    width: calc(8.333333% - .67em);
    flex-basis: calc(8.333333% - .67em);
}

.row__col-2 {
    width: 16.666667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 16.666667%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-2 {
    width: calc(16.666667% - .67em);
    flex-basis: calc(16.666667% - .67em);
}

.row__col-3 {
    width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 25%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-3 {
    width: calc(25% - .67em);
    flex-basis: calc(25% - .67em);
}

.row__col-4 {
    width: 33.333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 33.333333%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-4 {
    width: calc(33.333333% - .67em);
    flex-basis: calc(33.333333% - .67em);
}

.row__col-5 {
    width: 41.666667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 41.666667%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-5 {
    width: calc(41.666667% - .67em);
    flex-basis: calc(41.666667% - .67em);
}

.row__col-6 {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 50%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-6 {
    width: calc(50% - .67em);
    flex-basis: calc(50% - .67em);
}

.row__col-7 {
    width: 58.333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 58.333333%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-7 {
    width: calc(58.333333% - .67em);
    flex-basis: calc(58.333333% - .67em);
}

.row__col-8 {
    width: 66.666667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 66.666667%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-8 {
    width: calc(66.666667% - .67em);
    flex-basis: calc(66.666667% - .67em);
}

.row__col-9 {
    width: 75%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 75%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-9 {
    width: calc(75% - .67em);
    flex-basis: calc(75% - .67em);
}

.row__col-10 {
    width: 83.333333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 83.333333%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-10 {
    width: calc(83.333333% - .67em);
    flex-basis: calc(83.333333% - .67em);
}

.row__col-11 {
    width: 91.666667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 91.666667%;
    flex-grow: 0;
    flex-shrink: 0;
}
.row--gap .row__col-11 {
    width: calc(91.666667% - .67em);
    flex-basis: calc(91.666667% - .67em);
}

.row__col-12 {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    flex-basis: 100%;
    flex-grow: 0;
    flex-shrink: 0;
}

.hidden {
    display: none;
}

@media (max-width: 768px){

    .row__col, .row__col-1, .row__col-2, .row__col-3, .row__col-4, .row__col-5, .row__col-6, .row__col-7, .row__col-8, .row__col-9, .row__col-10, .row__col-11, .row__col-12 {
        width: 100%;
        flex-basis: 100%;
    }
    .row--gap .row__col, .row--gap .row__col-1, .row--gap .row__col-2, .row--gap .row__col-3,
    .row--gap .row__col-4, .row--gap .row__col-5, .row--gap .row__col-6, .row--gap .row__col-7,
    .row--gap .row__col-8, .row--gap .row__col-9, .row--gap .row__col-10, .row--gap .row__col-11, .row--gap .row__col-12 {
        width: 100%;
        flex-basis: 100%;
    }
}
