/*  -----------------------------------------------------------------------------
 BUTTONS
 ----------------------------------------------------------------------------- */
.page .btn {
    width: 100%;
    min-height: 43px;
    margin-bottom: 24px;
    padding: 10px 20px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: none;
    font-family: 'Poppins-Bold';
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.page .btn:focus {
    outline: none;
}

/* primary */
.page .btn.btn--primary {
    background: #40BFFF;
}

.page .btn.btn--primary:hover,
.page .btn.btn--primary:focus {
    background: #38AACE;
    color: #ffffff;
}

/* secondary */
.page .btn.btn--secondary {
    background: #5C61F4;
}

.page .btn.btn--secondary:hover,
.page .btn.btn--secondary:focus {
    background: #4F5DC1;
    color: #ffffff;
}

/* tertiary */
.page .btn.btn--tertiary {
    background: #53D1B6;
}

.page .btn.btn--tertiary:hover,
.page .btn.btn--tertiary:focus {
    background: #4DC1A5;
    color: #ffffff;
}

/* quaternary */
.page .btn.btn--quaternary {
    background: #FFC833;
}

.page .btn.btn--quaternary:hover,
.page .btn.btn--quaternary:focus {
    background: #F2B327;
    color: #ffffff;
}

/* add */
.page .btn.btn--add {
    background: #EDEDED;
    color: #2E3549;
}

.page .btn.btn--add::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../../img/plus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: calc(50% - 8px);
    left: 26px;
}

.page .btn.btn--add:hover,
.page .btn.btn--add:focus {
    background: #EDEDED;
    color: #2E3549;
}

.page .btn.btn--cart::before {
    content: '';
    width: 21px;
    height: 21px;
    background-image: url(../../img/cart.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 11px;
    left: 12px;
}

.page .btn.btn--budget::before {
    content: '';
    width: 21px;
    height: 21px;
    background-image: url(../../img/budget.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 10px;
    left: 14px;
}

/* -----------------------------------------------------------------------------
MEDIA QUERIES
----------------------------------------------------------------------------- */
@media (max-width: 990px) {
    /* -----------------------------------------------------------------------------
    BUTTONS
    ----------------------------------------------------------------------------- */
    .page .btn {
        font-size: 13px;
        line-height: 16px;
        letter-spacing: 0.50px;
    }

}
