@charset "utf-8";

.info-container {}
.info-element {
    position: relative;
    background: white;
    border-radius: 4px;
    margin-bottom: 20px;
}
.info-element[info-block="link"] {
    display: block;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    background: var(--footer-color);
    padding: 20px;
}
.info-element:last-child { margin-bottom: 0px; }
.info-element[info-block="slider"] .info-element-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}
.info-element[info-block="slider"][open] .info-element-title { padding-bottom: 20px; }
.info-element[info-block="slider"] .info-element-title:after {
    content: '<';
    position: absolute;
    right: 20px;
    transition: 0.3s;
    transform: rotate(-90deg);
    font-size: 20px;
}
.info-element[info-block="slider"][open] .info-element-title:after {
    transform: rotate(90deg);
}

.info-element-title:hover::after {
    color: var(--green-color);
}

.info-element-title {
    padding: 20px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 900;
    text-align: center;
}
.info-element[info-block="slider"] .info-element-text { display: none; }
.info-element[info-block="slider"][open] .info-element-text {
    display: block;
    border-top: 1px solid var(--background-color);
    padding-top: 20px;
}
.info-element-text {
    white-space: pre-line;
    font-size: 16px;
    line-height: 22px;
    padding: 20px;
}
.info-element-text ul {
    margin: 0;
    padding: 0;
    line-height: 1;
}
.info-element-text li { margin-left: 26px; }

.confidentiality {
    white-space: pre-line;
    background: white;
    padding: 10px 20px 20px 30px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
}

.confidentiality a {
    color: var(--green-color);
}
.confidentiality > b {
    font-size: 20px;
    display: inline-block;
    margin: 10px 0px 10px -10px;
}

b.main-title {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 0;
}

.confidentiality > .term {
    font-size: 14px;
    display: inline-block;
    margin: 0;
}

.info-order {
    padding: 20px;
    background: white;
    margin-bottom: 20px;
    border-radius: 4px;
    line-height: 20px;
}
.info-order:last-child { margin-bottom: 0px; }
.order-title {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
}
.order-block { margin-bottom: 20px; }
.order-block:last-child { margin-bottom: 0px; }
.order-block-title { font-weight: 900; }
.order-block-text[point] {
    display: flex;
    margin: 10px 0;
}

.order-block-text a {
    color: var(--green-color);
}

.order-block-text[point]:last-child { margin-bottom: 0px; }
.order-block-text[point="line"] { position: relative; }
.order-block-text[point="line"]:after {
    content: "";
    position: absolute;
    height: 95%;
    width: 4px;
    background: var(--green-color);
    left: 6px;
    top: 2%;
    border-radius: 4px;
}
.order-block-text[point]:before {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    background: var(--green-color);
    border-radius: 50%;
    margin: 2px 10px 0 0;
    flex: none;
}
.order-block-text[point="orange"]:before { background: var(--orange-color); }
.order-block-text[point="gray"]:before { background: var(--light-gray-color); }

.bonus-program {
    margin-bottom: 80px;
}

.bonus-program .banner img {
    width: 100%;
    margin-bottom: 20px;
}

.description {
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.description-item {
    background-color: white;
    padding: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.description-item.big {
    width: 60%;
}

.description-item.small {
    width: 30%;
}

.disclaimer {
    font-size: 10px;
    line-height: 20px;
    margin-bottom: 20px;
}

.disclaimer li {
    margin-left: 10px;
}

.more-details {
    background-color: white;
    padding: 15px;
}

.more-details .title {
    position: relative;
    font-weight: bold;
    font-size: 16px;
}

.more-details .title::after {
    content: '<';
    position: absolute;
    right: 0;
    transition: 0.3s;
    transform: rotate(-90deg);
    font-size: 20px;
}

.more-details .title:hover::after {
    color: var(--green-color);
}

.more-details[open] .title::after {
    transform: rotate(90deg);
}

.more-details[open] .body {
    transition: 0.3s ease-in;
}

.more-details .body {
    overflow: hidden;
    max-height: 0;
    transition: 0.2s ease-out;
}

.info a {
    background: var(--light-gray-color);
    line-height: 26px;
    padding: 0px 4px;
    border-radius: 2px;
}

.info {
    margin: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 600px) {
    .description {
        display: block;
    }

    .banner {
        margin-top: 20px;
    }

    .description-item.big,
    .description-item.small {
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .more-details {
        margin-bottom: 40px;
    }
}
