

/* Start:/local/components/rtkit/assets/templates/.default/style.css?17690024283484*/
.assets .cards-wrapper {
    display: flex;
    gap: 20px;
}

.assets .cards-wrapper .card {
    width: calc((1075px - (20px * 2)) / 3);
    height: 378px;
    gap: 20px;
    border: #7700FF 1px solid;
}

.assets .cards-wrapper .card-body {
    padding: 0 20px 0 20px;
    gap: 20px;
}

.assets .cards-wrapper .card-img {
    bottom: 0;
}

.landing-block.landing-block-container.assets {
    display: flex;
    flex-direction: row;
    justify-content: normal;
    align-items: normal;
    gap: 0;
}

.assets .landing-block-head-title {
    max-width: 100%;
}

.details-link, .details-link:hover {
    text-decoration: underline;
}

.assets .landing-block-head-title h2 {
    max-width: 90%;
}

.popup-window-overlay {
    background-color: #10182880;
}

.popup-window {
    border-radius: 24px;
    padding: 60px;
    font: inherit;
    transition: none;
}

.modal-content {
    max-width: 100%;
    display: grid;
    gap: 16px 32px;
    grid-template-columns: 305px 1fr;
    grid-template-areas: 
        "image title"
        "image subtitle"
        "image text"
        "image url";
    font-size: 14px;
}

.modal-title {
    grid-area: title;
}

.modal-subtitle {
    grid-area: subtitle;
}

.modal-image {
    grid-area: image;
    width: 100%;
    height: 202px;
    border-radius: 16px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text {
    grid-area: text;
}

.modal-url {
    grid-area: url;
}

.detail-paragraph {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-paragraph ul {
    padding-left: 30px;
}

.detail-subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.portfolio-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}


.filter-btn {
    cursor: pointer;
    font: inherit;
    color: #101828;
    border-radius: 24px;
    padding: 12px 24px;
    background-color: #1018280D;
    font-weight: 500;
    border: none;
}

.filter-btn:hover {
    color: #7700FF;
}

.filter-btn.active {
    background-color: #7700FF;
    color: #fff;
    box-shadow: 0px 2px 4px 0px #1C293D1F;
    box-shadow: 0px 0px 1px 0px #1C293D33;
}

.assets .landing-block-head {
    flex-direction: column;
    align-items: start;
}

/**/
.assets-page .card-footer.details-link {
    display: none;
}

.assets-page .card {
    width: calc((1440px - (20px * 3)) / 4);
}

.assets-page .cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.assets-page .cards-wrapper .card {
    gap: 20px;
    border: #7700FF 1px solid;
}

.assets-page .cards-wrapper .card-body {
    padding: 0 20px 40px 20px;
    gap: 20px;
}

.assets-page .card-img {
    bottom: 0;
}

@media (max-width: 1366px) {
    .assets .card:nth-child(3) {
        display: none;
    }

    .popup-window {
        padding: 40px;
    }

    .modal-content {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "subtitle"
            "image" 
            "text"
            "url";
    }

    .modal-image {
        width: 100%;
        height: auto;
    }

    .main-way .landing-block-head-action {
        display: none;
    }

    .landing-block.landing-block-container.main-way {
        padding: 20px 0;
    }

    .landing-block.landing-block-container.main-way .landing-block-head-title {
        padding: 0 15px;
        width: 100%;
    }
}
/* End */


/* Start:/local/components/rtkit/step_form/templates/.default/style.css?17702125743883*/
.step-form-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 20px;
    margin-bottom: 32px;
}

.step-form-header-step-title {
    font-weight: 500;
}

.step-form-header-step.active .step-form-header-step-title {
    color: #7700FF;
}

.step-form-header-step.active .step-form-header-step-subtitle {
    color: #101828;
}

.step-form-body {
    position: relative;
    height: 760px;
}

.step-form-body-step {
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.step-form-body-step h4 {
    margin-bottom: 20px;
}

.step-form-body-step.active {
    display: block;
}

.step-form-body-step-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-form-field {
    position: relative;
    height: 48px;
    width: 100%;
    padding: 20px 0 4px;
}

.step-form-field:has(textarea) {
    height: auto;
}

.step-form-field :not(label) {
    z-index: 100;
    position: relative;
    background-color: transparent;
}


.step-form-field .step-form-label {
    position: absolute;
    top: 12px;
    color: inherit;
    font-size: 16px;
    line-height: 24px;
}

.step-form-field:has(input:focus, textarea:focus) .step-form-label,
.step-form-field:has(input:not(:placeholder-shown), textarea:not(:placeholder-shown)) .step-form-label {
    top: 4px;
    font-size: 12px;
    line-height: 16px;
}

.step-form-field:has(input:focus, textarea:focus) .step-form-label {
    color: #7700FF;
}


.step-form-field:has(input[type="radio"]) {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
}

.step-form-value-label {
    display: flex;
    gap: 12px;
    cursor: pointer;
    color: #101828;
}

.step-form-value-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #B8B9C0;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.radio-custom:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-form-value-label input:checked + .radio-custom {
    border-color: #FF4F12;
}

.step-form-value-label input:checked + .radio-custom:after {
    background-color: #101828;
}

.step-form-body-step-actions {
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: 0;
}

.form-button {
    border-radius: 8px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
}

.form-button.next {
    background-color: #7700FF;
    color: #fff;
}

.form-button.next:hover {
    background-color: #5B09C0;;
}

.form-button.back {
    background-color: #fff;
    color: #101828;
    border: 2px solid #7700FF;
}

.form-button.back:hover {
    background-color: #FF4F120D;
}

.step-form-field .error-message {
    visibility: hidden;
    position: absolute;
    bottom: -24px;
    font-size: 12px;
    line-height: 16px;
    color: #EB3728;
}

#drop-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    max-width: 100%;
    height: 200px;
    padding: 1em;
    border: 1px solid #cccccc;
    border-radius: 4px;
    color: slategray;
    cursor: pointer;
}

#file-input {
    display: none;
}

#preview {
    width: 500px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    list-style: none;
    padding: 0;
}

#preview li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    margin: 0;
    width: 100%;
    height: 100px;
}

#preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.checkbox-wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    cursor: pointer;
}

.checkbox-wrapper a {
    color: #7700FF;
}
/* End */
/* /local/components/rtkit/assets/templates/.default/style.css?17690024283484 */
/* /local/components/rtkit/step_form/templates/.default/style.css?17702125743883 */
