/*===================================== 
YOU CAN WRIGHT CUSTOME CSS 
======================================*/

.overlay-loader {
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.calc-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calc-swap-icon i {
    color: rgba(0, 0, 0, 0.3);
    font-size: 24px;
    margin: 0 20px;
}

.calc-currency,
.calc-crypto {
    position: relative;
}

.calc-currency input,
.calc-crypto input {
    height: 60px;
    border-radius: 5px;
    padding: 15px 100px 15px 15px;
    font-size: 24px;
    font-weight: 600;
    color: black;
    outline-color: #d1337d;
}

.calc-currency button,
.calc-crypto button {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    background-color: #d1337d;
    border-radius: 5px;
    border: none;
    color: #fff;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 600;
}

.currency-list {
    position: absolute;
    right: 5px;
    top: 56px;
    background-color: #d1337d;
    color: #fff;
    width: 90px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 5px;
    z-index: 1;
}

.currency-visibility {
    display: none;
}

.currency-items {
    padding: 10px;
    cursor: pointer;
}

.currency-items:hover {
    background: rgba(0, 0, 0, 0.3);
}

.calc-currency button:hover,
.calc-crypto button:hover {
    background-color: #d1337d;
}

.calc-btn-text {
    margin-right: 10px;
}

.buy-btc-btn {
    background: #d1337d;
    height: 60px;
    color: #fff;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    padding: 15px;
    margin-left: 20px;
}

.buy-btc-btn:hover {
    background: #d1337d;
}

@media(max-width: 900px) {
    .calc-container {
        display: block;
    }
    .calc-currency input,
    .calc-crypto input {
        width: 100%;
    }
    .calc-swap-icon {
        text-align: center;
        margin: 20px;
        transform: rotate(90deg);
    }
    .buy-btc-btn {
        width: 100%;
        margin: 20px 0;
    }
}

body,
.page-content {
    background: #1a2035;
}