.buy-container {
    width: 60%;
    margin: auto;
    border-radius: 20px;
    background: rgb(30, 30, 30);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    min-height: 60vh;
    margin-bottom: 20px;
    padding: 15px;
}

.buy-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px;
    height: 100%;
    width: 50%;
    gap: 30px;
    min-height: 60vh;
}

.buy-container .text {
    border-right: 1px solid rgb(70, 70, 70);
}

.buy-note-text {
    font-size: 12px;
    color: rgb(100, 100, 100);
}

.buy-section-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-self: flex-start;
    gap: 1px;
}

.buy-head {
    font-size: 16px;
    font-weight: 500;
    color: rgb(100, 100, 100);
    margin-bottom: 15px;
}

.buy-item-head {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.buy-item-subhead,
.buy-item-eta {
    font-size: 17px;
    font-weight: 600;
    color: gray;
    margin-bottom: 10px;
}

.buy-item-text {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(220, 20, 60, 0.1);
    color: crimson;
    margin-bottom: 20px;
}

.buy-item-price {
    font-size: 15px;
    color: rgb(140, 140, 140);
    margin-bottom: 20px;
}

.buy-item-price span,
.buy-item-price i {
    color: white;
    font-size: 22px;
}

.buy-item-price i {
    color: orange;
}

.buy-item-input {
    width: 90%;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 500;
    background: rgb(10, 10, 10);
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    outline: none;
    color: white;
    border: 1px solid rgb(10, 10, 10);
}

.buy-item-input:focus {
    border: 1px solid crimson;
}

.buy-item-helper {
    font-size: 15px;
    color: gray;
    margin-bottom: 5px;
}

.buy-item-helper span {
    color: crimson;
    font-size: 16px;
}

.buy-section-top {
    width: 100%;
}

.buy-action-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(20, 20, 20);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    gap: 10px;
    user-select: none;
}

.buy-action-row h4 {
    font-size: 15px;
    font-weight: 600;
    color: gray;
}

.buy-action-row select {
    width: 100%;
    font-size: 14px;
    font-family: "Poppins";
    font-weight: 500;
    background: rgb(10, 10, 10);
    border: none;
    border-radius: 10px;
    padding: 8px 12px;
    outline: none;
    color: white;
    border: 1px solid rgb(10, 10, 10);
}

.buy-action-row select:focus {
    border: 1px solid crimson;
}

.buy-connect-wallet {
    width: 100%;
    border-radius: 10px;
    padding: 10px 15px;
    background: orange;
    font-size: 15px;
    text-align: center;
    color: black;
    font-weight: 700;
    cursor: pointer;
}

.buy-connect-wallet:hover {
    background: rgb(181, 118, 0);
}

.buy-connect-wallet:active {
    transform: scale(0.96);
}

.buy-button {
    width: calc(100% - 20px);
    border-radius: 10px;
    padding: 10px 15px;
    background: crimson;
    font-size: 15px;
    text-align: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin: auto;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;

}



#buy-button {
    display: none;
}


#buy-button:hover {
    background: rgb(145, 1, 29);
}

#buy-button:active {
    transform: scale(0.96);
}

#buy-disabled {
    background: rgb(40, 40, 40);
    color: rgb(80, 80, 80);
    cursor: not-allowed;
}

#buy-loading {
    background: rgb(40, 40, 40);
    color: rgb(80, 80, 80);
    cursor: not-allowed;
    display: none;
}

#buy-loader {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid crimson;
    border-top: 3px solid rgb(40, 40, 40);
    animation: loader 0.5s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0);
    }
}

.secure-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    user-select: none;
}

.secure-text img {
    width: 60px;
    height: auto;
    -webkit-user-drag: none;
    opacity: 0.35;
}

.secure-text p {
    font-size: 11px;
    color: rgb(150, 150, 150);
}


@media (max-width: 1100px) {
    .buy-container {
        width: 95%;
    }
}

@media (max-width: 650px) {
    .buy-container {
        flex-direction: column;
        min-height: auto;
        margin-top: 0px;
        margin-bottom: 40px;
        width: 100%;
        background: rgb(15, 15, 15);
        padding: 0;
    }

    .buy-container .text {
        border: none;
        border-bottom: 1px solid rgb(70, 70, 70);
    }

    .buy-section {
        width: 100%;
        min-height: auto;
        padding: 10px;
    }

    .buy-note-text {
        text-align: center;
    }
}