.bg-none {
    background: none;
}

.btn--outline-grey {
    border: 1px solid #DCDCDC;
    background-color: #F9F9F9;
    color: rgba(6, 12, 50, 0.6);
}
.btn--outline-grey.disabled {
    background-color: #E4E4E4;
    border-color: transparent;
    pointer-events: none;
}

.btn--light-grey {
    border: 1px solid #EEEEEE;
}

.btn--40 {
    height: 40px;
    width: 40px;
    min-width: 40px;
}

.bg-none::after {
    content: none;
}

.border-b {
    border-bottom: 1px solid #EEEEEE;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-50 {
    opacity: 0.5;
}

.h-30 {
    height: 30px;
}

.w-44 {
    width: 44px;
}

.fs-32 {
    font-size: 32px;
    line-height: normal;
}

.gap-4 {
    gap: 4px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.card-shadow {
    box-shadow: 0px 7px 12px 0px #5B68710F, 0px 0px 1px 0px #1A202452;
    border-radius: 16px;
}

.pricing-wrapper {
    overflow: auto;
    width: 100%;
}

.pricing {
    font-family: var(--fotnFamilyRaleway);
    margin-bottom: 80px;
    margin-top: 20px;
    min-width: 1200px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
}

.pricing-row--drop {
    position: relative;
    z-index: 1;
    box-shadow: 0px 4px 8px 0px #5B68711F, 0px 0px 1px 0px #1A202452;

}

.pricing-row:not(:last-child) {
    border-bottom: 1px solid #EEEEEE;
}

.pricing-col {
    display: flex;
    flex-direction: column;
    width: calc(100% / 3);
    flex: 0 0 calc(100% / 3);
}

.pricing-block {
    display: flex;
    width: 100%;
    min-height: 64px;
    padding: 18px 32px;
    flex: auto;
}

.pricing-block.justify-between {
    justify-content: space-between;
}

.pricing-col .pricing-col__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: left;
}

.pricing-row:nth-child(1n) {
    background-color: #fff;
}

.pricing-row:nth-child(2n) {
    background-color: #F9F9F9;
}

.pricing-row .pricing-col:not(:last-child) {
    border-right: 1px solid #EEEEEE;
}

.card-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
    font-family: var(--fotnFamilyRaleway);
    flex: auto;
}

.card-pricing .card__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-pricing .card__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.card-pricing .card__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    opacity: 0.7;
}

.card__price-block {
    font-size: 16px;
    font-weight: 500;
    line-height: 18.78px;
    text-align: center;
}

.card__price {
    font-size: 36px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
}

.card-pricing .btn {
    margin-top: auto;
}

.text-gradient {
    background: -webkit-linear-gradient(92.31deg, #8C49F7 0%, #6C53FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.switch {
    position: relative;
    display: inline-block;
    --switch-width: 48px;
    --switch-height: 28px;
    --switch-offset: 2px;
    width: var(--switch-width);
    height: var(--switch-height);
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(92.31deg, #8C49F7 0%, #6C53FF 100%);
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 0px 1px 1.2000000476837158px 0px #00000052 inset, 0px -1px 1px 0px #FFFFFF3D inset;
}

.slider:before {
    position: absolute;
    content: "";
    --slider-height: calc((var(--switch-height) - var(--switch-offset) * 2));
    --slider-width: calc((var(--switch-width) / 2));
    width: var(--slider-width);
    height: var(--slider-height);
    top: var(--switch-offset);
    left: var(--switch-offset);
    bottom: var(--switch-offset);
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    --transform: calc(var(--slider-width) - var(--switch-offset) * 2);
}

input:checked+.slider {
    background: linear-gradient(92.31deg, #8C49F7 0%, #6C53FF 100%);
}

input:checked+.slider:before {
    -webkit-transform: translateX(var(--transform));
    -ms-transform: translateX(var(--transform));
    transform: translateX(var(--transform));
}

.slider.round {
    border-radius: 360px;
}

.slider.round:before {
    border-radius: 360px;
}

.accordion {
    cursor: pointer;
    transition: 0.4s;
    flex: none;
}

.accordion.active .accordion__arrow {
    transform: rotateX(180deg);
}

.panel {
    max-height: 0;
    min-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.line-through {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.line-through::after {
    content: "";
    border: 1px dashed #DCDCDC;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    right: 0;
}

.line-through__inner {
    display: flex;
    padding: 0 16px;
    background: #fff;
    z-index: 1;
}

.bg--sec .line-through__inner {
    background-color: rgba(249, 249, 249, 1);
}

.doc-editor-container {
    max-width: 892px;
}

.doc-editor-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doc-editor-wrapper .doc-editor__remove {
    position: absolute;
    top: 0;
    right: calc((36px + 16px) * -1);
}

.doc-editor {
    background-color: #fff;
    border: 1px solid #D2D2D2;
    width: 100%;
    aspect-ratio: 0.7;
}

@media (max-width: 1200px) {
    .doc-editor-wrapper .doc-editor__remove {
        position: static;
        margin-left: auto;
    }
}