.btn {
    font-size: 20px;
    line-height: 1.25em;
    padding: 8px 20px;
    background: #ffffff;
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    border: none;
    cursor: pointer;
}
a.btn {
    text-decoration: none;
}
a.btn-magenta,
.btn-magenta {
    background-color: var(: #e3007b);
    color: white;
}
a.btn-yellowOrange,
.btn-yellowOrange {
    background-color: var(--yellowOrange);
    color: white;
}
a.btn-amber,
.btn-amber {
    background-color: var(--amber);
    color: white;
}
a.btn-peaGreen,
.btn-peaGreen {
    background-color: var(--peaGreen);
    color: white;
}
a.btn-turquoise,
.btn-turquoise {
    background-color: var(--turquoise);
    color: white;
}
a.btn-slateBlue,
.btn-slateBlue {
    background-color: var(--slateBlue);
    color: white;
}
a.btn-cadetBlue,
.btn-cadetBlue {
    background-color: var(--cadetBlue);
    color: white;
}
a.btn-darkCerulean,
.btn-darkCerulean {
    background-color: var(--darkCerulean);
    color: white;
}
a.btn-darkBlue,
.btn-darkBlue {
    background-color: var(--darkBlue);
    color: white;
}
a.btn-gainsboro,
.btn-gainsboro {
    background-color: var(--gainsboro);
    color: var(--darkBlue);
}
a.btn-whiteSmoke,
.btn-whiteSmoke {
    background-color: var(--whiteSmoke);
    color: var(--darkBlue);
}
a.btn-white,
.btn-white {
    background-color: var(--white);
    color: var(--darkBlue);
}
.btn-orange {
    border: none;
    outline: none;
    display: inline-block;
    min-height: 40px;
    line-height: 24px;
    padding: 7px 1em;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    border-radius: 6px;
    color: #fff;
    background-color: #FDBF00;
}
.btn-orange:hover {
    background-color: #eeb304;
}
.title {
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    color: var(--green);
    font-weight: bold;
}
@media (max-width: 768px) {
    .title {
        font-size: 24px;
    }
}
.subtitle {
    font-size: 20px;
    line-height: 25px;
    color: var(--font);
    text-align: center;
}
.over-block {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    /* justify-content: center;  use my-auto container! */
    align-items: center;
    z-index: 2;
}
.tag {
    border-radius: 6px;
    background: var(--grey-light);
    font-size: 18px;
    line-height: 22px;
    padding: 4px 20px;
    white-space: nowrap;
}
.booklet__item {
    margin-bottom: 20px;
}
.booklet-vertical {
    position: relative;
    text-align: center;
    border-radius: 6px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}
.booklet__img {
    width: 100%;
}
@media screen and (min-width: 576px) {
    .booklet__item {
        margin-bottom: 0;
    }
}
.filter-tags {
    gap: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.filter-tag {
    display: inline-flex;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--grey-05);
    font-size: 18px;
    line-height: 24px;
    padding: 10px;
    white-space: nowrap;
    cursor: default;
}
.filter-tag__title {
    padding-left: 10px;
    margin-left: 10px;
    border-left: 1px solid var(--font);
}
.filter-tag:hover {
    background: var(--yellow);
    color: #fff;
}
.filter-tag.active {
    background: var(--green);
    color: #fff;
}
.filter-tag:hover .filter-tag__title,
.filter-tag.active .filter-tag__title {
    border-left: 1px solid #fff;
}
@media screen and (min-width: 768px) {
    .filter-tag {
        font-size: 24px;
        line-height: 30px;
    }
}
input[type="text"].input,
input[type="password"].input,
input[type="email"].input,
input[type="tel"].input,
input[type="number"].input,
select.input,
textarea.input {
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--grey-05);
    outline: none;
    padding: 12px 20px;
    resize: vertical;
}
/* card */
.card {
    position: relative;
    max-width: 403px;
}
.tag-card {
    font-size: 20px;
    line-height: 25px;
    padding: 3px 5px;
    color: #fff;
    position: absolute;
    top: 20px;
    left: -10px;
    border-radius: 6px;
    background: var(--grey);
    display: flex;
    gap: 10px;
}
.tag-card__icon {}
.tag-card__title {}
.card__img {
    position: relative;
}
.card__img img {
    border-radius: 6px 6px 0 0;
}
.card__body {
    background: var(--grey-light);
    padding: 20px;
    border-radius: 0 0 6px 6px;
}
.card__price {
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    background: var(--green);
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    margin-top: -45px;
    right: 20px;
}
.card__discount {
    padding: 8px 5px;
    position: absolute;
    right: 6px;
    bottom: 100%;
    margin-top: -10px;
    color: var(--red);
    background: #fff;
    font-size: 18px;
    line-height: 22px;
    border-radius: 6px 6px 0 0;
    text-decoration: line-through;
}
.card__header {
    display: flex;
    flex-wrap: wrap;
}
.card__title-rating {
    flex: 1 1 auto;
}
.card__rating {}
.card__title {
    font-size: 24px;
    line-height: 30px;
    color: var(--green);
    font-weight: bold;
    padding-right: 5px;
}
.card_icons {
    font-size: 30px;
    color: var(--green);
    display: flex;
    padding-top: 16px;
    flex: 0 0 160px;
    margin-left: auto;
}
.card_icons__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.card__items {
    color: var(--green);
}
.card__item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 20px 0;
}
.card__item__icon {}
.card__item__title {
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}
.card__item__subtitle {
    color: var(--grey);
    font-size: 14px;
    line-height: 18px;
}
.card__bottom-icons {
    margin-top: 20px;
}
.card__btn-icons,
.card__bottom-icons {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.card__btn-icon {
    font-size: 30px;
    line-height: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}
.card__btn-icon:hover {
    background: var(--green);
    color: #fff;
}
.card__details {
    background: var(--yellow);
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
    text-align: center;
    padding: 14px;
    flex: 1 1 auto;
    margin-left: auto;
}
/* card  END */
.order-form__input {
    background: #ffffff;
    border: 1px solid rgba(153, 153, 153, 0.5);
    border-radius: 6px;
    margin: 0;
    padding: 0 20px;
    font-size: 20px;
    line-height: 25px;
    color: #444444;
    height: 60px;
    display: block;
    width: 100%;
}

.back-to-top {
    position: fixed;
    bottom: 68px;
    right: 20px;
    display: none;
    font-size: 24px;
    color: #fff;
    background: var(--turquoise);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

.back-to-top:hover {
    background: #333;
    text-decoration: none;
}