:root {
    --astride-primary: #002a5a;
    --astride-secondary: #2076ef;
    --astride-highlight-green: #2ba555;
    --astride-highlight-yellow: #f1b842;
    --astride-highlight-red: #f36838;
    --astride-white: #ffffff;
    --astride-shade-blue: #d5e9fe;
    --astride-shade-gray: #959595;
    --astride-shade-lighter-gray: #f5f5f5;
    --astride-hover-color: #2563eb;
}

html,
body {
    height: 100%;
}

body {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    margin: 0;
    color: var(--astride-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: normal;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

.no-margin-block {
    margin-block-start: 0;
    margin-block-end: 0;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.5rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
}

.grid > .col,
.grid > [class*=col] {
    box-sizing: border-box;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.ml-5 {
    margin-left: 2rem !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.mr-5 {
    margin-right: 2rem !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 2rem !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.col {
    flex-grow: 1;
    flex-basis: 0;
    padding: 0.5rem;
}

.col-fixed {
    flex: 0 0 auto;
    padding: 0.5rem;
}

.col-1 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 8.3333%;
}

.col-2 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 16.6667%;
}

.col-3 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 33.3333%;
}

.col-5 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 41.6667%;
}

.col-6 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 58.3333%;
}

.col-8 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 66.6667%;
}

.col-9 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 83.3333%;
}

.col-11 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 91.6667%;
}

.col-12 {
    flex: 0 0 auto;
    padding: 0.5rem;
    width: 100%;
}

.body-content {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 739px) {
    .xs\:col-12 {
        flex: 0 0 auto;
        width: 100%;
        padding: 0.5rem 30px 0.5rem 24px;
    }
}

.gap-sm {
    gap: 12px;
}

.gap-md {
    gap: 20px;
}

.flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-1 {
    flex: 1 1 0 !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.header-border {
    border-bottom: 1px solid var(--astride-shade-lighter-gray);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    max-width: 1080px;
    margin: auto;
}

.header-container .logo {
    width: 117px;
    height: 50px;
}

@media (max-width: 1023px) {
    .header-container {
        height: 75px;
    }

    .header-container .logo {
        width: 70px;
        height: 30px;
    }
}

.w-full {
    width: 100% !important;
}

.exin-panel {
    border-radius: 20px;
    background-color: var(--astride-shade-lighter-gray);
    padding: 20px;
}

.certificate-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 24px;
    background-color: var(--astride-shade-blue);
    min-width: 304px;
}

.exin-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--astride-white);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    padding: 0 12px;
    min-height: 24px;
    border-radius: 16px;

    border: 2px solid var(--astride-primary);
    background-color: var(--astride-primary);

    &.outlined {
        background-color: var(--astride-white) !important;
        color: var(--astride-primary);
    }

    &.success {
        border-color: var(--astride-highlight-green);
        background-color: var(--astride-highlight-green);

        &.outlined {
            color: var(--astride-highlight-green);
        }
    }

    &.warning {
        border-color: var(--astride-highlight-yellow);
        background-color: var(--astride-highlight-yellow);

        &.outlined {
            color: var(--astride-highlight-yellow);
        }
    }

    &.danger {
        border-color: var(--astride-highlight-red);
        background-color: var(--astride-highlight-red);

        &.outlined {
            color: var(--astride-highlight-red);
        }
    }

    &.secondary {
        border-color: var(--astride-secondary);
        background-color: var(--astride-secondary);

        &.outlined {
            color: var(--astride-secondary);
        }
    }
}

.text-normal {
    font-size: 16px;
}

.text-large {
    font-size: 18px;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
}

.pre-wrap {
    white-space: pre-wrap;
}

.view-more-link {
    color: var(--astride-primary);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    text-decoration: underline;
    cursor: pointer;

    &:hover {
        color: var(--astride-hover-color);
    }
}

.share-link-container {
    position: relative;
    left: 0;
    top: 0;
}

.share-link {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 9px;

    &:hover {
        background-color: var(--astride-shade-lighter-gray);
        border-radius: 50%;
    }
}

#copy-link-dialog {
    display: none;
    position: absolute;
    top: 40px;
    right: 15px;
    width: 350px;
    background-color: var(--astride-shade-blue);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.25);
    padding: 15px;
    border-radius: 7px;
    gap: 10px;
}

.exin-button {
    color: var(--astride-white);
    border: 1px solid var(--astride-secondary);
    background-color: var(--astride-secondary);
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button {
    border: none;
    color: var(--astride-shade-gray);
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.exin-input {
    border: 1px solid var(--astride-shade-lighter-gray);
    border-radius: 5px;
    padding: 5px 0;
    font-size: 16px;
    color: var(--astride-shade-gray);
}