@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
 * Variables
 */
:root {
    /* family: */
    --font-family-text: "Inter", "Noto Sans JP", "Hiragino Sans",
        "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo,
        "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
    --font-family-title: "Inter", "Noto Sans JP", "Hiragino Sans",
        "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo,
        "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
    --font-family-en: "Inter", "Noto Sans JP", "Hiragino Sans",
        "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo,
        "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
    /* Colors: */
    --text-color: #171e26;
    --text-dark-color: #cecece;
    --loud-color: #d51818;
    --title-color: #171e26;
    --menu-color: #171e26;
    --primary-btn-color: #ffffff;
    /* background: */
    --background-primary-btn: #1778f2;
    --background-primary-btn-dark: #8d8d8d;
    --background-loud: #00ab94;
    /* size */
    --base-font-size: 1.6rem;
    --h1-font-size: 3.2rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.8rem;
}

/*
 * Function
 */
/*
* mixins
*/
@media (min-width: 768px) and (max-width: 991px) {
    .class {
        width: 60%;
    }
}

/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

button {
    background-color: transparent;
    outline: none;
    border: 0;
    cursor: pointer;
}

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-title);
    font-weight: 700;
    color: var(--title-color);
    line-height: 1.4;
}

h1 {
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
    margin-bottom: 1.6rem;
}

h3 {
    font-size: var(--h3-font-size);
}

/* Components - Re-usable site elements.
========================================================================== */
a {
    color: var(--text-color);
    text-decoration: none;
}
a:visited {
    color: var(--text-color);
    text-decoration: none;
}
a:hover,
a:visited:hover {
    color: var(--loud-color);
    text-decoration: none;
}
a:focus {
    outline: none;
    text-decoration: none;
}

input {
    font-family: var(--font-family-text);
}

.more {
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.btn-primary {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2.4rem;
    width: auto;
    height: 4.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-btn-color) !important;
    background: var(--background-primary-btn);
    border-radius: 0.8rem;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    opacity: 0.7;
}

.btn-secondary {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2.4rem;
    width: auto;
    height: 4.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-btn-color) !important;
    background: var(--background-loud);
    border-radius: 0.8rem;
    border: none;
    cursor: pointer;
}
.btn-secondary:hover {
    opacity: 0.7;
}

.btn-light {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2.4rem;
    width: auto;
    height: 4.8rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--background-primary-btn) !important;
    background: #f7f7f7;
    border-radius: 0.8rem;
    border: none;
    cursor: pointer;
}
.btn-light.is_active,
.btn-light:hover {
    background: var(--background-primary-btn);
    color: #ffffff !important;
}

.btn-dark {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2.4rem;
    width: auto;
    height: 4.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-btn-color) !important;
    background: var(--background-primary-btn-dark);
    border-radius: 0.8rem;
    border: none;
    cursor: pointer;
}
.btn-dark:hover {
    background: #000000;
}

.btn-info {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2rem;
    width: auto;
    height: 4.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    background: #e5f0fd;
    color: #0971e8 !important;
    border-radius: 2.4rem;
    border: none;
    cursor: pointer;
}
.btn-info.--danger {
    background: #ffe5eb;
    color: var(--loud-color) !important;
}
.btn-info.is_active {
    color: #8d8d8d !important;
    background: #f7f7f7;
}

.btn-dowload {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 0.6rem;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 1.6rem;
    width: auto;
    height: 3.2rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff !important;
    background: #171e26;
    border-radius: 1.6rem;
    border: none;
    cursor: pointer;
}
.btn-dowload.is_active,
.btn-dowload:hover {
    opacity: 0.7;
}

.wrap_datepicker {
    position: relative;
}

.wrap_datepicker input.datepicker {
    cursor: pointer;
    width: 178px;
}

.wrap_datepicker input.datepicker::-webkit-input-placeholder {
    color: #262626;
    opacity: 1;
}

.wrap_datepicker input.datepicker::-moz-placeholder {
    color: #262626;
}

.wrap_datepicker input.datepicker:-ms-input-placeholder {
    color: #262626;
}

.wrap_datepicker input.datepicker:-moz-placeholder {
    color: #262626;
}

