@font-face {
    font-family: 'OSFont';
    src: url('./../../assets/fonts/Montserrat/static/Montserrat-Regular.ttf');
}

:root {
    --font-family-primary: OSFont;
    --color-white: #fff;
    --color-primary: #2EAFBA;
    --color-text: #697075;
    --color-primary-light: rgb(46, 175, 186, 0.6);
    --color-box-shadow:  rgba(105, 112, 117, 0.25);
}

body#policy-main {
    font-family: var(--font-family-primary);
    max-width: 2600px;
    margin: 0 auto;
    border: 1px solid white;
}

.privacy-title {
    text-align: center;
    padding-top: 50px;
    font-size: 40px;
    color: var(--color-text);
    font-weight: bold;
}

.privacy-container {
    width: 70%;
    height: auto;
    margin: 30px auto;
    color: var(--color-text);
    padding: 50px;
    position: relative;
    display: flex;
    column-gap: 50px;
}

.privacy-list-container {
    width: 30%;
    position: relative;
}

.privacy-list-content {
    position: sticky;
    top: 50px;
    left: 0;
    height: auto;
    padding: 25px;
    border-radius: 5px;
    color: var(--color-white);
    background-color: var(--color-primary-light);
}

.privacy-list-content .list-item {
    padding: 2px 10px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

.privacy-list-content .list-item:hover {
    background-color: var(--color-primary);
}

.selected {
    background-color: var(--color-primary);
}

.list-item-value {
    color: var(--color-white);
    font-weight: bold;
    font-size: 14px;
}

.privacy-content {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 50px;
}

.privacy-text-container {
    border-radius: 5px;
    width: 100%;
    height: auto;
    font-size: 14px;
    padding: 20px 40px 40px;
    box-shadow: 5px 5px 25px 0px var(--color-box-shadow);
    line-height: 20px;
}

.privacy-text-container span {
    font-weight: bold;
}

.privacy-text-container a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: bold;
}

.privacy-text-container a.not-like-link {
    color: var(--color-text);
    font-weight: normal;
    white-space: nowrap;
}

.privacy-text-container p {
    padding-top: 30px;
    text-indent: 20px;
}

.privacy-text-container .text-title {
    text-align: center;
    padding-top: 30px;
    font-size: 17px;
    font-weight: bold;
}

.privacy-text-container ul {
    padding-top: 20px;
    text-indent: 20px;
    list-style-type: none;
}

.privacy-text-container ul li {
    text-indent: 40px;
    padding-top: 10px;
}

.return-icon {
    position: fixed;
    left: 35px;
    top: 35px;
    color: var(--color-primary);
    cursor: pointer;
    transform: scale(2.5);
}

.return-icon img {
    width: 18px;
}

@media (max-width: 1700px) {
    .privacy-container {
        width: 90%;
    }

}

@media (max-width: 1024px) {

    .privacy-title {
        padding-top: 30px;
    }

    .privacy-container {
        column-gap: 30px;
        padding: 30px;
    }

    .list-item-value {
        font-size: 12px;
    }

}

@media (max-width: 955px) {

    .privacy-title {
        padding-top: 80px;
    }

}

@media (max-width: 850px) {

    .privacy-container {
        column-gap: 0;
        flex-wrap: wrap;
        row-gap: 20px;
        padding: 20px;
    }

    .privacy-list-container {
        width: 100%;
    }

    .privacy-list-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .list-item {
        width: calc(50% - 25px);
        display: flex;
        flex-wrap: wrap;
        padding: 0 5px;
    }

    .privacy-content {
        width: 100%;
    }

    .return-icon {
        left: 15px;
        top: 15px;
    }
}

@media (max-width: 480px) {

    .list-item {
        width: 100%;
    }

    .list-item-value {
        font-size: 10px;
    }

    .privacy-text-container {
        font-size: 12px;
    }

    .text-title {
        font-size: 15px;
    }
}