.card-containers {
    width: 100%;
    height: 100%;
	margin-top: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px
}

.card-containers div {
    width: 100%;
}

.card-categories {
    display: flex;
    width: 100%;
    gap: 16px;
}

.card-category {
    transition: all 0.3s ease;
    height: 308px;
    width: 100%;
    position: relative;
    border-radius: 8px;
    /* overflow: hidden; */
    /* -webkit-user-select: none; */
    /* user-select: none; */
    background: #171717;
}

.card-category-item {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.card-category:hover {
    transform: translateY(-15px);
    background: #1B1B1B;
}

.card-category-disabled:hover {
    transform: unset;
    background: #171717;
}

.card-input-ex svg {
    width: unset;
    height: unset;
}


.card-category-info {
    margin-top: 0.5rem;
    color: var(--text-default);
    font-weight: var(--font-weight-5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    font-size: 20.6px;
}

.card-category-back {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center
}

.card-category-back:hover svg {
    transform: scale(1.1)
}

.card-category-back img {
    position: absolute;
    transition: 3s;
}

.card-category-back svg {
    position: absolute;
    transition: .4s
}

.card-category-arrow {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.card-category-info div {
    width: fit-content;
    height: 33px
}

































.card-content-coin {
    display: flex;
}

.card-coin {
    width: 100%;
    background: #161616;
    height: auto;
    border-radius: 10px;
    padding: 24px;
    display: flex;
}

.card-coin-title {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.card-coin-title-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: -.02em;
    text-align: left;
    color: #888;
    max-width: 272px;
}

.card-coin-buy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.card-coin-input {
    display: flex;
    width: 100%;
}

.card-input-container {
    display: flex;
    width: 100%;
    gap: 4px;
    position: relative
}

.card-input-content {
    display: flex;
    align-items: center;
    background: var(--input-form);
    border-radius: 8px;
    padding: 0 0 0 17px
}

.card-input input {
    background: var(--input-form);
    width: 100%;
    height: 100%;
    border-radius: 8px;
    padding: 17px 17px 17px 8px;
    color: var(--text-default)
}

.card-input input t::placeholder {
    color: #888;
    opacity: 1
}

.card-input-ex {
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    pointer-events: none
}

.card-ex-svg {
    margin-top: 20px;
}

.card-button-coins {
    max-width: 84px!important;
    height: 48px;
    margin-top: auto;
    background: #65a5ff;
    border-radius: 0 8px 8px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg);
    font-size: 13px;
    font-weight: 600;
    line-height: 22.5px;
    letter-spacing: -.02em;
    transition: .2s ease;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none
}

.card-button-coins:hover {
    background: #4b75b1
}

.card-coin-info {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff
}

.card-coin-title-osn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -.02em;
    text-align: center;
    color: #fff
}

.card-input-border input {
    filter: unset !important;
    outline: unset !important;
    border-radius: 8px 0px 0 8px;
}

.card-input-back input {
    filter: unset !important;
    outline: unset !important;
}

.disabled-opaciti {
    opacity: .3;
    cursor: default;
}

.unavailable-title {
    gap: 0.25rem;
    display: flex;
    align-items: center;
}

.unavailable-title svg {
    width: 20px;
    height: 20px;
}

.disabled-opaciti img {
    filter: grayscale(100%);
}

.card-category-arrow svg{
    opacity: .6;
    fill: var(--text-custom);
    width: 20px;
    height: 20px;
}

@media (max-width: 1100px) {
    .card-coin {
        flex-direction: column;
        gap: 15px
    }

    .card-coin-input {
        flex-direction: column;
        gap: 16px
    }

    .card-button-coins {
        text-align: center;
        max-width: 100%!important;
    }

    .card-categories {
        max-width: 100%!important;
        overflow-x: auto;
        white-space: nowrap;
        scroll-behavior: smooth;
    }

    .card-category {
        flex-shrink: 0;
        border-radius: 8px;
        overflow: hidden;
    }

    .card-categories::-webkit-scrollbar {
        display: none
    }
}