.wrap_datepicker .datepicker {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.wrap_datepicker .datepicker.focus ~ .wrap_table {
    border: 1px solid #d1d1d1;
    z-index: 1;
    visibility: visible;
    top: 0;
    opacity: 1;
}

.wrap_datepicker .datepicker ~ .wrap_table {
    padding: 5px;
    position: absolute;
    top: -30px;
    background: #fff;
    width: 280px;
    margin-top: 50px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #d1d1d1;
}

.wrap_datepicker .datepicker ~ .wrap_table > p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: 16px;
    line-height: 40px;
    background: #d1d1d1;
    border-radius: 5px;
    border-bottom: 0;
    margin-bottom: 0;
}

.wrap_datepicker .datepicker ~ .wrap_table > p span.next,
.wrap_datepicker .datepicker ~ .wrap_table > p span.prev {
    display: inline-block;
    width: 40px;
    height: 40px;
    position: relative;
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer;
}

.wrap_datepicker .datepicker ~ .wrap_table > p span.next::before,
.wrap_datepicker .datepicker ~ .wrap_table > p span.prev::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 15px;
    background: url("../images/cal_arrow.webp") 0 0 no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.wrap_datepicker .datepicker ~ .wrap_table > p span.prev::before {
    -webkit-transform: translate(-50%, -50%) scale(-1);
    -ms-transform: translate(-50%, -50%) scale(-1);
    transform: translate(-50%, -50%) scale(-1);
}

.wrap_datepicker .datepicker ~ .wrap_table table {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr th {
    border: none;
    color: #000000;
    font-size: 14px;
    line-height: 2;
    font-weight: normal;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr td {
    border: 1px solid #d1d1d1;
    font-size: 14px;
    line-height: 2;
    width: 36px;
    height: 30px;
    background: #f6f6f6;
    color: #d1d1d1;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr td.active {
    cursor: pointer;
    color: #000;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr td.selected {
    border-color: #000;
}

.wrap_datepicker .datepicker ~ .wrap_table table tr td.no_day {
    opacity: 0;
    border: none;
}

@-webkit-keyframes scroll-hint-appear {
    0% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50%,
    100% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
        opacity: 0;
    }
}

@keyframes scroll-hint-appear {
    0% {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50%,
    100% {
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
        opacity: 0;
    }
}

.scroll-hint.is-right-scrollable {
    background: -o-linear-gradient(
        right,
        rgba(0, 0, 0, 0.15) 0,
        rgba(0, 0, 0, 0) 16px,
        rgba(0, 0, 0, 0)
    );
    background: linear-gradient(
        270deg,
        rgba(0, 0, 0, 0.15) 0,
        rgba(0, 0, 0, 0) 16px,
        rgba(0, 0, 0, 0)
    );
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
    background: -o-linear-gradient(
            left,
            rgba(0, 0, 0, 0.15) 0,
            rgba(0, 0, 0, 0) 16px,
            rgba(0, 0, 0, 0)
        ),
        -o-linear-gradient(right, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.15) 0,
            rgba(0, 0, 0, 0) 16px,
            rgba(0, 0, 0, 0)
        ),
        linear-gradient(
            270deg,
            rgba(0, 0, 0, 0.15) 0,
            rgba(0, 0, 0, 0) 16px,
            rgba(0, 0, 0, 0)
        );
}

.scroll-hint.is-left-scrollable {
    background: -o-linear-gradient(
        left,
        rgba(0, 0, 0, 0.15) 0,
        rgba(0, 0, 0, 0) 16px,
        rgba(0, 0, 0, 0)
    );
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.15) 0,
        rgba(0, 0, 0, 0) 16px,
        rgba(0, 0, 0, 0)
    );
}

.scroll-hint-icon {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 60px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 120px;
    height: 80px;
    border-radius: 5px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    pointer-events: none;
}

.scroll-hint-text {
    font-size: 10px;
    color: #fff;
    margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
    opacity: 0.8;
}

.scroll-hint-icon:before {
    display: inline-block;
    width: 40px;
    height: 40px;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    content: "";
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
    content: "";
    width: 34px;
    height: 14px;
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -20px;
    background-repeat: no-repeat;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
    opacity: 0;
    -webkit-transition-delay: 2.4s;
    -o-transition-delay: 2.4s;
    transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
    opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
    -webkit-animation: scroll-hint-appear 1.2s linear;
    animation: scroll-hint-appear 1.2s linear;
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
}

