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

    ------------
    Version 0.1.23

*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 0;
}

::-webkit-scrollbar-thumb {
    background-color: var(--default);
    border-radius: 0;
}

/* Website style */
* {
    padding: 0;
    margin: 0;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    overflow-x: hidden;
    background-color: var(--background);
    color: var(--text);

    background-image: url('../img/background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 2.5% 17% 2%;
}

@media only screen and (max-width: 1100px) {
    body {
        padding: 2.5% 6% 2%;
    }
}

a{
    text-decoration: none;
}

/* Logotype Section */
.logotype__section{
    display: flex;
    align-items: center;
    gap: 35px;
}

.logotype__section--logo{
    width: 90px;
}

.logotype__section--name{
    text-transform: uppercase;
    font-size: 28px;
}

@media only screen and (max-width: 1100px) {
    .logotype__section{
        gap: 20px;
    }

    .logotype__section--logo{
        width: 60px;
    }

    .logotype__section--name{
        font-size: 20px;
    }
}

/* Navbar */
.navbar{
    background-color: var(--default);
    margin-top: 10px;
    padding: 30px;
    border-radius: var(--border-radius);
}

.navbar--links, .navbar--links ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navbar--links li{
    list-style: none;
}

.navbar--links a{
    color: var(--text);
    padding: 10px 20px;
    transition: .3s;
}

.navbar--links a:hover{
    color: var(--text);
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    transition: .3s;
}

.navbar--toggle{
    display: none;
}

@media only screen and (max-width: 1100px) {
    .navbar--toggle{
        display: block;
    }

    rect {
        fill: var(--text);
    }

    .navbar--links{
        display: none;
        margin-top: 20px;
        flex-direction: column;
    }

    .navbar--links ul{
        flex-direction: column;
    }

    .navbar--links li{
        padding: 5px 0;
    }

    .navbar--links a{
        padding: 0;
    }

    .navbar--links--active{
        display: block;
    }
}

/* Grid */
.col--default{
    grid-area: main;
}

.col--side{
    grid-area: sidebar;
}

.theme--grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 17px;
    grid-template-areas:
    "main main main sidebar sidebar sidebar sidebar";
}

.theme--grid__pay {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 17px;
    grid-template-areas:
    "sidebar main main main main";
}

.row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2%;
}

.col-lg-6{
    width: 49%;
}

.col-lg-3{
    width: 23%;
}

@media only screen and (max-width: 1800px) {
    .col-lg-3{
        width: 31.33%;
    }
}

@media only screen and (max-width: 1400px) {
    .col-lg-3{
        width: 49%;
    }
}

@media only screen and (max-width: 1100px) {
    .theme--grid {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
    "main"
    "sidebar";
    }

    .theme--grid__pay {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas:
    "sidebar"
    "main";
    }

    .col-lg-3{
        width: 100%;
    }

    .col-lg-6{
        width: 100%;
    }
}


/* Cards */
.card{
    background-color: var(--card);
    border-radius: var(--border-radius);
    padding: 28px 32px;
    margin-bottom: 15px;
}

