.skyciv-mt-section {
    /* background: #ffffff; */
    padding: 80px 0px;
    box-sizing: border-box;
    font-family: "Manrope", system-ui, -apple-system, sans-serif;
}

.skyciv-mt {
    position: relative;
    width: 100%;
    /* max-width: 1180px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 56px 30px;
    /* border-radius: 26px; */
    /* background: #fff; */
    overflow: hidden;
    box-sizing: border-box;
    color: #0a1024;
}
/* 
.skyciv-mt::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(#e7eaf2 1px, transparent 1px), linear-gradient(90deg, #e7eaf2 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: linear-gradient(90deg, transparent 55%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 55%, #000 100%);
    opacity: .7;
} */

.skyciv-mt>* {
    position: relative;
    z-index: 1;
}

.skyciv-mt-label {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -.01em;
    color: #000933;
    margin: 0;
}

.skyciv-mt-picker {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
}

.skyciv-mt-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(#0000, #000 20%, #000 80%, #0000);
    mask-image: linear-gradient(#0000, #000 20%, #000 80%, #0000);
}

.skyciv-mt-indicator {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 36px;
    border-radius: 4px;
    background: #1b4dff;
    z-index: 2;
}

.skyciv-mt-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transition: transform .42s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
    outline: none;
}

.skyciv-mt-track:not(.is-ready) {
    opacity: 0;
}

.skyciv-mt-track.is-ready {
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .3s;
}

.skyciv-mt-item {
    position: absolute;
    left: 0;
    right: 0;
    height: 64px;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -.02em;
    color: #c3c9d8;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    transition: color .35s, opacity .35s, transform .42s cubic-bezier(.22, 1, .36, 1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: inline-block;
}

.skyciv-mt-item.is-near {
    color: #9aa3b8;
}

.skyciv-mt-item.is-active {
    color: #0a1024;
}

.skyciv-mt-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    justify-self: flex-end;
}

.skyciv-mt-nav {
    display: none;
    gap: 10px;
}

.skyciv-mt-chev {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #e7eaf2;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1024;
    font-size: 14px;
    line-height: 1;
    transition: border-color .15s, color .15s, transform .1s;
}

.skyciv-mt-chev:hover {
    border-color: #1b4dff;
    color: #1b4dff;
}

.skyciv-mt-chev:active {
    transform: scale(.92);
}

.skyciv-mt-chev:disabled {
    opacity: .35;
    cursor: default;
    border-color: #e7eaf2;
    color: #c3c9d8;
}

.skyciv-mt-launch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    background: #1b4dff;
    color: #fff;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    /* box-shadow: 0 10px 24px -8px rgba(27, 77, 255, .6); */
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
}

.skyciv-mt-launch:hover {
    background: #1b4dff;
    /* transform: translateY(-2px); */
    /* box-shadow: 0 16px 30px -10px rgba(27, 77, 255, .7); */
    color: #fff;
}

.skyciv-mt-arrow {
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .skyciv-mt-section {
        padding: 48px 16px;
    }

    .skyciv-mt {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
        padding: 40px 22px;
    }

    .skyciv-mt::after {
        -webkit-mask-image: linear-gradient(#000, #0000 60%);
        mask-image: linear-gradient(#000, #0000 60%);
    }

    .skyciv-mt-indicator {
        left: 0;
        transform: translate(0, -50%);
        top: 50%;
    }

    .skyciv-mt-item {
        justify-content: flex-start;
        padding-left: 20px;
        display: inline-flex;
    }

    .skyciv-mt-controls {
        flex-direction: column-reverse;
        justify-self: center;
    }
}