.scroll-hint-icon-white {
    background-color: #fff;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
    color: #000;
}

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-duration: inherit;
    -o-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.9;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    transition: opacity 0.25s ease, visibility 0s ease 0.25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    /* Using without prefix would break IE11 */
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    -webkit-backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable="true"] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */
.fancybox-button {
    background: rgba(30, 30, 30, 0.6);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: none;
}

/* Fix IE11 */
.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    -webkit-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: 0.8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(rgba(0, 0, 0, 0.85)),
        color-stop(50%, rgba(0, 0, 0, 0.3)),
        color-stop(65%, rgba(0, 0, 0, 0.15)),
        color-stop(75.5%, rgba(0, 0, 0, 0.075)),
        color-stop(82.85%, rgba(0, 0, 0, 0.037)),
        color-stop(88%, rgba(0, 0, 0, 0.019)),
        to(rgba(0, 0, 0, 0))
    );
    background: -o-linear-gradient(
        bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.075) 75.5%,
        rgba(0, 0, 0, 0.037) 82.85%,
        rgba(0, 0, 0, 0.019) 88%,
        rgba(0, 0, 0, 0) 100%
    );
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.15) 65%,
        rgba(0, 0, 0, 0.075) 75.5%,
        rgba(0, 0, 0, 0.037) 82.85%,
        rgba(0, 0, 0, 0.019) 88%,
        rgba(0, 0, 0, 0) 100%
    );
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right))
            max(25px, env(safe-area-inset-bottom))
            max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
    -webkit-animation: fancybox-rotate 1s linear infinite;
    animation: fancybox-rotate 1s linear infinite;
    background: transparent;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: 0.7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Transition effects */
.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px;
    }
    .fancybox-slide--image {
        padding: 6px 0;
    }
    .fancybox-close-small {
        right: -6px;
    }
    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px;
    }
    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px;
    }
    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right));
        }
    }
}

/* Share */
.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs__list a::before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
    opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }
    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }
    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
}

body {
    background: #f7f7f7;
    font-family: var(--font-family-title);
    color: var(--text-color);
    font-size: var(--base-font-size);
    line-height: 1.5;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    text-align: justify;
    text-justify: inter-ideograph;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.05em;
    width: 100%;
}

hr {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #000 -moz-use-text-color -moz-use-text-color;
    -o-border-image: none;
    border-image: none;
    border-style: solid none none;
    border-width: 0.2em 0 0 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 131rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}

p {
    margin-bottom: 1.5rem;
}

input:focus {
    outline: none;
}