.card--shop{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.card--shop__product, .card--shop__code{
    background: var(--card);
    text-align: center;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: var(--border-radius);
    box-shadow: 0px 0px 24px 0px var(--shadow);
}

.card--shop__code{
    margin-top: 10px;
    margin-bottom: 10px;
}

.card--shop__product__img{
    width: 120px;
}

.card--shop__product__title{
    margin-bottom: 20px;
}

.card--shop__product__price{
    margin-bottom: 20px;
    margin-top: -10px;
    opacity: 0.7;
    font-weight: 500;
}

.card--shop__product__btn{
    color: var(--text);
    text-transform: uppercase;
    font-size: 13px;
    padding:  14px 20px;
    background-color: var(--card);
    border-radius: var(--border-radius);
    transition: .3s;
}

.card--shop__product__btn:hover{
    background-color: var(--shadow);
    transition: .3s;
}

@media only screen and (max-width: 1600px) {
    .card--shop{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 1100px) {
    .card--shop{
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Status */
.status__card--title{
    margin-bottom: 10px;
}

.status__card--info{
    display: flex;
    align-items: center;
    gap: 10px;
}

.status__blob{
    width: 17px;
    height: 17px;
    background-color: #ed4242;
    border-radius: 20px;
}

.status__blob[type="success"]{
    background-color: #27a23e;
}

/* Last buyers */
.card--buyers{
    padding: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.card--buyers img{
    width: 45px;
    border-radius: var(--border-radius);
    margin: 10px;
}

.card--buyers--buy{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.card--buyers--buy__info--product{
    font-weight: 500;
}

.card--buyers--buy__info__top{
    color: var(--default);
}

/* TOS */
.card--tos p{
    font-weight: 400!important;
    font-size: 14px;
}

/* Voucher */
.card--voucher__title{
    margin-bottom: 20px;
}

.card--voucher__btn{
    margin-top: 30px;
    cursor: pointer;
    color: var(--text);
    text-transform: uppercase;
    font-size: 13px;
    padding:  14px 20px;
    border-radius: var(--border-radius);
    transition: .3s;
    border: none;
    outline: none;
    background-color: var(--shadow);
    font-family: 'Montserrat', sans-serif;
}

.card--voucher__btn:hover{
    transition: .3s;
    opacity: 0.7;
}

/* Status */
.card--status__title{
    margin-bottom: 20px;
}

.card--status__info{
    margin-bottom: 10px;
    font-weight: 400;
}

.card--status__info p:nth-child(2){
    margin-bottom: 30px;
}

.card--status__btn{

    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    text-transform: uppercase;
    font-size: 13px;
    padding:  14px 20px;
    border-radius: var(--border-radius);
    transition: .3s;
    background-color: var(--shadow);
}

/* Pay */
.card--pay__title{
    margin-bottom: 20px;
}

.card--shop__product__description{
    font-weight: 400;
    font-size: 14px;
    height: 40px;
    overflow: auto;
    padding: 10px 30px;
    margin-bottom: 50px;
}

.card--pay .card--shop__product__btn{
    background-color: var(--shadow);
}

.card--pay .card--shop__product__btn:hover{
    opacity: 0.7;
    transition: .3s;
}

.card--pay li{
    margin: 10px 0;
}

.card--shop__product__info{
    margin-top: 20px;
    font-weight: 400;
    opacity: 0.5;
}

.card--code__btn{
    margin-top: 10px;
    cursor: pointer;
    color: var(--text);
    text-transform: uppercase;
    font-size: 13px;
    padding:  14px 20px;
    border-radius: var(--border-radius);
    transition: .3s;
    border: none;
    outline: none;
    background-color: var(--shadow);
    font-family: 'Montserrat', sans-serif;
}

.card--code__btn:hover{
    transition: .3s;
    opacity: 0.7;
}

.input__slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 25px;
    background: var(--input);
    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: var(--default);
    cursor: pointer;
}

.input__slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--default);
    cursor: pointer;
}

.card--pay__slider{
    margin-top: 50px;
}

.card--pay__method{
    margin-top: 50px;
}

.method__card{
    margin-right: 20px;
    margin-bottom: 15px;
    width: calc(100% - 60px);
    height: 50px;
    background-color: var(--shadow);
    border-radius: 12px;
    padding: 10px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.method__card__text{
    color: var(--text);
    font-size: 14px;
}

.card--pay__form{
    margin-top: 50px;
}

.pay__checkbox{
    margin-top: 20px;
    display: flex;
    align-items: center;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 40px;
}

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

input[type=checkbox]:checked, input[type=radio]:checked {
    background-color: var(--default);
    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: var(--input);
    outline: 0;

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

@media only screen and (max-width: 1100px) {
}

/* Target */
.target{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.target h4{
    color: #8b8b92;
    margin-bottom: 15px;
    font-weight: 500;
}

.target__background{
    background-color: var(--shadow);
    height: 18px;
    width: 100%;
    border-radius: 12px;
}

.target__line{
    background-color: var(--default);
    height: 18px;
    border-radius: 12px;
    font-size: 10px;
    color: var(--text);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Input */
.input{
    background-color: transparent;
    outline: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    color: var(--text);
    height: 50px;
    border-bottom: 2px solid var(--input);
    margin-bottom: 10px;
}

/* Alert */
.alert{
    background-color: var(--card);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
}

.alert--pay{
    background: var(--input);
    font-weight: 400;
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 35px;
}

/* Badge */
.badge{
    margin-bottom: 30px;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 12px;
}

/* Color Info */

*[type="danger"]{
    background-color: #de2828;
}

*[type="success"]{
    background-color: #1e9928;
}

*[type="info"]{
    background-color: #3570ac;
}

*[type="warning"]{
    background-color: #e59010;
}

/* Footer */
.footer{
    margin: 40px 0;
    display: flex;
    flex-direction: column;
}

.spaceis{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0.5;
    transition: .3s;
    cursor: pointer;
}

.spaceis:hover{
    opacity: 1;
    transition: .3s;
}

.spaceis__img{
    width: 35px;
}

.spaceis__info a{
    color: var(--default);
}