﻿
/* page */

.hidden {
    display: none !important;
}

.content {
    padding: 0 20px;
}

.content p {
    margin-bottom: 0.5em;
}

.content__items {
    display: flex;
    flex-direction: column;
}

.content__item {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 16%);
}

.content__item__title {
    font-size: 18px;
    line-height: 22px;
    padding-top: 4px;
    word-break: break-word;
    overflow-wrap: break-word;
    overflow-wrap: anywhere;
}

@media screen and (min-width: 576px) {
    .content__item__title {
        font-size: 20px;
        line-height: 24px;
        padding-top: 4px;
    }
}

.content__item__line {
    width: 100%;
    margin: 15px 0px;
    border-bottom: solid 1px #ebeced;
    border-bottom: solid 1px var(--sc--color-border);
}

.content__item__body {
    font-size: 16px;
}

.content__item__body-row {
    display: flex;
    flex-wrap: wrap;
}

.content__item__body-col {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-grow: 1;
    padding: 10px;
}

.content__item__body-col * {
    flex-shrink: 0;
    flex-grow: 0;
}

.content__item__body-col .grow-1 {
    flex-grow: 1;
}

/* use in combination with sc--button */
.content__item__button {
    width: fit-content;
    height: fit-content;
    font-size: inherit;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 8px 6px;
    border-radius: 5px;
    margin: 0px 4px;
    border: none;
}
.content__item__button:first-of-type {
    margin-left: 0px;
}
.content__item__button:last-of-type {
    margin-right: 0px;
}

.item-25, .item-50, .item-75, .item-100 {
    width: 100%;
}

@media screen and (min-width: 760px) {
    .item-25 {
        width: 25%;
    }
    .item-50 {
        width: 50%;
    }
    .item-75 {
        width: 75%;
    }
}

.content__link {
    display: block;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
    transition: none;
}

    .content__link.valid {
        box-shadow: 0 0 0 1px rgb(5 142 195 / 35%);
    }

    .content__link:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
    }

    .content__link--no-margin {
        margin: 0px;
    }

/* row & col */

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.row--no-margin-ver {
    margin-top: 0;
    margin-bottom: 0;
}

.col-25, .col-50, .col-75, .col-100 {
    width: calc(100% - 20px);
    margin: 10px;
}

.col--no-margin-ver {
    margin-top: 0;
    margin-bottom: 0;
}

@media screen and (min-width: 760px) {
    .col-25 {
        width: calc(25% - 20px);
    }
    .col-50 {
        width: calc(50% - 20px);
    }
    .col-75 {
        width: calc(75% - 20px);
    }
}

/* top banner image */

.image-information {
    width: 265px;
    max-width: 265px;
}

.image-eusec {
    width: 245px;
    max-width: 245px;
}

@media screen and (min-width: 992px) {
    .image-eusec {
        width: 305px;
        max-width: 305px;
    }
}

/* cards */

.card__logo {
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
}

@media screen and (min-width: 992px) {
    .card__logo {
        width: 60px;
        height: 60px;
    }
}

.card__links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card__link {
    width: 45%;
    text-align: left;
}

@media screen and (max-width: 400px) {
    .card__link {
        width: 47%;
        font-size: 14px;
    }
}

/* tab content */

.tabcontent {
    width: calc(100% + 20px);
    margin-left: -10px;
}

.tabcontent__link {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
    color: inherit;
    transition: none;
}

    .tabcontent__link:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
    }

@media screen and (max-width: 400px) {
    .tabcontent__link {
        font-size: 14px;
    }
}
@media screen and (min-width: 760px) {
    .tabcontent__link {
        width: calc(50% - 20px);
    }
}
@media screen and (min-width: 1200px) {
    .tabcontent__link {
        width: calc(33.333333% - 20px);
    }
}

/* compliance feature */

.compliance__row {
    display: flex;
    flex-direction: column;
}

.compliance__row + .compliance__row {
    margin-top: 30px;
}

.compliance__col {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.compliance__col + .compliance__col {
    margin-top: 20px;
}

.compliance__col > p {
    width: 100%;
}

@media screen and (min-width: 760px) {
    .compliance__row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .compliance__col {
        width: 50%;
    }
    .compliance__col + .compliance__col {
        margin-top: 0;
    }
}
