/* font */

@font-face {
    font-family: "DIN Round Pro";
    src: url("./../fonts/dinroundpro_black.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "DIN Round Pro";
    src: url("./../fonts/dinroundpro_light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,500&display=swap");

/* end font */

body {
    font-family: "DIN Round Pro";
    font-weight: 700;
    background-color: #F4F4F4;
    padding: 28px 28px 34px 28px;
    margin: 0;
    color: #151515;
}

.wrapper {
    box-sizing: border-box;
    background-color: #FFF;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    margin: auto;
    max-width: 600px;
    height: calc(100vh - 78px);
    max-height: 740px;
    min-height: 660px;
    padding: 50px 12px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.with-devider {
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 26px;
    padding-bottom: 30px;
}
.header img {
    max-width: 272px;
    width: 100%;
    margin-bottom: 2px;
}
.with-devider::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: calc(100% - 60px);
    background-color: rgba(0, 0, 0, 0.25);
}
.card {
    border: 3px solid #FFDE17;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px 10px 21px;
    box-sizing: border-box;
    color: #363636;
    text-decoration: none;
    height: 60px;
}

.card:not(:last-child) {
    margin-bottom: 11px;
}

.card__content {
    display: flex;
    align-items: center;
}

.card__text {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
}

.card__subtitle {
    font-weight: 300;
}

.second-title {
    margin: 0 0 17px;
    padding-left: 3px;
}
.store {
    display: flex;
    justify-content: space-between;
    max-width: 263px;
    width: 100%;
    margin: 0 auto;
}

.store__item {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #363636;
    text-decoration: none;
}