a img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}
a img:hover {
    opacity: 0.7;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.entry-title {
    margin-bottom: 4rem;
}
.entry-title.bd {
    padding-bottom: 2rem;
    position: relative;
    border-bottom: 1px solid #cecece;
}
.entry-title.bd::after {
    content: "";
    width: 8rem;
    height: 1px;
    background: #0971e8;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.pd-0 {
    padding: 0 !important;
}

.text-center {
    text-align: center;
}

.onelinewrap {
    position: relative;
}
.onelinewrap-attribute {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.attribute {
    color: #4a4a4a;
    background-color: #f4f4f5;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 4px;
    white-space: nowrap;
}
.attribute-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    font-size: 12px;
}

.oneline {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.color-1 {
    background: #ee6d85;
}

.color-2 {
    background: #52a0e4;
}

.color-3 {
    background: #facb71;
}

.color-4 {
    background: #6fbbc0;
}

.color-5 {
    background: #55a0e6;
}

.color-6 {
    background: #8d70e4;
}

.color-7 {
    background: #cacbcf;
}

/* Chart Color Classes - Synchronized with Chart.js colors */

.color-1 {
    background: rgb(255, 99, 132);
}

.color-2 {
    background: rgb(54, 162, 235);
}

.color-3 {
    background: rgb(255, 206, 86);
}

.color-4 {
    background: rgb(75, 192, 192);
}

.color-5 {
    background: rgb(83, 163, 228);
}

.color-6 {
    background: rgb(145, 110, 236);
}

.color-7 {
    background: rgb(202, 203, 207);
}

.color-8 {
    background: rgb(255, 159, 64);
}

.color-9 {
    background: rgb(199, 199, 199);
}

.color-10 {
    background: rgb(255, 205, 210);
}

.color-11 {
    background: rgb(255, 99, 71);
}

.color-12 {
    background: rgb(255, 193, 7);
}

.color-13 {
    background: rgb(76, 175, 80);
}

.color-14 {
    background: rgb(156, 39, 176);
}

.color-15 {
    background: rgb(233, 30, 99);
}

.color-16 {
    background: rgb(3, 169, 244);
}

.w-50 {
    width: 5rem;
}

.w-100 {
    width: 10rem;
}

.w-130 {
    min-width: 13rem;
}

.w-150 {
    width: 15rem;
    min-width: 15rem;
}

.w-200 {
    width: 20rem;
    min-width: 20rem;
}

.w-240 {
    width: 24rem;
}

.w-380 {
    width: 38rem;
}

.header {
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 1.4rem 0;
}
.header__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__main--left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 4rem;
}
.header__main--left .logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 14.4rem;
}
.header__main--left .search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.5rem;
}
.header__main--left .search span {
    line-height: 1.9rem;
}
.header__main--left .search input[type="text"] {
    width: 40rem;
    height: 4.4rem;
    background: #f7f7f7;
    border: 1px solid #b9c0c7;
    border-radius: 0.8rem;
    padding: 0 1.2rem;
    font-size: 1.8rem;
    color: #000000;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.header__main--left .search input[type="text"]:focus {
    outline: 0;
    outline: none;
}
.header__main--left .search .btn-primary {
    height: 4.4rem;
}
.header__main--right {
    position: relative;
}
.header__main--right .more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 4.4rem;
    height: 4.4rem;
    background: #7e8a96;
    line-height: 1;
    font-size: 1.8rem;
    color: #ffffff;
    border-radius: 50%;
}
.header__main--right .more:hover {
    background: var(--background-primary-btn);
    color: #ffffff;
}
.header__main--right ul {
    display: none;
    min-width: 18rem;
    position: absolute;
    top: 6rem;
    right: 0;
    background: #ffffff;
    border: 1px solid #d1d1d1;
    border-radius: 0.8rem;
    padding: 1rem 0;
    z-index: 99;
}
.header__main--right ul::after {
    content: "";
    width: 1.6rem;
    height: 1.127rem;
    background-image: url("../images/arows.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    z-index: -1;
}
.header__main--right ul li a {
    display: block;
    padding: 0.8rem 1.2rem;
    font-size: 1.4rem;
    line-height: 1.9rem;
    color: var(--text-color);
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}
.header__main--right ul li a strong {
    font-size: 1.6rem;
}
.header__main--right ul li a:hover {
    color: var(--loud-color);
}

select,
textarea,
input[type="text"],
input[type="email"] {
    width: 100%;
    height: 4.8rem;
    background: #f7f7f7;
    border: 1px solid #b9c0c7;
    border-radius: 0.8rem;
    padding: 0 1.2rem;
    font-size: 1.8rem;
    color: #000000;
    -webkit-box-shadow: none;
    box-shadow: none;
    resize: vertical;
}
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus {
    outline: none;
    outline: 0;
}
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
    color: rgba(28, 28, 28, 0.3);
}
select::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder {
    color: rgba(28, 28, 28, 0.3);
}
select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
    color: rgba(28, 28, 28, 0.3);
}
select::-ms-input-placeholder,
textarea::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder {
    color: rgba(28, 28, 28, 0.3);
}
select::placeholder,
textarea::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder {
    color: rgba(28, 28, 28, 0.3);
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    -o-text-overflow: "";
    text-overflow: "";
}

textarea {
    min-height: 30rem;
    vertical-align: middle;
}

