/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.1.21

*/

/* Voucher */
.voucher{
    margin: 50px 0% 100px;
    background: var(--voucher);
    border-radius: 15px;
    padding: 20px 30px;
}

.voucher-page{
    margin: 50px 0% 150px;
}

.voucher-right{
    display: flex;
    justify-content: flex-end;
}

.voucher__info{
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    color: gray;
    font-weight: 500;
}

.voucher__info img{
    width: 35px;
}

.voucher__info p{
    margin-top: 15px;
}

.voucher__info--box{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--default);
    border-radius: 15px 15px 15px 0;
}

.button__section{
    margin-top: -8px;
}

.button__purple{
    padding: 19px 30px;
}

input{
    color: var(--white);
    min-width: 220px;
    background-color: var(--default);
    height: 60px;
    border-radius: 12px;
    outline: none;
    border: none;
    font-weight: 500;
    font-size: 15px;
    padding-left: 20px;
}

.voucher__input{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media only screen and (max-width: 1290px) {
    .voucher{
        margin: 50px 4% 100px;
        padding: 20px 30px 20px;
    }
}

@media only screen and (max-width: 991px) {
    .voucher{
        margin: 50px 4% -20px;
        padding: 20px 30px 50px;
    }

    .voucher-page{
        margin: 50px 4% 70px;
    }

    .voucher-right{
        display: flex;
        justify-content: flex-start;
    }

    .voucher__info--box{
        min-width: 60px;
    }

    .button__section{
        margin-top: 35px;
    }

    .input{
        display: flex;
        flex-direction: column;
    }

    input{
        min-width: 300px;
        margin-bottom: 5px;
    }

    .voucher__input{
        margin-bottom: 20px;
    }

}

@media only screen and (min-width: 835px){

    .voucher__input{
        margin-bottom: 0;
    }
    input{
        margin-bottom: 0;
    }

}