* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}


@font-face {
    font-family: 'Dharma';
    src: url('../fonts/Dharma-Gothic-E-ExBold.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dharma-italic';
    src: url('../fonts/Dharma-Gothic-E-ExBold Italic.otf');
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Poppins';
}

.banner {
    width: 300px;
    height: 600px;
    background-image: url("../img/1001-bg.png");
    position: relative;
}

.banner::before {
    content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    position: absolute;
    left: 0;
    bottom: 0;
    height: 35%;
    width: 100%;
}

.head_timer {
    display: flex;
    color: #fff;
    padding: 10px;
    align-items: center;
    position: absolute;
    top: -160px;
    left: 5px;
}

.timer_text {
    font-size: 14px;
    margin-right: 10px;
}

.timer {
    background-color: #fff;
    padding: 0 12px;
    border-radius: 3px;
    color: rgb(218, 146, 13);
}

.logo {
    text-align: center;
    padding-top: 55px;
}

.misli_logo {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 5px;
}

.misli_logo img {
    width: 80px;
}

.percent_block {
    display: flex;
    justify-content: center;
    color: #fff;
    align-items: center;
    margin: 8px 0;
}

.product_name {
    color: #fff;
    font-size: 24px;
    text-align: center;
    margin: 5px 0;
    background: url("../img/headline_back2.png") no-repeat;
    background-size: 274px 402px;
    background-position: 0px 47%;
    width: 280px;
    font-family: 'Dharma';
    line-height: 26px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.name_block {
    display: flex;
    justify-content: center;
}

.percent_text {
    font-size: 16px;
    margin-right: 5px;
}

.percent {
    width: 100px;
    background-color: #fff;
    border-radius: 16px;
    height: 18px;
    margin-left: 10px;
}

.percent_fill {
    background-color: #A7D6F8;
    height: 100%;
    border-radius: 16px;
}

.product_img {
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.product_img_block {
    width: 100%;
    display: flex;
    align-items: center;
}

.product_img::before {
    content: "";
    display: block;
    width: 150px;
    position: relative;
    padding-top: 68%;
}

.price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0 12px 0;
    color: #fff;
    font-weight: 500;
    background: url("../img/price_back.png?v1") no-repeat;
    background-size: cover;
    height: 40px;
    width: 220px;
    background-position: 0px 44%;
    font-family: 'Dharma-italic';
    font-size: 24px;
    line-height: 34px;
}

.price_block {
    display: flex;
    justify-content: center;
}

.price_text {
    margin-right: 10px;
}

.price_number {
    display: flex;
    align-items: center;
}

.price_number img {
    margin-left: 5px;
    width: 20px;
}

.product_img img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: contain;
}

.sale_button {
    text-align: center;
    position: relative;
    z-index: 2;
}

.sale_button span {
    color: #483401;
    background: #FBC43A;
    padding: 5px;
    width: 170px;
    border-radius: 16px;
    cursor: pointer;
    display: inline-block;
}

.banner {
    overflow: hidden;
}