.select {
    position: relative;
}
.select::after {
    content: "";
    width: 1.2rem;
    height: 0.7rem;
    background-image: url("../images/select-down.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 2.1rem;
    right: 1.2rem;
}

.switch-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 4.8rem;
    height: 2.6rem;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cecece;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 1.4rem;
}
.switch .slider::before {
    position: absolute;
    content: "";
    height: 2rem;
    width: 2rem;
    left: 0.3rem;
    bottom: 0.3rem;
    background-color: white;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
}
.switch input:checked + .slider {
    background-color: var(--background-loud);
}
.switch input:checked + .slider:before {
    -webkit-transform: translateX(2.4rem);
    -ms-transform: translateX(2.4rem);
    transform: translateX(2.4rem);
}

.site-content {
    padding-top: 11.2rem;
    padding-bottom: 4rem;
}
.site-content__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 4rem;
}
.site-content__main .sidebar {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 24rem;
}
.site-content__main .article {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    width: calc((100% - 24rem) - 4rem);
}

.sidebar__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.sidebar__btn .more {
    width: 100%;
}

.sidebar__nav {
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
}
.sidebar__nav--items {
    margin-bottom: 3.3rem;
}
.sidebar__nav--items h3 {
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--loud-color);
    border-bottom: 1px solid var(--loud-color);
}
.sidebar__nav--items ul li {
    margin-bottom: 1.2rem;
}
.sidebar__nav--items ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: var(--menu-color);
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}
.sidebar__nav--items ul li a picture {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 2.4rem;
}
.sidebar__nav--items ul li a:hover {
    color: var(--menu-color);
    opacity: 0.7;
}
.sidebar__nav--items ul li:last-child {
    margin-bottom: 0;
}
.sidebar__nav--items:nth-child(2) h3 {
    color: #f09d00;
    border-color: #f09d00;
}
.sidebar__nav--items:nth-child(3) h3 {
    color: #0ca2e5;
    border-color: #0ca2e5;
}
.sidebar__nav--items:nth-child(4) h3 {
    color: #28c765;
    border-color: #28c765;
}
.sidebar__nav--items:last-child {
    margin-bottom: 0;
}

.sidebar__more .more {
    width: 100%;
}

.panel {
    margin-bottom: 3.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
    margin-right: -2rem;
}
.panel__items {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: calc((100% / 3) - 2rem);
    background: #ffffff;
    border-radius: 0.8rem;
    overflow: hidden;
}
.panel__items h3 {
    text-align: center;
    background: #0ca2e5;
    line-height: 3.6rem;
    color: #ffffff;
}
.panel__items .txt {
    padding: 2rem;
}
.panel__items .txt p {
    margin-bottom: 2.3rem;
    font-size: 1.5rem;
    line-height: 1.6rem;
}
.panel__items .txt .number {
    text-align: right;
    font-size: 4rem;
    line-height: 4rem;
    font-weight: 700;
}
.panel__items .txt .number span {
    font-size: 2rem;
    line-height: 2.4rem;
}
.panel__items:nth-child(1) h3 {
    background-color: #d51760;
}
.panel__items:nth-child(2) h3 {
    background-color: #f09d00;
}
.panel__items:nth-child(3) h3 {
    background-color: #28c765;
}
.panel__items:nth-child(6) h3 {
    background-color: #6f2acc;
}

