html {
    color: #343C3D;
    font-weight: normal;
    min-width: 320px;
    scroll-behavior: smooth;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
small,
strong,
b,
u,
i,
ol,
ul,
li,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
footer,
header,
section {
    border: 0;
    font-family: "Source Sans Pro", "Arial", sans-serif;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    word-break: keep-all;
}

body {
    background-color: #FAFAFA;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

@media (min-width: 1500px) {
    .container {
        padding-left: 0;
        padding-right: 0;
        width: 1440px;
    }
}

@media (min-width: 768px) and (max-width: 1500px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.logo-container {
    padding-top: 80px;
    width: 680px;
    margin: 0 auto;
}

.page-content {
    padding-top: 80px;
    padding-bottom: 80px;
    width: 680px;
    margin: 0 auto;
}

.page-content .main-title {
    font-family: "Source Sans Pro";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
    padding-bottom: 40px;
}

.page-content .main-content, table {
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    white-space: break-spaces;
    margin: 0;
}

.page-content .main-content ul {
    padding-left: 16px;
}

.page-content table {
    border-collapse: collapse;
}
.page-content th {
    text-transform: uppercase;
    color: #343C3D;
}
.page-content td, th {
    padding: 8px;
    text-align: left;
}
.page-content tr {
    border-top: 1px solid black;
}
.page-content tr:first-child{
    border: none;
}

.page-content td:nth-child(3) {
    width: 40%;
}

@media (max-width: 767px) {
    .page-content th,
    .page-content td {
        display: block;
        width: 100%;
    }
    .page-content td {
        border-bottom: none;
    }
    .page-content tr{
        border-bottom: 1px solid black;
    }
    .page-content td:nth-child(3) {
        width: auto;
    }
}

.terms-actions-container {
    width: 100%;
    background-color: #FFFFFF;
;
    position: sticky;
    bottom: 0;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.20);
}

.terms-actions-container .terms-actions-wrapper {
    padding-top: 16px;
    padding-bottom: 16px;
    width: 680px;
    display: flex;
    gap: 16px;
    justify-content: end;
    align-items: center;
}

.terms-actions-container .terms-actions-wrapper .button {
    display: inline-flex;
    padding: 16px 24px;
    align-items: flex-start;
    gap: 8px;
    color: #343C3D;
    border: 0;
    font-family: "Source Sans Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.terms-actions-container .terms-actions-wrapper .button.white {
    border-bottom: 3px solid #F0F0F0;
    background: #FFFFFF;
    color: #343C3D;
}

.terms-actions-container .terms-actions-wrapper .button.white:hover {
    border-bottom: none;
    background: #CCC;
}

.terms-actions-container .terms-actions-wrapper .button.blue {
    border-bottom: 3px solid #00006D;
    background: #00008F;
    color: #FFFFFF
}

.terms-actions-container .terms-actions-wrapper .button.blue:hover {
    border-bottom: none;
    background: #1F1F9C;
}

.terms-popup-overlay {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: opacity 500ms;
    color: #343c3d;
    visibility: visible;
    opacity: 1;
    align-items: center;
    z-index: 3;
}

.terms-popup-overlay.inactive {
    display: none;
}

.terms-popup {
    margin: 0 auto;
    background: transparent;
    position: relative;
}

.terms-popup .icon-close {
    background: url(images/icon_close.svg) no-repeat center;
    border: 0;
    width: 16px;
    height: 16px;
    box-sizing: content-box;
    padding: 0;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}

.terms-popup .terms-card-wrapper {
    padding: 16px;
    border-radius: 12px;
    position: relative;
    width: 550px;
    margin: 0 auto;
    background-color: #FFFFFF;
}

.terms-popup .terms-card-wrapper .terms-description a {
    color: #00008F;
    text-decoration: underline;
}

.terms-popup .terms-card-wrapper .terms-info {
    gap: 16px;
}

.terms-popup .terms-card-wrapper .terms-info .terms-info-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terms-popup .terms-card-wrapper .button.blue {
    width: fit-content;
    align-self: end;

}

@media (max-width: 767px) {


    .terms-popup .terms-card-wrapper {
        width: 100%;
    }

    .terms-popup .terms-card-wrapper .button.blue {
        width: 100%;
    }

}

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .logo-container {
        padding-top: 64px;
        width: 100%;
    }

    .page-content {
        padding-top: 64px;
        padding-bottom: 64px;
        width: 100%;
    }

    .terms-actions-container .terms-actions-wrapper {
        width: 100%;
    }
}




