/* PAY */
hr{
    margin-top: 80px;
    border-top: 0.8px solid;
    border-color: #222231;
    margin-bottom: 60px;
}

.pay__info{
    position: sticky;
    top: 50px;
    margin-bottom: 60px;
}

.form__code{
    margin-top: 70px;
    width: 80%;
}

.input__section{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    text-align: left;
    margin-bottom: 50px;
    position: relative;
}

.input__outline__label{
    color: #8B8B92;
}

.pay__info__img{
    max-width: 250px;
    margin-bottom: 20px;
}

.input__outline{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #4A4A61;
    height: 50px;
    outline: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.pay__info__title{
    font-size: 42px;
    color: white;
    margin-bottom: 10px;
}

.code{
    position: absolute;
    background-color: transparent;
    border: none;
    right: 10px;
    bottom: 20px;
    cursor: pointer;
    transition: .3s;
}

svg:hover{
    opacity: 0.5;
    transition: .3s;
}

.pay__info__description{
    color: #8B8B92;
    font-size: 14px;
    width: 80%;
    margin-bottom: 110px;
}

.pay__card{
    background-color: #151521;
    border-radius: 8px;
    padding: 45px 45px;
    position: relative;
    margin-bottom: 35px;
    transition: .1s;
}

.pay__card__category{
    color: white;
    margin-bottom: 50px;
    margin-top: 70px;
}

.pay__card__category:nth-child(1){
    margin-top: 0px;
}

.input__slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 25px;  
    background: #11111A;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin-top: 30px;
}

.input__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; 
    background: #8383D2;
    cursor: pointer;
}

.input__slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #8383D2;
    cursor: pointer;
}

.pay__method--box{
    display: flex;
    flex-direction: row;
}

.pay__method--box{
    width: 100%;
    overflow-x: scroll;
}

.method__card{
    margin-right: 20px;
    margin-bottom: 15px;
    width: 200px;
    height: 50px;
    background-color: #11111A;
    border-radius: 12px;
    padding: 10px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.method__card__text{
    color: #8B8B92;
    font-size: 14px;
}

input[type=checkbox]:checked, input[type=radio]:checked {
    background-color: #8383D2;
    text-align: center;
    line-height: 15px;
}

input[type=checkbox], input[type=radio] {
    width: 21px;
    height: 21px;
    -webkit-appearance: none;
    border: 0;
    -moz-appearance: none;
    appearance: none;
    margin-right: 10px;
    background-color: #27293B;
    outline: 0;

    border-radius: 20px;
    display: inline-block;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.pay__checkbox{
    margin-top: 10px;
    display: flex;
    align-items: center;
    color: white;
    font-size: 14px;
}

.pay__checkbox label{
    margin-left: 7px;
}

.pay__price{
    margin-top: 60px;
    font-size: x-large;
    font-weight: 700;
    color: white;
}

.pay__button{
    background-color: #11111A;
    color: #8B8B92;
    padding: 25px 65px;
    margin-top: 20px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: .1s;
    cursor: pointer;
}

.pay__button:hover{
    opacity: 0.9;
    transition: .1s;
}

@media only screen and (max-width: 1100px) {
    .pay__info{
        z-index: 0;
    }
    
    .form__code{
        width: 90%;
    }

    .navbar__nav--active{
        z-index: 2;
    }

}