.table-wrap {
    background: #ffffff;
    border-radius: 1.2rem;
    width: 100%;
    padding: 0 2rem 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.scroll-time {
    position: relative;
}
.scroll-time__date {
    width: 15rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    background: #ffffff;
    padding-top: 4.1rem;
    padding-left: 2rem;
    border-right: 1px solid #cecece;
}
.scroll-time__date ul li {
    border-top: 1px solid #cecece;
    line-height: 4.3rem;
}
.scroll-time__date ul li:last-child {
    border-bottom: 1px solid #cecece;
}

.table-bs {
    font-size: 1.6rem;
    line-height: 1.9rem;
    width: 96rem;
}
.table-bs tr:first-child {
    border-bottom: 1px solid #cecece;
    font-size: 1.4rem;
    line-height: 1.7rem;
}
.table-bs tr th {
    text-align: left;
    font-weight: 400;
    padding: 1.2rem 1.5rem;
    vertical-align: middle;
}
.table-bs tr th.text-center {
    text-align: center;
}
.table-bs tr td {
    vertical-align: middle;
    border-bottom: 1px solid #cecece;
    padding: 1.2rem 1.5rem;
}
.table-bs tr a {
    color: var(--loud-color);
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}
.table-bs tr a.link {
    color: var(--text-color);
    text-decoration: underline;
}
.table-bs tr .color {
    width: 1.6rem;
    height: 1.6rem;
    display: block;
}
.table-bs tr button {
    white-space: nowrap;
}
.table-bs tr .status {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    padding: 0 1.7rem;
    background: var(--background-primary-btn);
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 3.2rem;
    font-weight: 700;
    border-radius: 2.4rem;
}
.table-bs tr .status:hover {
    opacity: 0.7;
}
.table-bs tr .negative {
    background: #d51818;
}

.table-bs td.url-display-cell {
    text-align: center;
}

.table-number tr td,
.table-number tr th {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.table-number tr td:first-child,
.table-number tr th:first-child {
    border-right: 1px solid #cecece;
}

.table-number tr a {
    color: var(--background-primary-btn);
}

.table-bg tr td {
    background: #d1eafc;
}

.table-bg tr.bg td {
    background: #ffdbe3;
}
.table-bg tr.bg td .success {
    background: #d51818;
}

.nav-bar {
    background: #ffffff;
    border: 0.3rem solid #d3e3f0;
    border-radius: 1.2rem;
    margin-bottom: 2.4rem;
    padding: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.nav-bar__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
}
.nav-bar__btn .more {
    height: 4rem;
    min-width: 12rem;
}
.nav-bar__device {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
}
.nav-bar__device .more {
    padding: 0 1.1rem;
    min-width: 4rem;
    height: 4rem;
}

.chart-box {
    margin-bottom: 2.4rem;
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
}
.chart-box__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3.5rem;
}
.chart-box__head--btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.8rem;
}
.chart-box__specification {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}
.chart-box__specification span {
    font-size: 1.4rem;
    line-height: 1.7rem;
}
.chart-box__specification .more-btn {
    padding-left: 2.4rem;
    margin-left: 1.4rem;
    border-left: 1px solid #cecece;
}

.registered-date__ip {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.registered-date__ip .date {
    width: 16rem;
}
.registered-date__ip .date i {
    color: var(--background-primary-btn);
    position: absolute;
    top: 50%;
    left: 1.2rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.registered-date__ip .date input {
    width: 100%;
    height: 4.8rem;
    padding: 0 1.2rem 0 3.6rem;
    background: #ffffff;
    border: 1px solid #cecece;
    border-radius: 0.8rem;
    font-size: 1.4rem;
}

.serch-ip {
    position: relative;
}
.serch-ip i {
    font-size: 1.8rem;
    line-height: 1;
    color: #8d8d8d;
    position: absolute;
    top: 50%;
    left: 2rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.serch-ip input {
    width: 100%;
    height: 4.8rem;
    padding: 0 1.2rem 0 5.2rem;
    background: #ffffff;
    border: 1px solid #b9c0c7;
    border-radius: 2.4rem;
    font-size: 1.8rem;
    color: #000000;
}

.modal {
    display: none;
    width: 100%;
    max-width: 68rem;
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 4rem;
}
.modal .serch-ip {
    margin-bottom: 2.4rem;
}
.modal .serch-result ul li {
    font-size: 1.8rem;
    line-height: 1;
    color: #000000;
    margin-bottom: 1.5rem;
}

.head-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}
.head-box h2 {
    margin-bottom: 0;
}
.head-box__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
}

.create {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
}
.create .select {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16rem;
}
.create .select select {
    background: #ffffff;
}
.create .select:nth-child(2) {
    width: 28rem;
}

.form-column {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
    margin-bottom: 1.6rem;
}
.form-column h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.form-column__main .form-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid #cecece;
    padding: 0.8rem 0;
}
.form-column__main .form-group:last-child {
    border-bottom: 1px solid #cecece;
}
.form-column__main .form-group .labels {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 30rem;
    line-height: 4rem;
}
.form-column__main .form-group .input {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    width: 100%;
}
.form-column__main .form-group .input input {
    height: 4rem;
    font-size: 1.6rem;
}

