/* ----------------- */
/* --- Input Box --- */
/* ----------------- */
.inputBox {
    margin-bottom: 20px;
    margin-top: 30px;
    position: relative;
}

.inputBox input {
    width: 100%;
    resize: none;
    padding: 11px 16px;
    font-size: 20px;
    font-weight: 400;
    color: white;
    background-color: unset;
    border: 2px solid rgba(223, 223, 223, 0.35);
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
    z-index: 2;
    position: relative;
    transition: 200ms;
}

.inputBox .label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(18px);
    transition: 250ms;
    padding: 0 0;
    background-color: #1f252e;
    z-index: 2;
    pointer-events: none;
    font-size: 18px;
}

.inputBox input:focus {
    border-color: rgb(104, 160, 197);
}



.inputBox input:focus ~ .label,
.inputBox input:valid ~ .label,
.inputBox textarea:focus ~ .label,
.inputBox textarea:valid ~ .label {
    top: 0;
	transform: translateY(-8px) translateX(20px);
	font-size: 14px;
    padding: 0 7px;
}

.inputBox .rightIcon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}




.bonusCalcWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.bonusCalcWrapper p {
    line-height: 25px;
    font-size: 20px;
}

.bonusCalc {
    background-color: #1f252e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.253);
    width: 500px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;

    margin-left: 100px;
    flex-shrink: 0;
}

.bonusCalc .fa-calculator {
    float: right;
    color: rgba(255, 255, 255, 0.4);
}

.bonusCalc .lowDepositAmountWarning {
    display: none;
    margin-top: 15px;
    font-weight: bold;
    color: rgb(255, 185, 81);
}

.bonusCalc .lowDepositAmountWarning.show {
    display: block;
}


.bonusCalc .title {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.bonusCalc .calcResults {
    font-size: 20px;
    font-weight: 400;
    margin-top: 50px;
}

.bonusCalc .calcResults .line {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bonusCalc .calcResults .line:last-child {
    margin-bottom: 0px;
    padding-bottom: 10px;
}

.bonusCalc .calcResults .line span:nth-child(2) {
    float: right;
}

.spacerPageTop {
    padding-top: 80px;
}

@media (max-width: 950px) {
    .spacerPageTop {
        padding-top: 0px;
    }
}

@media (max-width: 1050px) {
    .bonusCalcWrapper {
        flex-direction: column;
        justify-content: center;
    }

    .bonusCalcWrapper p {
        font-size: 18px;
    }

    .bonusCalc {
        padding: 30px;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;

        max-width: 100%;
    }

    .bonusCalc .calcResults .line {
        font-size: 18px;
    }
}


/* Crypto Guide link */
.features .cryptoGuildeLink {
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    padding: 15px;
    display: block;
    color: white;
    text-decoration: none;
    margin-top: 10px;
}

.features .cryptoGuildeLink .innerHeader {
    margin-bottom: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.features .cryptoGuildeLink .innerHeader i {
    color: gold;
    font-size: 21px;
    margin-right: 7px;
}

.features .cryptoGuildeLink .bottomText {}

@media (max-width: 950px) {
    .features .cryptoGuildeLink {
        padding: 15px;
        font-size: 15px;
    }    
}