@charset "utf-8";

.info-container {}
.info-element {
    position: relative;
    background: white;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}
.info-element[info-block="link"] {
    display: block;
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
    background: var(--footer-color);
}
.info-element:last-child { margin-bottom: 0px; }
.info-element[info-block="slider"] .info-element-title {
    padding-bottom: 0;
    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-bottom: 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;
}
.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 0px 0px;
    flex: none;
}
.order-block-text[point="orange"]:before { background: var(--orange-color); }
.order-block-text[point="gray"]:before { background: var(--light-gray-color); }