.login-box {
    width: 100vw;
    height: 100vh;
    padding: 8rem 2rem;
}
.login-box__main {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 4rem 8rem;
}
.login-box__main--logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 1.2rem;
    margin-bottom: 4rem;
}
.login-box__main--logo a {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 28rem;
}
.login-box__main--logo span {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 1.4rem;
    line-height: 1.7rem;
    color: #0971e8;
}
.login-box__main .form-group {
    position: relative;
    margin-bottom: 1.6rem;
}
.login-box__main .form-group input {
    width: 100%;
    height: 4.8rem;
    border: none;
    border-radius: 0.8rem;
    padding: 0 1.2rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 1.6rem;
    border: 1px solid #b9c0c7;
    background: #f7f7f7;
}
.login-box__main .form-group .password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.login-box__main .form-group .password-input-wrapper input {
    padding-right: 4.8rem;
}
.login-box__main .form-group .password-toggle {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.8rem;
    font-size: 1.6rem;
    color: #8d8d8d;
    transition: color 0.2s ease;
}
.login-box__main .form-group .password-toggle:hover {
    color: #171e26;
}
.login-box__main .form-group .password-toggle:focus {
    outline: none;
}
.login-box__main .form-group input:focus {
    outline: 0;
    outline: none;
}
.login-box__main .form-group input::-webkit-input-placeholder {
    color: var(--text-dark-color);
}
.login-box__main .form-group input::-moz-placeholder {
    color: var(--text-dark-color);
}
.login-box__main .form-group input:-ms-input-placeholder {
    color: var(--text-dark-color);
}
.login-box__main .form-group input::-ms-input-placeholder {
    color: var(--text-dark-color);
}
.login-box__main .form-group input::placeholder {
    color: var(--text-dark-color);
}
.login-box__main .form-group input.error {
    border-color: var(--loud-color);
}
.login-box__main .form-group p {
    font-size: 1.4rem;
    line-height: 2rem;
    margin-bottom: 0;
}
.login-box__main .form-group p.error {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.8rem;
    color: var(--loud-color);
}
.login-box__main .more {
    width: 100%;
    margin-bottom: 2.4rem;
}

.notification-box {
    position: fixed;
    z-index: 999;
    right: 1rem;
    top: 8.2rem;
}
.notification-box ul li {
    min-width: 40rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 0.8rem;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
    font-weight: 700;
    color: #0971e8;
    padding: 1.7rem 3.6rem 1.7rem 1.6rem;
}
.notification-box ul li.error {
    color: #d51818;
}
.notification-box ul li i {
    color: #8d8d8d;
    cursor: pointer;
}
.description {
    margin-bottom: 3.6rem;
}
.description__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.3rem;
}
.description__head time {
    font-size: 2rem;
    line-height: 2.8rem;
    font-weight: 700;
}
.description__head span {
    display: inline-flex;
    padding: 0 1.6rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 3.2rem;
    background: #00ab94;
    border-radius: 1.6rem;
}
.description__main {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 2rem;
}
/* layout - Responsive .
========================================================================== */
@media (max-width: 1680px) {
    html {
        font-size: 0.595237vw;
    }
}

/* show full content modal css (job change conference & open work) ========================================================================== */
#fullContentModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
}

#fullContentModal.show {
    display: block !important;
    opacity: 1;
}

#fullContentModal .modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    -moz-transition: transform 0.3s ease, opacity 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
}

#fullContentModal .modal-content.show {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
}

#fullContentModal .close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 20px;
}

#fullContentModal h2 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    padding-right: 40px;
}

#fullContentText {
    margin-top: 20px;
    line-height: 1.6;
    color: #555;
    white-space: pre-wrap;
    word-wrap: break-word;
    max-height: 60vh;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

/* URL Input Modal CSS ========================================================================== */
#urlInputModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
}

#urlInputModal.show {
    display: block !important;
    opacity: 1;
}

#urlInputModal .modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 30px 30px 20px 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-50px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    -moz-transition: transform 0.3s ease, opacity 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

#urlInputModal .modal-content.show {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
}

#urlInputModal .close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 20px;
}

#urlInputModal .close:hover,
#urlInputModal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#urlInputModal h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    padding-right: 40px;
}

#urlInputModal h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

#urlInputModal .instruction-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

#urlInputModal .instruction-section ol {
    padding-left: 20px;
}

#urlInputModal .instruction-section li {
    margin-bottom: 10px;
}

