

/* Start:/local/components/rtkit/step_form/templates/.default/style.css?17751195597392*/
.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: #7700FF;
}

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

.checkbox-wrapper {
    display: flex;
    gap: 16px;
    align-items: start;
    cursor: pointer;
    color: #101828;
}

.checkbox-wrapper a {
    color: #7700FF;
}

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


input.checkbox-custom {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: none;
    cursor: pointer;
    position: relative;
    border: 2px solid;
    border-color: #B8B9C0 !important;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    margin-top: 2px;
}

.checkbox-wrapper:hover .checkbox-custom {
    border-color: #7700FF !important;
    background-color: #7700FF0D;
}

.checkbox-wrapper:active .checkbox-custom {
    background-color: #7700FF1A;
}

input.checkbox-custom:checked {
    border-color: #7700FF !important;
}

input.checkbox-custom:checked::after {
    content: "";
    background: url(/local/templates/xtech_landing/images/icons/check.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 9px;
    margin-left: 2px;
    position: absolute;
    top: 4px;
}

.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.next:active {
    background-color: #3F028C;;
}

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

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

.form-button.back:active {
    background-color: #7700FF1A;
}

.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;
}


/* Overlay */
.success-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* Modal window */
.success-modal {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    background: #ffffff;
    max-width: 480px;
    width: 100%;
    border-radius: 14px;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
    animation: modalFadeIn 0.25s ease;
}

/* Close button */
.success-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    transition: 0.2s;
}

.success-modal__close:hover {
    color: #000;
}

/* Button */
.success-modal__btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background: #6c2cff;
    color: #fff;
    transition: 0.2s ease;
    width: fit-content;
}

.success-modal__btn:hover {
    opacity: 0.9;
}

/*dropdown*/
.step-form-field {
    max-width: 600px;
    font-family: Arial;
}

.drop-zone {
    border: 2px dashed #d6d6d6;
    border-radius: 8px;
    padding: 20px;
    background: #fafafa;
    cursor: pointer;
}

.drop-zone.dragover {
    border-color: #7b3ff2;
    background: #f4f0ff;
}

.drop-text {
    color: #666;
    font-size: 14px;
}

.upload-item {
    margin-top: 12px;
    background: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.upload-bar {
    height: 32px;
    width: 0%;
    background: #c8ccd1;
}

.upload-content {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.remove-btn {
    cursor: pointer;
    font-size: 13px;
}

.remove-btn:hover {
    color: red;
}

.error-message {
    color: red;
    margin-top: 8px;
}
/* Animation */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End */


/* Start:/local/components/rtkit/news/templates/.default/style.css?17717604081195*/
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(354px, 1fr));
    gap: 20px;
}


.news-card-img {
    border-radius: var(--rtk-border-radius);
    height: 260px;
    width: 100%;
    object-fit: cover;
    background-color: #E7E7E9;
}

.news-date {
    color: #B8B9C0;
}

.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;
}

.news .card-body h4 {
    max-width: 427px;
}

.news .card-body {
    gap: 20px;
    padding: 20px 20px 20px 20px;
    height: 100%;
}

.news .card {
    gap: 20px;
}

.demo_day.page .card {
    gap: 20px;
    justify-content: space-between;
}

.demo_day.page .card-body h4 {
    max-width: 427px;
}

.demo_day.page .card-body {
    gap: 20px;
    padding: 0 20px 20px 20px;
}
/* End */
/* /local/components/rtkit/step_form/templates/.default/style.css?17751195597392 */
/* /local/components/rtkit/news/templates/.default/style.css?17717604081195 */
