/* Base styles */
.button {
    border-radius: 0.25rem;
    font-size: 13px;
    min-height: 40px;
    text-transform: uppercase;
}

/* Base styles */

/* Layout */
.layout {
    display: flex;
    flex-wrap: wrap;
    margin: 70px auto 3.125rem;
    max-width: 1200px;
}

.layout__title {
    font-size: 1.75rem;
}

/* Layout */

/* Form */
.giftCard-form ,
.rechargeCard-form {
    font-size: 14px;
}

.giftCard-form__title ,
.rechargeCard-form__title {
    font-size: 1.063rem;
}

.giftCard-form__input,
.rechargeCard-form__input,
.giftCard-form__textarea ,
.rechargeCard-form__textarea {
    max-width: 18.125rem;
    min-height: 31px;
    width: 100%;
}

.giftCard-form__field-container ,
.rechargeCard-form__field-container {
    margin-bottom: 12px !important;
}

.giftCard-form__field ,
.rechargeCard-form__field {
    border: 2px solid #333;
    border-radius: 0.25rem;
    min-height: 31px;
    padding: 5px 7px;
}

.giftCard-form__field:focus ,
.rechargeCard-form__field:focus {
    /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #cc2128; */
    /* box-shadow: 0 0 0 0.1rem #cc2128; */
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    outline: none;
}

.giftCard-form__amountList ,
.rechargeCard-form__amountList {
    display: flex;
    list-style: none;
}

.giftCard-form__amountList li ,
.rechargeCard-form__amountList li {
    margin-right: 4px;
}

.giftCard-form__amountList li:nth-child(n+4):nth-child(-n+6) ,
.rechargeCard-form__amountList li:nth-child(n+4):nth-child(-n+6) {
    display: none;
}

.giftCard-form__custom-amount ,
.rechargeCard-form__custom-amount {
    width: 6.875rem;
}

.giftCard-addToCart ,
.rechargeCard-addToCart {
    padding: 0.375rem 0.875rem;
    background-color: var(--color_company_1);
}

.button--primary-style {
    background-color: #141414;
    border-color: #141414;
    color: #ffffff;
}

.button--primary-style:hover {
    background-color: #2e2e2e;
    border-color: #2e2e2e;
}

.button--primary-style:focus {
    background: transparent;
    border-color: #141414;
    color: #141414;
    outline: none;
}

.owl-carousel .owl-item img {
    border-radius: 10px !important;
}

@media (min-width: 62rem) {
    .giftCard-form__amountList li:nth-child(n+4):nth-child(-n+6) 
,
.rechargeCard-form__amountList li:nth-child(n+4):nth-child(-n+6) {
        display: block;
    }
}

/* Form */

/* Gift Card */
.giftCard ,
.rechargeCard {
    border: 1px solid #ddd;
    border-radius: 0.438rem;
    margin: 0 auto 24px;
    max-width: 31.25rem;
}

/* TOP SIDE */
.giftCard__picture img ,
.rechargeCard__picture img {
    border-radius: 0.438rem 0.438rem 0 0 !important;
}

/* TOP SIDE */
/* MEDIUM SIDE */
.giftCard__middle ,
.rechargeCard__middle {
    border-bottom: 1px solid #ddd;
}

.giftCard__message ,
.rechargeCard__message {
    font-size: 1.063rem;
    padding: 0.938rem 1.563rem 1.875rem;
    text-align: center;
}

/* MEDIUM SIDE */
/* BOTTOM SIDE */
.giftCard__bottom ,
.rechargeCard__bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 1.075rem 1.263rem 1.138rem;
}

.giftCard__amount ,
.rechargeCard__amount {
    font-size: 1.75rem;
    font-weight: bolder;
}

.giftCard__picture-logo ,
.rechargeCard__picture-logo {
    width: 10rem;
}

/* BOTTOM SIDE */
@media (min-width: 62rem) {
    .giftCard 
,
.rechargeCard {
        margin: 0;
    }

    .giftCard__bottom 
,
.rechargeCard__bottom {
        padding: 1.375rem 1.563rem 1.438rem;
    }
}

/* Gift Card */