#urlInputModal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

#urlInputModal .form-control {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#urlInputModal .form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#urlInputModal .alert {
    position: relative;
    padding: 12px 20px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

#urlInputModal .alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

#urlInputModal .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 4px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

#urlInputModal .btn-primary {
    color: #fff;
    background-color: var(--background-primary-btn);
    border-color: var(--background-primary-btn);
}

#urlInputModal .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

#urlInputModal .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

#urlInputModal .btn-secondary:hover {
    background-color: #545b62;
    border-color: #4e555b;
}

#urlInputModal .btn-secondary {
    margin-right: 10px;
}

#urlInputModal .form-group {
    margin: 20px 0;
}

#urlInputModal .form-group label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

#urlInputModal .form-actions {
    flex-shrink: 0;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    margin-top: 0 !important;
    text-align: right;
}

/* Responsive cho màn hình nhỏ */
/* Tablet (iPad) */
@media (max-width: 1024px) {
    #urlInputModal .modal-content {
        width: 85%;
        margin: 5% auto 5% auto;
        padding: 20px;
        max-height: 70vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    #urlInputModal h2 {
        font-size: 19px;
        margin-bottom: 12px;
        flex-shrink: 0;
    }

    #urlInputModal .modal-body {
        flex: 1 1 auto;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 10px;
        min-height: 0;
    }

    #urlInputModal .form-actions {
        padding: 15px 0;
        margin: 0 !important;
        flex-shrink: 0;
        flex-grow: 0;
        border-top: 1px solid #e9ecef;
        background: #fff;
    }

    #urlInputModal .btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px;
    }

    #urlInputModal .instruction-section {
        padding: 15px;
        margin-bottom: 15px;
    }

    #urlInputModal .alert {
        padding: 10px 15px;
        margin: 12px 0;
    }
}

/* Mobile landscape & Portrait tablet */
@media (max-width: 768px) {
    #urlInputModal .modal-content {
        width: 90%;
        margin: 5% auto;
        padding: 20px 20px 15px 20px;
        max-height: 90vh;
        box-sizing: border-box;
    }

    #urlInputModal h2 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-right: 30px;
    }

    #urlInputModal h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    #urlInputModal .instruction-section {
        margin-bottom: 15px;
    }

    #urlInputModal .instruction-section ol {
        padding-left: 20px;
        font-size: 13px;
        margin: 10px 0;
    }

    #urlInputModal .instruction-section li {
        margin-bottom: 8px;
        line-height: 1.6;
    }

    #urlInputModal .alert {
        padding: 10px 15px;
        font-size: 13px;
        margin: 15px 0;
    }

    #urlInputModal .form-group {
        margin: 15px 0 !important;
    }

    #urlInputModal .form-group label {
        font-size: 14px;
        margin-bottom: 8px !important;
    }

    #urlInputModal .form-control {
        padding: 12px;
        font-size: 14px;
        width: 100%;
        min-height: 44px;
        box-sizing: border-box;
    }

    #urlInputModal .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    #urlInputModal .btn-secondary {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    #urlInputModal .form-actions {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 0 !important;
        padding-top: 12px;
        flex-shrink: 0;
        border-top: 1px solid #e9ecef;
    }

    #urlInputModal .close {
        font-size: 35px;
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        line-height: 35px;
    }

    #urlInputModal .modal-body {
        padding: 0;
        flex: 1;
        overflow-y: auto;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #urlInputModal .modal-content {
        width: 95%;
        margin: 3% auto;
        padding: 15px 15px 12px 15px;
        max-height: 94vh;
    }

    #urlInputModal h2 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-right: 25px;
    }

    #urlInputModal h3 {
        font-size: 14px;
    }

    #urlInputModal .instruction-section ol {
        font-size: 12px;
        padding-left: 18px;
    }

    #urlInputModal .instruction-section li {
        margin-bottom: 6px;
    }

    #urlInputModal .alert {
        padding: 8px 12px;
        font-size: 12px;
    }

    #urlInputModal .form-control {
        padding: 10px;
        font-size: 14px;
        min-height: 44px;
    }

    #urlInputModal .btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    #urlInputModal .close {
        font-size: 30px;
        top: 8px;
        right: 10px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
