/* Application */
/* Root */
/* Basic */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@600;800&family=Roboto:wght@400;500;700&display=swap");
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;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

body *:first-child {
    margin-top: 0;
}

body *:last-child {
    margin-bottom: 0;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
    border: none;
    outline: none;
}

ul img, ol img, p img {
    display: inline-block;
    vertical-align: text-top;
}

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

/* Spacing */
/*@import "spacing";*/
/* Layout */
body {
    min-width: 320px;
    background: #FFF;
    position: relative;
}
body.no-overflow {
    overflow: hidden;
}
body.members {
    background: #E8E9EA;
}
@media print {
    body.members {
        background: transparent;
    }
}

.site-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100%;
    position: relative;
}

.site-content {
    flex: 1 1 auto;
}
.site-content.v-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
}

.section {
    padding: 5rem 0;
    position: relative;
}
.section.even {
    background-color: #F8F8F9;
}
.section.light {
    background-color: rgba(0, 113, 235, 0.1);
}
.section.dark {
    color: #FFF;
    background-color: #222431;
}
.section.md {
    padding: 3rem 0;
}
.section.xl {
    padding: 7rem 0;
}
.section.xl .h1 {
    margin: 7rem 0;
}
.section.xl .h1:first-child {
    margin-top: 0;
}
.section.xl .h1:last-child {
    margin-bottom: 0;
}
.section.pt-0 {
    padding-top: 0;
}

.wrapper {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding-right: 3rem;
    padding-left: 3rem;
    position: relative;
}
@media print {
    .wrapper {
        padding-right: 0;
        padding-left: 0;
    }
}

.fx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width: 1279px) {
    .order-xl-first {
        order: -1;
    }
}

@media only screen and (max-width: 1279px) {
    .order-xl-last {
        order: 1;
    }
}

@media only screen and (max-width: 1023px) {
    .order-lg-first {
        order: -1;
    }
}

@media only screen and (max-width: 1023px) {
    .order-lg-last {
        order: 1;
    }
}

@media only screen and (max-width: 767px) {
    .order-md-first {
        order: -1;
    }
}

@media only screen and (max-width: 767px) {
    .order-md-last {
        order: 1;
    }
}

@media only screen and (max-width: 1279px) {
    .d-xl-none {
        display: none;
    }
}

@media only screen and (max-width: 1023px) {
    .d-lg-none {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .d-md-none {
        display: none;
    }
}

.d-xl-block {
    display: none;
}
@media only screen and (max-width: 1279px) {
    .d-xl-block {
        display: block;
    }
}

.d-lg-block {
    display: none;
}
@media only screen and (max-width: 1023px) {
    .d-lg-block {
        display: block;
    }
}

.d-md-block {
    display: none;
}
@media only screen and (max-width: 767px) {
    .d-md-block {
        display: block;
    }
}

.cf {
    display: block;
}
.cf:after {
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
    content: ".";
}

html[xmlns] .cf {
    display: block;
}

* html .cf {
    height: 1%;
}

.skip-to-content-link {
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
}
.skip-to-content-link:focus {
    color: #FFF;
    background-color: #222431;
    left: auto;
    top: auto;
    width: 15%;
    height: auto;
    overflow: auto;
    outline: none;
    padding: 2px;
    text-align: center;
    font-size: 1em;
    z-index: 10000;
}

.mw-xs {
    max-width: 360px;
}

.mw-sm {
    max-width: 480px;
}

.mw-md {
    max-width: 640px;
}

.mw-lg {
    max-width: 800px;
}

.mw-xl {
    max-width: 960px;
}

.g-xs {
    gap: 1rem;
}

.g-sm {
    gap: 1.5rem;
}

.g-md {
    gap: 2rem;
}

.g-lg {
    gap: 3rem;
}

.g-xl {
    gap: 4rem;
}

body .m7 {
    margin-top: 7rem;
    margin-bottom: 7rem;
}
body .mt7 {
    margin-top: 7rem;
}
body .mb7 {
    margin-bottom: 7rem;
}
body .m6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
body .mt6 {
    margin-top: 6rem;
}
body .mb6 {
    margin-bottom: 6rem;
}
body .m5 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}
body .mt5 {
    margin-top: 5rem;
}
body .mb5 {
    margin-bottom: 5rem;
}
body .m4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
body .mt4 {
    margin-top: 4rem;
}
body .mb4 {
    margin-bottom: 4rem;
}
body .m3 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
body .mt3 {
    margin-top: 3rem;
}
body .mb3 {
    margin-bottom: 3rem;
}
body .m2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
body .mt2 {
    margin-top: 2rem;
}
body .mb2 {
    margin-bottom: 2rem;
}
body .m1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
body .mt1 {
    margin-top: 1rem;
}
body .mb1 {
    margin-bottom: 1rem;
}
body .m0 {
    margin-top: 0;
    margin-bottom: 0;
}
body .mt0 {
    margin-top: 0;
}
body .mb0 {
    margin-bottom: 0;
}
body .mxa {
    margin-right: auto;
    margin-left: auto;
}

.gototop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background: rgba(34, 36, 49, 0.2);
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 888;
    border-radius: 50%;
}
@media print {
    .gototop {
        display: none;
    }
}
.gototop:hover {
    background: rgba(0, 113, 235, 0.5);
}
.gototop::before {
    display: block;
    content: "";
    width: 2rem;
    height: 2rem;
    background: url(../img/arw.svg) center center no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(34, 36, 49, 0.05);
    border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(34, 36, 49, 0.2);
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 36, 49, 0.4);
}

/* OneTrust Cookies */
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk.otFloatingRoundedCorner {
        width: calc(100% - 2rem);
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk.otFloatingRoundedCorner.ot-bottom-right {
        right: 1rem;
    }
}
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk #onetrust-policy {
        margin-top: 10px;
    }
}
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk .banner-header {
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk #onetrust-policy-text {
        padding: 5px 15px 10px 15px;
    }
}
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk #onetrust-policy-text,
    body #onetrust-banner-sdk .ot-b-addl-desc {
        font-size: 11px;
        line-height: 1.3;
    }
}
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk #onetrust-button-group-parent {
        padding: 0 15px 15px 15px;
    }
}
body #onetrust-consent-sdk #onetrust-accept-btn-handler,
body #onetrust-banner-sdk #onetrust-reject-all-handler {
    background: #238500;
    border-color: #238500;
}
body #onetrust-consent-sdk #onetrust-banner-sdk a[href],
body #onetrust-consent-sdk #onetrust-banner-sdk a[href] font,
body #onetrust-consent-sdk #onetrust-banner-sdk .ot-link-btn {
    color: #238500;
    outline: none;
}
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk #onetrust-accept-btn-handler,
    body #onetrust-banner-sdk #onetrust-reject-all-handler,
    body #onetrust-banner-sdk #onetrust-pc-btn-handler {
        padding: 10px;
        font-size: 12px;
        line-height: 1;
    }
}
@media only screen and (max-width: 767px) {
    body #onetrust-banner-sdk button {
        margin: 0;
    }
}

/* Typography */
html {
    font-size: 10px;
}
@media only screen and (max-width: 1279px) {
    html {
        font-size: 8px;
    }
}
@media only screen and (max-width: 767px) {
    html {
        font-size: 6px;
    }
}
@media only screen and (max-width: 413px) {
    html {
        font-size: 5px;
    }
}

/*html {
	font-size: 62.5%;
	@include xl {
		font-size: calc(62.5% / 4 * 3);
	}
	@include md {
		font-size: calc(62.5% / 3 * 2);
	}
	@include sm {
		font-size: calc(62.5% / 2);
	}
}*/
body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #222431;
}
@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

h1,
h2,
h3,
h4,
h5 {
    margin: 4rem 0 2rem 0;
    padding: 0;
    font-family: "Roboto Slab", serif;
    font-weight: 600;
    /*line-height: 1.25;*/
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
    display: inline-block;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small {
    display: inline-block;
    font-size: calc(100% / 3 * 2);
}
@media only screen and (max-width: 767px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br {
        display: none;
    }
}
h1.line,
h2.line,
h3.line,
h4.line,
h5.line {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
h1.line::after,
h2.line::after,
h3.line::after,
h4.line::after,
h5.line::after {
    content: '\a0';
    width: 100%;
    height: 1px;
    margin-left: 2rem;
    background: #D3D3D6;
    overflow: hidden;
    position: absolute;
    bottom: 0.25em;
}
h1.gradient-special,
h2.gradient-special,
h3.gradient-special,
h4.gradient-special,
h5.gradient-special {
    padding: 2rem;
    background: #0071eb;
    background: linear-gradient(90deg, rgba(0, 113, 235, 0.1012780112) 0%, rgba(255, 255, 255, 0) 100%);
}
h1.fx,
h2.fx,
h3.fx,
h4.fx,
h5.fx {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}
h1.fx.center,
h2.fx.center,
h3.fx.center,
h4.fx.center,
h5.fx.center {
    justify-content: center;
}
h1 .icn,
h2 .icn,
h3 .icn,
h4 .icn,
h5 .icn {
    flex: 0 0 auto;
    margin-right: 2rem;
}
h1 .icn.lg img,
h2 .icn.lg img,
h3 .icn.lg img,
h4 .icn.lg img,
h5 .icn.lg img {
    width: 32px;
}
@media only screen and (max-width: 767px) {
    h1 .icn.lg img,
    h2 .icn.lg img,
    h3 .icn.lg img,
    h4 .icn.lg img,
    h5 .icn.lg img {
        width: 24px;
    }
}
h1 .icn.md,
h2 .icn.md,
h3 .icn.md,
h4 .icn.md,
h5 .icn.md {
    margin-right: 1.5rem;
}
h1 .icn.md img,
h2 .icn.md img,
h3 .icn.md img,
h4 .icn.md img,
h5 .icn.md img {
    width: 24px;
}
@media only screen and (max-width: 767px) {
    h1 .icn.md img,
    h2 .icn.md img,
    h3 .icn.md img,
    h4 .icn.md img,
    h5 .icn.md img {
        width: 16px;
    }
}
h1 .icn.sm,
h2 .icn.sm,
h3 .icn.sm,
h4 .icn.sm,
h5 .icn.sm {
    margin-right: 1rem;
}
h1 .icn.sm img,
h2 .icn.sm img,
h3 .icn.sm img,
h4 .icn.sm img,
h5 .icn.sm img {
    width: 16px;
}

h1,
.h1 {
    font-size: 44px;
}
@media only screen and (max-width: 1279px) {
    h1,
    .h1 {
        font-size: 36px;
    }
}
@media only screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 24px;
    }
}
@media only screen and (max-width: 413px) {
    h1,
    .h1 {
        font-size: 20px;
    }
}

h2,
.h2 {
    font-size: 36px;
}
@media only screen and (max-width: 1279px) {
    h2,
    .h2 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px) {
    h2,
    .h2 {
        font-size: 24px;
    }
}
@media only screen and (max-width: 413px) {
    h2,
    .h2 {
        font-size: 20px;
    }
}
h2.checkmark::before,
.h2.checkmark::before {
  display: inline-block;
  content: "";
  width: 36px;
  height: 36px;
  margin: 9px 12px 0 0;
  background: url(../img/icns/fill/32/checkmark.svg) 0 0 no-repeat;
  background-size: 100% auto;
  border-radius: 50%;
  vertical-align: top;
}
@media only screen and (max-width: 1279px) {
  h2.checkmark::before,
  .h2.checkmark::before {
    width: 32px;
    height: 32px;
    margin-top: 7px;
  }
}
@media only screen and (max-width: 767px) {
  h2.checkmark::before,
  .h2.checkmark::before {
    width: 24px;
    height: 24px;
    margin-top: 6px;
  }
}
@media only screen and (max-width: 767px) {
  h2.checkmark::before,
  .h2.checkmark::before {
    width: 20px;
    height: 20px;
  }
}

h3,
.h3 {
    font-size: 30px;
}
@media only screen and (max-width: 1279px) {
    h3,
    .h3 {
        font-size: 24px;
    }
}
@media only screen and (max-width: 767px) {
    h3,
    .h3 {
        font-size: 18px;
    }
}

h4,
.h4 {
    font-size: 24px;
}
@media only screen and (max-width: 1279px) {
    h4,
    .h4 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px) {
    h4,
    .h4 {
        font-size: 16px;
    }
}

h5,
.h5 {
    font-size: 18px;
}
@media only screen and (max-width: 1279px) {
    h5,
    .h5 {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) {
    h5,
    .h5 {
        font-size: 14px;
    }
}

p,
ul,
ol {
    margin: 2rem 0;
}

ul,
ol {
    margin-left: 4rem;
}
ul li,
ol li {
    margin: 1rem 0;
}

a {
    color: #0071EB;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
a:hover, a:active, a:focus {
    color: #007BFF;
    outline: none;
}

.ul-check {
    margin: 0;
}
.ul-check li {
    margin: 0;
    padding: 3px 0 3px 26px;
    list-style: none;
    position: relative;
    -webkit-column-break-inside: avoid;
    -moz-page-break-inside: avoid;
    break-inside: avoid;
    -o-column-break-inside: avoid;
    -ms-column-break-inside: avoid;
    column-break-inside: avoid;
    page-break-inside: avoid;
}
@media only screen and (max-width: 767px) {
    .ul-check li {
        padding: 2px 0 2px 20px;
    }
}
.ul-check li::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/checkmark.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(44%) sepia(54%) saturate(6689%) hue-rotate(76deg) brightness(92%) contrast(101%);
    position: absolute;
    top: 7px;
    left: 0;
}
@media only screen and (max-width: 767px) {
    .ul-check li::before {
        width: 12px;
        height: 12px;
    }
}

.color-special {
    color: #0071EB;
}

.color-black {
    color: #222431;
}

.color-warning {
    color: #EA0000;
}

.color-success {
    color: #238500;
}

.color-gray {
    color: #64656E;
}

.filter-special {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}

.filter-black {
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
}

.filter-warning {
    filter: brightness(0) saturate(100%) invert(12%) sepia(68%) saturate(6264%) hue-rotate(4deg) brightness(102%) contrast(128%);
}

.filter-success {
    filter: brightness(0) saturate(100%) invert(44%) sepia(54%) saturate(6689%) hue-rotate(76deg) brightness(92%) contrast(101%);
}

.center {
    text-align: center;
}

.long-word {
    display: inline-block;
    vertical-align: top;
    word-break: break-all;
}

.long-text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.nowrap {
    white-space: nowrap;
}

.hint-info {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../img/qm.svg) center center no-repeat;
    background-size: 100% auto;
    vertical-align: top;
}

.hint,
[data-hint] {
    position: relative;
    display: inline-block;
}

.hint::before,
.hint::after,
[data-hint]::before,
[data-hint]::after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    z-index: 1000000;
    pointer-events: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.hint:hover::before,
.hint:hover::after,
[data-hint]:hover::before,
[data-hint]:hover::after {
    visibility: visible;
    opacity: 1;
}

.hint::before,
[data-hint]::before {
    content: '';
    position: absolute;
    background: transparent;
    border: 8px solid transparent;
    z-index: 1000001;
}

.hint::after,
[data-hint]::after {
    content: attr(data-hint);
    background: #FFF;
    color: #222431;
    padding: 3rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    width: 320px;
    text-align: left;
    text-transform: none;
    border-radius: 10px;
    -webkit-box-shadow: 0 5px 20px 0 rgba(34, 36, 49, 0.3);
    box-shadow: 0 5px 20px 0 rgba(34, 36, 49, 0.3);
}
@media only screen and (max-width: 767px) {
    .hint::after,
    [data-hint]::after {
        border-radius: 5px;
    }
}
@media only screen and (max-width: 767px) {
    .hint::after,
    [data-hint]::after {
        width: 240px;
    }
}

.hint--top::before,
.hint--top::after {
    bottom: 100%;
    left: 50%;
}
@media only screen and (max-width: 1279px) {
    .hint--top::before,
    .hint--top::after {
        left: inherit;
        right: -4rem;
    }
}

.hint--top::before {
    margin-bottom: -15px;
    margin-left: -8px;
    border-top-color: #FFF;
}
@media only screen and (max-width: 1279px) {
    .hint--top::before {
        margin-left: 0;
        left: inherit;
        right: 0;
    }
}

.hint--top::after {
    margin-left: -160px;
}
@media only screen and (max-width: 1279px) {
    .hint--top::after {
        margin-left: 0;
    }
}

.hint--top:hover::before,
.hint--top:hover::after {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}

.txt-with-icn img {
    display: inline-block;
    margin: 0.3rem 1rem 0 0;
    vertical-align: top;
}
.txt-with-icn.md {
    font-size: 24px;
}
@media only screen and (max-width: 767px) {
    .txt-with-icn.md {
        font-size: 16px;
    }
}
.txt-with-icn.md img {
    width: 24px;
    margin: 0.5rem 1.2rem 0 0;
}
@media only screen and (max-width: 767px) {
    .txt-with-icn.md img {
        width: 16px;
    }
}
.txt-with-icn.lg {
    font-size: 30px;
}
@media only screen and (max-width: 767px) {
    .txt-with-icn.lg {
        font-size: 20px;
    }
}
.txt-with-icn.lg img {
    width: 32px;
    margin: 0.7rem 1.5rem 0 0;
}
@media only screen and (max-width: 767px) {
    .txt-with-icn.lg img {
        width: 20px;
    }
}

/* Notifications */
.notify {
    page-break-inside: avoid;
}
.notify .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: -0.5rem;
}
.notify .col {
    flex: 0 1 auto;
    padding: 0.5rem;
}
.notify .itm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem 2.4rem;
    background-color: #FFF;
    border-radius: 0.8rem;
}
.notify .itm.info {
    background-color: #C8E2FF;
}
.notify .itm.info .icn {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.notify .itm.success {
    background-color: #CDE9C3;
}
.notify .itm.success .icn {
    filter: brightness(0) saturate(100%) invert(44%) sepia(54%) saturate(6689%) hue-rotate(76deg) brightness(92%) contrast(101%);
}
.notify .itm.warning {
    background-color: #FFEECC;
}
.notify .itm.warning .icn {
    filter: brightness(0) saturate(100%) invert(62%) sepia(69%) saturate(2838%) hue-rotate(359deg) brightness(101%) contrast(105%);
}
.notify .itm.danger {
    background-color: #FBCCCC;
}
.notify .itm.danger .icn {
    filter: brightness(0) saturate(100%) invert(12%) sepia(68%) saturate(6264%) hue-rotate(4deg) brightness(102%) contrast(128%);
}
.notify .icn {
    flex: 0 0 auto;
    width: 16px;
    padding-top: 0.3rem;
}

/* Buttons */
.button .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.btn {
    display: inline-block;
    color: #FFF;
    font-weight: 700;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background: #238500;
    border-radius: 100px;
    vertical-align: top;
    outline: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.btn:hover, .btn:focus, .btn:active {
    color: #FFF;
}
.btn:hover, .btn:focus-visible {
    background: #2A9E00;
}
.btn.arw::after {
    display: inline-block;
    content: "";
    background: url(../img/btn_arw.svg) 0 0 no-repeat;
    background-size: 100% auto;
}
.btn.back::before {
    display: inline-block;
    content: "";
    background: url(../img/btn_arw.svg) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.btn.home::before {
    display: inline-block;
    content: "";
    background: url(../img/icns/fill/16/home.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
}
.btn.download::before {
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icns/fill/16/download.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
    vertical-align: top;
}
.btn.edit::before {
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icns/fill/16/edit.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
    vertical-align: top;
}
.btn.sm {
    padding: 10px 24px;
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .btn.sm {
        padding: 7px 20px;
        font-size: 12px;
    }
}
.btn.sm.line {
    padding: 8px 22px;
}
@media only screen and (max-width: 767px) {
    .btn.sm.line {
        padding: 5px 18px;
    }
}
.btn.sm.arw::after {
    width: 12px;
    height: 12px;
    margin-left: 10px;
}
@media only screen and (max-width: 767px) {
    .btn.sm.arw::after {
        width: 9px;
        height: 9px;
        margin-left: 8px;
    }
}
.btn.sm.back::before, .btn.sm.home::before {
    width: 12px;
    height: 12px;
    margin-right: 10px;
}
@media only screen and (max-width: 767px) {
    .btn.sm.back::before, .btn.sm.home::before {
        width: 9px;
        height: 9px;
        margin-right: 8px;
    }
}
.btn.sm.download::before, .btn.sm.edit::before {
    margin: -1px 8px -1px 0;
}
@media only screen and (max-width: 767px) {
    .btn.sm.download::before, .btn.sm.edit::before {
        width: 12px;
        height: 12px;
        margin: 0 6px 0 0;
    }
}
@media only screen and (max-width: 767px) {
    .btn.sm.no-scale {
        padding: 9px 24px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px) {
    .btn.sm.no-scale.arw::after {
        width: 9px;
        height: 9px;
        margin-left: 6px;
    }
}
.btn.md {
    padding: 15px 35px;
    font-size: 18px;
}
@media only screen and (max-width: 767px) {
    .btn.md {
        padding: 12px 25px;
        font-size: 16px;
    }
}
.btn.md.line {
    padding: 13px 33px;
}
@media only screen and (max-width: 767px) {
    .btn.md.line {
        padding: 10px 23px;
    }
}
.btn.md.arw::after {
    width: 13px;
    height: 13px;
    margin-left: 12px;
}
@media only screen and (max-width: 767px) {
    .btn.md.arw::after {
        width: 12px;
        height: 12px;
        margin-left: 8px;
    }
}
.btn.md.back::before, .btn.md.home::before {
    width: 13px;
    height: 13px;
    margin-right: 12px;
}
@media only screen and (max-width: 767px) {
    .btn.md.back::before, .btn.md.home::before {
        width: 12px;
        height: 12px;
        margin-right: 8px;
    }
}
.btn.md.download::before, .btn.md.edit::before {
    margin: 1px 12px 0 0;
}
@media only screen and (max-width: 767px) {
    .btn.md.download::before, .btn.md.edit::before {
        margin: 0 10px 0 0;
    }
}
@media only screen and (max-width: 767px) {
    .btn.md.no-scale {
        padding: 15px 35px;
        font-size: 18px;
    }
}
@media only screen and (max-width: 767px) {
    .btn.md.no-scale.arw::after {
        width: 13px;
        height: 13px;
        margin-left: 12px;
    }
}
.btn.lg {
    padding: 20px 50px;
    font-size: 24px;
}
@media only screen and (max-width: 767px) {
    .btn.lg {
        padding: 15px 25px;
        font-size: 16px;
    }
}
.btn.lg.line {
    padding: 18px 48px;
}
@media only screen and (max-width: 767px) {
    .btn.lg.line {
        padding: 13px 28px;
    }
}
.btn.lg.arw::after, .btn.lg.magnifier::after {
  width: 17px;
  height: 17px;
  margin-left: 16px;
}
@media only screen and (max-width: 767px) {
  .btn.lg.arw::after, .btn.lg.magnifier::after {
    width: 12px;
    height: 12px;
    margin-left: 12px;
  }
}
.btn.lg.back::before, .btn.lg.home::before {
    width: 17px;
    height: 17px;
    margin-right: 16px;
}
@media only screen and (max-width: 767px) {
    .btn.lg.back::before, .btn.lg.home::before {
        width: 14px;
        height: 14px;
        margin-right: 12px;
    }
}
.btn.lg.download::before, .btn.lg.edit::before {
    margin: 4px 16px 0 0;
}
@media only screen and (max-width: 767px) {
    .btn.lg.download::before, .btn.lg.edit::before {
        margin: 2px 12px 0 0;
    }
}
@media only screen and (max-width: 767px) {
    .btn.lg.no-scale {
        padding: 20px 50px;
        font-size: 24px;
    }
}
@media only screen and (max-width: 767px) {
    .btn.lg.no-scale.arw::after {
        width: 17px;
        height: 17px;
        margin-left: 16px;
    }
}
.btn.special {
    background: #0071EB;
}
.btn.special:hover, .btn.special:focus-visible {
    background: #007BFF;
}
.btn.warning {
    background: #EA0000;
}
.btn.warning:hover, .btn.warning:focus-visible {
    background: #F00;
}
.btn.gray {
    color: #222431;
    background: #E8E9EA;
}
.btn.gray:hover, .btn.gray:focus-visible {
    background: #D3D3D6;
}
.btn.line {
    color: #238500;
    background: #FFF;
    border: 2px solid #238500;
}
.btn.line::before, .btn.line::after {
    filter: brightness(0) saturate(100%) invert(44%) sepia(54%) saturate(6689%) hue-rotate(76deg) brightness(92%) contrast(101%);
}
.btn.line:hover, .btn.line:focus-visible {
    color: #FFF;
    background: #238500;
}
.btn.line:hover::before, .btn.line:hover::after, .btn.line:focus-visible::before, .btn.line:focus-visible::after {
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
}
.btn.line.special {
    color: #0071EB;
    border-color: #0071EB;
}
.btn.line.special::before, .btn.line.special::after {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.btn.line.special:hover, .btn.line.special:focus-visible {
    color: #FFF;
    background: #0071EB;
}
.btn.line.special:hover::before, .btn.line.special:hover::after, .btn.line.special:focus-visible::before, .btn.line.special:focus-visible::after {
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
}
.btn.line.warning {
    color: #EA0000;
    border-color: #EA0000;
}
.btn.line.warning::before, .btn.line.warning::after {
    filter: brightness(0) saturate(100%) invert(12%) sepia(68%) saturate(6264%) hue-rotate(4deg) brightness(102%) contrast(128%);
}
.btn.line.warning:hover, .btn.line.warning:focus-visible {
    color: #FFF;
    background: #EA0000;
}
.btn.line.warning:hover::before, .btn.line.warning:hover::after, .btn.line.warning:focus-visible::before, .btn.line.warning:focus-visible::after {
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
}
.btn.line.gray {
    color: #909198;
    border-color: #909198;
}
.btn.line.gray::before, .btn.line.gray::after {
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    opacity: 0.5;
}
.btn.line.gray:hover, .btn.line.gray:focus-visible {
    color: #FFF;
    background: #909198;
}
.btn.line.gray:hover::before, .btn.line.gray:hover::after, .btn.line.gray:focus-visible::before, .btn.line.gray:focus-visible::after {
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
    opacity: 1;
}

.slick-arrow {
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 0px;
    background: #FFF;
    border: 1px solid #0071EB;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 15px);
    z-index: 10;
    vertical-align: top;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.slick-arrow:hover {
    background: #0071EB;
}
.slick-arrow:hover::before {
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
}
.slick-arrow::before {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: url(../img/slider_arw.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
    position: absolute;
    top: calc(50% - 6px);
    right: calc(50% - 6px);
}
.slick-arrow.slick-prev {
    left: -15px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.slick-arrow.slick-next {
    right: -15px;
}
.slick-arrow.slick-disabled {
    opacity: 0;
    cursor: default;
}

/* Lightbox */
.lbox-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: rgba(34, 36, 49, 0.75);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
@media only screen and (max-width: 767px) {
    .lbox-container {
        align-items: flex-start;
    }
}
.lbox-container.show {
    visibility: visible;
    opacity: 1;
}

.lbox-container-inn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4rem;
    width: 100%;
    max-width: 800px;
    padding: 6rem;
    background: #FFF;
    border-radius: 1.5rem;
    position: relative;
    z-index: 2;
}
.lbox-container-inn.xl {
    max-width: 960px;
}
.lbox-container-inn.md {
    max-width: 640px;
}
.lbox-container-inn.sm {
    max-width: 480px;
}
body .lbox-container-inn {
    margin: auto;
}

.lbox-hide {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

.lbox-close {
    display: block;
    width: 4rem;
    height: 4rem;
    font-size: 0;
    cursor: pointer;
    text-decoration: none;
    text-indent: -999em;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
}
@media only screen and (max-width: 767px) {
    .lbox-close {
        width: 6rem;
        height: 6rem;
    }
}
.lbox-close::before {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: url(../img/x.svg) center center no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.lbox-close:hover::before, .lbox-close:focus-within::before {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}

.lbox-spinner {
    background: rgba(34, 36, 49, 0.9);
}
.lbox-spinner .lbox-container-inn {
    padding: 0;
    align-items: center;
    background: transparent;
}

.spinner-img {
    width: 120px;
    height: 120px;
    background: url(../img/spinner.svg) center center no-repeat;
    background-size: 100% auto;
}

.spinner-txt {
    color: #FFF;
    font-size: 18px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .spinner-txt {
        font-size: 16px;
    }
}
.spinner-txt .name {
    display: block;
    font-size: 36px;
}
@media only screen and (max-width: 767px) {
    .spinner-txt .name {
        font-size: 24px;
    }
}
.spinner-txt strong {
    display: inline-block;
}

/* Form */
form {
    border: none;
    margin: 0;
    padding: 0;
}

.form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 25px;
}
@media only screen and (max-width: 767px) {
    .form {
        gap: 15px;
    }
}
.form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 30px;
}
@media only screen and (max-width: 767px) {
    .form .row {
        flex-direction: column;
        gap: 15px;
    }
}
.form .row .row {
    gap: 10px;
}
@media only screen and (max-width: 767px) {
    .form .row .row {
        flex-direction: row;
    }
}
.form .row.cta-plus {
    align-items: center;
    justify-content: space-between;
}
.form .row.cta-plus .col {
    flex: 0 1 auto;
}
.form .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    flex: 0 1 100%;
    min-width: 0;
}
.form .col.cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
@media only screen and (max-width: 767px) {
    .form-label {
        font-size: 13px;
    }
}
.form-label.sm {
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
    .form-label.sm {
        font-size: 12px;
    }
}
.not-valid .form-label {
    color: #EA0000;
}

.label-plus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0.5rem;
}
@media only screen and (max-width: 767px) {
    .label-plus {
        font-size: 13px;
    }
}
.label-plus .form-label {
    margin-bottom: 0;
}

.form-input {
    position: relative;
}

.form-control {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    color: #222431;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(1em + 6px);
    background-color: #FFF;
    border: 2px solid #BCBDC1;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
.form-control:hover {
    background-color: #FFF;
    border-color: #222431;
}
.form-control:focus, .form-control:active {
    border-color: #0071EB;
    outline: none;
}
.form-control.capitalize {
    text-transform: capitalize;
}
.not-valid .form-control {
    border-color: #EA0000;
}
.form-control[disabled] {
    background-color: #E8E9EA;
    cursor: not-allowed;
    opacity: 1;
}
.form-control.sm {
    height: 32px;
    padding: 0 8px;
    font-size: 14px;
    border-radius: 0.3rem;
}
.form-control.md {
    height: 40px;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 0.4rem;
}
.form-control.lg {
    height: 48px;
    padding: 0 16px;
    font-size: 18px;
    border-radius: 0.5rem;
}
@media only screen and (max-width: 767px) {
    .form-control.lg {
        height: 40px;
        padding: 0 12px;
        font-size: 16px;
        border-radius: 5px;
    }
}

select.form-control {
    background-image: url(../img/select.svg);
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    background-size: 8px auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
select.form-control::-ms-expand {
    display: none;
}
select.form-control.sm, select.form-control.md, select.form-control.lg {
    padding-right: 30px;
}
select.form-control.sm {
    background-size: 6px auto;
}

textarea.form-control {
    min-width: 100%;
    max-width: 100%;
    min-height: 160px;
    padding: 12px 16px;
    vertical-align: top;
    resize: vertical;
}
textarea.form-control.sm {
    padding: 6px 8px;
}
textarea.form-control.md {
    padding: 10px 12px;
}
textarea.form-control.lg {
    padding: 14px 16px;
}
@media only screen and (max-width: 767px) {
    textarea.form-control.lg {
        padding: 10px 12px;
    }
}

::-webkit-input-placeholder {
    color: rgba(34, 36, 49, 0.7);
    text-transform: initial;
}

:-ms-input-placeholder {
    color: rgba(34, 36, 49, 0.7);
    text-transform: initial;
}

::-moz-placeholder {
    color: rgba(34, 36, 49, 0.7);
    opacity: 1;
    text-transform: initial;
}

:-moz-placeholder {
    color: rgba(34, 36, 49, 0.7);
    opacity: 1;
    text-transform: initial;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

button.btn {
    width: auto;
    height: auto;
    margin: 0;
    font-family: "Roboto", sans-serif;
    border: none;
    vertical-align: top;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}
button.btn:hover, button.btn:focus, button.btn:active {
    outline: none;
}

.form-error {
    display: none;
    max-width: calc(100% - 10px);
    margin-top: 3px;
    color: #EA0000;
    font-size: 13px;
    vertical-align: top;
}
@media only screen and (max-width: 1279px) {
    .form-error {
        order: -1;
        position: relative;
        bottom: inherit;
        left: inherit;
    }
}
@media only screen and (max-width: 767px) {
    .form-error span {
        display: none;
    }
}
.not-valid .form-error {
    display: inline-block;
}

.form-toogle-container {
    position: relative;
}

.form-toogle {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../img/input_hide.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0.3;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.form-toogle:hover, .form-toogle:focus-visible {
    opacity: 1;
    outline: none;
}
.form-toogle.show {
    background-image: url(../img/input_show.svg);
    opacity: 1;
}

.form-help {
    position: absolute;
    top: 2px;
    right: 0;
}
@media only screen and (max-width: 767px) {
    .form-help {
        top: 0;
    }
}
.form-help .lnk {
    display: block;
    width: 20px;
    height: 20px;
    color: #222431;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    background-color: #E8E9EA;
    border-radius: 50%;
    cursor: pointer;
}
.form-help .lnk::before {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    background: url(../img/x.svg) center center no-repeat;
    background-size: 0px auto;
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
}
.form-help .lnk:hover {
    color: #FFF;
    background-color: #0071EB;
}
.form-help .lnk.hide {
    font-size: 0px;
    background-color: #222431;
}
.form-help .lnk.hide::before {
    background-size: 10px auto;
}
.form-help .ans {
    width: 202px;
    border: 6px solid #FFF;
    border-radius: 1rem;
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: calc(100% + 5px);
    -webkit-box-shadow: 0 5px 20px 0 rgba(34, 36, 49, 0.5);
    box-shadow: 0 5px 20px 0 rgba(34, 36, 49, 0.5);
}

.card-js .icon {
    display: none;
}
.card-js .card-number-wrapper {
    position: relative;
}
.card-js .card-number-wrapper .card-type-icon {
    width: 48px;
    height: 30px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 9px;
    right: 9px;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -moz-transition: opacity 0.15s linear;
    -ms-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
@media only screen and (max-width: 767px) {
    .card-js .card-number-wrapper .card-type-icon {
        top: 9px;
        right: 9px;
    }
}
.card-js .card-number-wrapper .card-type-icon.visa {
    background-image: url(../img/checkout/card_visa.svg);
}
.card-js .card-number-wrapper .card-type-icon.master-card {
    background-image: url(../img/checkout/card_mastercard.svg);
}
.card-js .card-number-wrapper .card-type-icon.american-express {
    background-image: url(../img/checkout/card_amex.svg);
}
.card-js .card-number-wrapper .card-type-icon.discover {
    background-image: url(../img/checkout/card_discover.svg);
}
.card-js .card-number-wrapper .show {
    opacity: 1;
}
.card-js input.card-number {
    padding-right: 48px;
}

.card-frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icn {
    flex: 0 0 auto;
    width: 48px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
@media only screen and (max-width: 767px) {
    .card-icn {
        width: 32px;
        height: 20px;
    }
}
.card-icn.sm {
    width: 32px;
    height: 20px;
}
@media only screen and (max-width: 767px) {
    .card-icn.sm {
        width: 24px;
        height: 16px;
    }
}
.card-icn.visa {
    background-image: url(../img/checkout/card_visa.svg);
}
.card-icn.master-card {
    background-image: url(../img/checkout/card_mastercard.svg);
}
.card-icn.american-express {
    background-image: url(../img/checkout/card_amex.svg);
}
.card-icn.discover {
    background-image: url(../img/checkout/card_discover.svg);
}

.payment-frame {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.payment-icn {
    display: block;
    flex: 0 0 auto;
    height: 24px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}
@media only screen and (max-width: 767px) {
    .payment-icn {
        height: 20px;
    }
}
.payment-icn.sm {
    height: 20px;
}
.payment-icn.paypal {
    width: 76px;
    background-image: url(../img/checkout/co_paypal.svg);
}
@media only screen and (max-width: 767px) {
    .payment-icn.paypal {
        width: 54px;
    }
}
.payment-icn.paypal.sm {
    width: 54px;
}
.payment-icn.applepay {
    width: 59px;
    background-image: url(../img/checkout/co_applepay.svg);
}
@media only screen and (max-width: 767px) {
    .payment-icn.applepay {
        width: 45px;
    }
}
.payment-icn.applepay.sm {
    width: 45px;
}
.payment-icn.googlepay {
    width: 72px;
    height: 38px;
    background-image: url(../img/checkout/google-pay-mark_800.svg);
}
@media only screen and (max-width: 767px) {
    .payment-icn.googlepay {
        width: 56px;
        height: 30px;
    }
}
.payment-icn.googlepay.sm {
    width: 56px;
    height: 30px;
}
.payment-icn.venmo {
    width: 74px;
    background-image: url(../img/checkout/co_venmo.svg);
}
@media only screen and (max-width: 767px) {
    .payment-icn.venmo {
        width: 56px;
    }
}
.payment-icn.venmo.sm {
    width: 56px;
}

/* Form Checkbox and Radiobutton */
.form-check-radio {
    display: block;
    padding-left: 40px;
    cursor: pointer;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .form-check-radio {
        padding-left: 32px;
    }
}
.form-check-radio input {
    width: 24px;
    height: 24px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}
@media only screen and (max-width: 767px) {
    .form-check-radio input {
        width: 20px;
        height: 20px;
    }
}
.form-check-radio .checkbox,
.form-check-radio .radiobutton {
    display: block;
    height: 24px;
    width: 24px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFF;
    border: 2px solid #0071EB;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
@media only screen and (max-width: 767px) {
    .form-check-radio .checkbox,
    .form-check-radio .radiobutton {
        width: 20px;
        height: 20px;
    }
}
.form-check-radio .checkbox {
    border-radius: 5px;
}
.form-check-radio .radiobutton {
    border-radius: 50%;
}
.form-check-radio.not-valid .checkbox,
.form-check-radio.not-valid .radiobutton {
    border-color: #EA0000;
}
.form-check-radio:hover .checkbox, .form-check-radio:focus .checkbox,
.form-check-radio input:focus ~ .checkbox, .form-check-radio:hover .radiobutton, .form-check-radio:focus .radiobutton,
.form-check-radio input:focus ~ .radiobutton {
    background-color: #C8E2FF;
}
.form-check-radio input:checked ~ .checkbox {
    background-color: #0071EB;
}
.form-check-radio input:checked ~ .radiobutton {
    background-color: #FFF;
    border-width: 8px;
}
@media only screen and (max-width: 767px) {
    .form-check-radio input:checked ~ .radiobutton {
        border-width: 6px;
    }
}
.form-check-radio .checkbox::after {
    display: none;
    content: "";
    width: 12px;
    height: 12px;
    background: url(../img/checkbox.svg) center center no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 767px) {
    .form-check-radio .checkbox::after {
        width: 10px;
        height: 10px;
    }
}
.form-check-radio input:checked ~ .checkbox::after {
    display: block;
}
.form-check-radio .txt {
    display: block;
}
.form-check-radio .txt a {
    display: inline-block;
    color: #222431;
}
.form-check-radio .txt a:hover, .form-check-radio .txt a:focus {
    color: #0071EB;
}
.form-check-radio .txt strong {
    font-weight: 500;
}

/* Search */
.search {
    max-width: 1080px;
    margin: 5rem auto;
}
@media only screen and (max-width: 1023px) {
    .search {
        max-width: 480px;
    }
}

.search-nav {
    text-align: center;
}
@media only screen and (max-width: 1023px) {
    .search-nav {
        margin-bottom: 3rem;
    }
}
.search-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}
@media only screen and (max-width: 1023px) {
    .search-nav ul {
        flex-wrap: wrap;
        gap: 1rem 5rem;
    }
}
.search-nav li {
    margin: 0;
    list-style: none;
}
@media only screen and (max-width: 1023px) {
    .search-nav li {
        flex: 0 1 auto;
    }
}
.search-nav a {
    display: block;
    padding: 1rem 2rem;
    color: #222431;
    text-decoration: none;
    background: rgba(34, 36, 49, 0.1);
    border-radius: 8px 8px 0 0;
}
@media only screen and (max-width: 1023px) {
    .search-nav a {
        padding: 0.75rem 0;
        font-weight: 500;
        background: transparent;
        border-radius: 0;
        border-bottom: 3px solid rgba(34, 36, 49, 0.1);
    }
}
.search-nav a:hover, .search-nav a:focus, .search-nav a:active {
    background: rgba(34, 36, 49, 0.2);
}
@media only screen and (max-width: 1023px) {
    .search-nav a:hover, .search-nav a:focus, .search-nav a:active {
        background: transparent;
    }
}
.search-nav a.active {
    color: #FFF;
    background: #0071EB;
}
@media only screen and (max-width: 1023px) {
    .search-nav a.active {
        color: #0071EB;
        background: transparent;
        border-color: #0071EB;
    }
}
@media only screen and (max-width: 1023px) {
    .search-nav .m-hide {
        display: none;
    }
}
.search-nav .lbl {
    align-self: center;
    margin-right: 2.5rem;
    font-style: italic;
}
@media only screen and (max-width: 1023px) {
    .search-nav .lbl {
        flex: 0 1 100%;
        margin: 0;
    }
}

.search-content {
    background: #FFF;
    border-radius: 1.5rem;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 113, 235, 0.5), 0 5px 20px 0 rgba(0, 113, 235, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 113, 235, 0.5), 0 5px 20px 0 rgba(0, 113, 235, 0.1);
}
@media only screen and (max-width: 1023px) {
    .search-content {
        background: transparent;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.search-footer {
    margin-top: 1rem;
    font-size: 13px;
    font-style: italic;
}

.search-form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
    .search-form .row {
        flex-direction: column;
        gap: 2rem;
    }
}
.search-form .col {
    flex: 0 1 100%;
    padding-right: 1px;
    position: relative;
}
@media only screen and (max-width: 1023px) {
    .search-form .col {
        padding: 0;
    }
}
.search-form .col::after {
    display: block;
    content: "";
    width: 1px;
    height: 60%;
    background: #D3D3D6;
    position: absolute;
    top: 20%;
    right: 0;
}
@media only screen and (max-width: 1023px) {
    .search-form .col::after {
        display: none;
    }
}
.search-form .col:first-child .form-control {
    border-radius: 1.5rem 0 0 1.5rem;
}
@media only screen and (max-width: 1023px) {
    .search-form .col:first-child .form-control {
        border-radius: 1.5rem;
    }
}
.search-form .col:last-child {
    padding-right: 0;
}
.search-form .col:last-child::after {
    display: none;
}
.search-form .col.street {
    flex: 0 0 calc(100% / 3);
}
.search-form .col.apartment {
    flex: 0 0 calc(100% / 7);
}
.search-form .col.cta {
    flex: 0 0 auto;
    align-self: center;
    padding: 0 1.6rem;
}
.search-form .form-label {
    color: #222431;
    font-size: 13px;
    margin: 0;
    cursor: pointer;
    position: absolute;
    top: 1.7rem;
    left: 2.4rem;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.search-form .form-control {
    padding: 2.4rem;
    font-size: 20px;
    line-height: 28px;
    cursor: pointer;
    border: none;
    border-bottom: 4px solid #FFF;
}
@media only screen and (max-width: 1023px) {
    .search-form .form-control {
        padding: 2rem 3rem;
        border: 1px solid #D3D3D6;
        border-radius: 1.5rem;
    }
}
@media only screen and (max-width: 767px) {
    .search-form .form-control {
        font-size: 18px;
    }
}
.search-form .form-control:hover, .search-form .form-control:focus, .search-form .form-control:active {
    border-color: #0071EB;
}
.search-form .form-control:hover + .form-label, .search-form .form-control:focus + .form-label, .search-form .form-control:active + .form-label {
    color: #0071EB;
}
.search-form .form-control.error + .form-label {
    color: #EA0000;
}
.search-form select.form-control {
    padding-right: 4rem;
    background-position: calc(100% - 1.6rem) center;
}
.search-form .form-error {
    margin-top: 0;
    padding: 0 6px;
    color: #FFF;
    background: #EA0000;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(34, 36, 49, 0.2);
    box-shadow: 0 2px 5px 0 rgba(34, 36, 49, 0.2);
    position: absolute;
    top: calc(100% - 12px);
    left: 12px;
    z-index: 10;
}
.search-form .not-valid .form-control {
    border-color: #EA0000;
}

.search2 {
    margin: 5rem auto;
}
@media only screen and (max-width: 1023px) {
    .search2 {
        max-width: 480px;
    }
}

.search2-content {
    background: #FFF;
    border-radius: 1.5rem;
    border: 2px solid #0071EB;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 113, 235, 0.5), 0 5px 20px 0 rgba(0, 113, 235, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 113, 235, 0.5), 0 5px 20px 0 rgba(0, 113, 235, 0.1);
}
@media only screen and (max-width: 1023px) {
    .search2-content {
        padding: 2rem 4rem 4rem 4rem;
    }
}

.search2-form .sf-none {
    display: none;
}
.search2-form .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
    .search2-form .row {
        flex-direction: column;
    }
}
.search2-form .col {
    flex: 0 1 100%;
    padding-right: 1px;
    position: relative;
}
@media only screen and (max-width: 1023px) {
    .search2-form .col {
        padding: 0;
        border-bottom: 1px solid #D3D3D6;
    }
}
.search2-form .col::after {
    display: block;
    content: "";
    width: 1px;
    height: 60%;
    background: #D3D3D6;
    position: absolute;
    top: 20%;
    right: 0;
}
@media only screen and (max-width: 1023px) {
    .search2-form .col::after {
        display: none;
    }
}
.search2-form .col:first-child .form-control {
    border-radius: 1.5rem 0 0 1.5rem;
}
@media only screen and (max-width: 1023px) {
    .search2-form .col:first-child .form-control {
        border-radius: 1.5rem 1.5rem 0 0;
    }
}
.search2-form .col:last-child {
    padding-right: 0;
}
@media only screen and (max-width: 1023px) {
    .search2-form .col:last-child {
        border-bottom: none;
    }
}
.search2-form .col:last-child::after {
    display: none;
}
.search2-form .col.filter {
    flex: 0 0 auto;
}
.search2-form .col.street {
    flex: 0 0 calc(100% / 3);
}
.search2-form .col.apartment {
    flex: 0 0 calc(100% / 7);
}
.search2-form .col.cta {
    flex: 0 0 auto;
    align-self: center;
    padding: 0 1.6rem;
}
@media only screen and (max-width: 1023px) {
    .search2-form .col.cta {
        padding: 4rem 0 0 0;
    }
}
.search2-form .form-label {
    color: #222431;
    font-size: 13px;
    margin: 0;
    cursor: pointer;
    position: absolute;
    top: 1.7rem;
    left: 2.4rem;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
@media only screen and (max-width: 1023px) {
    .search2-form .form-label {
        left: 0;
    }
}
.search2-form .form-control {
    padding: 4rem 2.4rem 1.2rem 2.4rem;
    font-size: 20px;
    line-height: 28px;
    cursor: pointer;
    border: none;
}
@media only screen and (max-width: 1279px) {
    .search2-form .form-control {
        font-size: 16px;
    }
}
@media only screen and (max-width: 1023px) {
    .search2-form .form-control {
        padding: 5rem 0 1.2rem 0;
    }
}
.search2-form .form-control:hover, .search2-form .form-control:focus, .search2-form .form-control:active {
    border-color: #0071EB;
}
.search2-form .form-control:hover + .form-label, .search2-form .form-control:focus + .form-label, .search2-form .form-control:active + .form-label {
    color: #0071EB;
}
.search2-form .form-control.error + .form-label {
    color: #EA0000;
}
.search2-form select.form-control {
    padding-right: 4rem;
    background-position: calc(100% - 1.6rem) center;
}
@media only screen and (max-width: 1023px) {
    .search2-form select.form-control {
        background-position: 100% center;
    }
}
.search2-form .form-error {
    margin-top: 0;
    padding: 0 6px;
    color: #FFF;
    background: #EA0000;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(34, 36, 49, 0.2);
    box-shadow: 0 2px 5px 0 rgba(34, 36, 49, 0.2);
    position: absolute;
    top: calc(100% - 12px);
    left: 12px;
    z-index: 10;
}
.search2-form .not-valid .form-control {
    border-color: #EA0000;
}

.search-list-lbox .lbox-container-inn {
    max-width: 960px;
    padding: 0;
    overflow: hidden;
}

.sl-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (max-width: 767px) {
    .sl-cont {
        flex-direction: column;
    }
}
.sl-cont .hdr {
    flex: 0 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 5rem;
    text-align: center;
    background: rgba(0, 113, 235, 0.05);
}
.sl-cont .hdr .ic {
    width: 120px;
    height: 120px;
    background: url(../img/icns/outline/60/home_group.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
    opacity: 0.3;
}
@media only screen and (max-width: 767px) {
    .sl-cont .hdr .ic {
        width: 60px;
        height: 60px;
    }
}
.sl-cont .hdr .t1 {
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    font-weight: 600;
}
@media only screen and (max-width: 767px) {
    .sl-cont .hdr .t1 {
        font-size: 18px;
    }
}
.sl-cont .hdr .t2 {
    font-size: 18px;
}
@media only screen and (max-width: 767px) {
    .sl-cont .hdr .t2 {
        font-size: 14px;
    }
}
.sl-cont .bdy {
    flex: 0 1 100%;
    padding: 5rem;
}
.sl-cont .lst .th {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    color: #7A7C83;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid #E8E9EA;
}
.sl-cont .lst .tb {
    font-weight: 500;
}
.sl-cont .lst .ftr {
    margin-top: 2rem;
    padding: 1.5rem 0 0 24px;
    font-size: 14px;
    border-top: 1px solid #E8E9EA;
    position: relative;
}
.sl-cont .lst .ftr::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icns/outline/16/info.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    opacity: 0.5;
    position: absolute;
    top: 1.7rem;
    left: 0;
}
.sl-cont .lst ul {
    margin: 0;
    max-height: 315px;
    overflow-y: auto;
}
@media only screen and (max-width: 767px) {
    .sl-cont .lst ul {
        max-height: 238px;
    }
}
.sl-cont .lst li {
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #F4F4F4;
}
.sl-cont .lst a {
    display: block;
    padding: 1rem 3rem 1rem 0;
    text-decoration: none;
    position: relative;
}
.sl-cont .lst a::after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    background: url(../img/arw.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
    position: absolute;
    top: 50%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.sl-cont .lst a:hover, .sl-cont .lst a:focus-within {
    color: #222431;
}
.sl-cont .lst a:hover::after, .sl-cont .lst a:focus-within::after {
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
}

.autocomplete-items {
    width: 100%;
    max-height: 50vh;
    padding: 1rem;
    background: #FFF;
    border-radius: 1.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 113, 235, 0.5), 0 5px 20px 0 rgba(0, 113, 235, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 113, 235, 0.5), 0 5px 20px 0 rgba(0, 113, 235, 0.1);
}
.autocomplete-items div,
.autocomplete-items .ui-menu-item-wrapper {
    padding: 0.5rem 1rem 0.5rem calc(2rem + 14px);
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius: 0.5rem;
    position: relative;
}
.autocomplete-items div:hover, .autocomplete-items div:focus-within, .autocomplete-items div.ui-state-active,
.autocomplete-items .ui-menu-item-wrapper:hover,
.autocomplete-items .ui-menu-item-wrapper:focus-within,
.autocomplete-items .ui-menu-item-wrapper.ui-state-active {
    background: #C8E2FF;
}
.autocomplete-items div.ui-state-focus, .autocomplete-items div.ui-state-active,
.autocomplete-items .ui-menu-item-wrapper.ui-state-focus,
.autocomplete-items .ui-menu-item-wrapper.ui-state-active {
    margin: 0;
}
.autocomplete-items div::before,
.autocomplete-items .ui-menu-item-wrapper::before {
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background: url(../img/icns/fill/16/home.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
    position: absolute;
    top: calc(0.5rem + 4px);
    left: 1rem;
}
@media only screen and (max-width: 767px) {
    .autocomplete-items div::before,
    .autocomplete-items .ui-menu-item-wrapper::before {
        width: 12px;
        height: 12px;
        top: calc(1rem + 2px);
    }
}
.autocomplete-items div strong,
.autocomplete-items .ui-menu-item-wrapper strong {
    color: #0071EB;
}
.autocomplete-items .ui-state-active,
.autocomplete-items .ui-widget-content .ui-state-active {
    border: none;
}
.autocomplete-items.ui-widget {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
@media only screen and (max-width: 767px) {
    .autocomplete-items.ui-widget {
        font-size: 14px;
    }
}
.autocomplete-items.ui-widget-content {
    color: #222431;
}

.ui-widget.ui-widget-content {
    border: none;
}

.ui-menu .ui-menu-item {
    list-style-image: none;
}

/* Proposed Addresses */
.pa-msg {
    align-items: center;
    gap: 3rem;
    font-size: 18px;
}
@media only screen and (max-width: 767px) {
    .pa-msg {
        font-size: 14px;
    }
}
.pa-msg::before {
    display: block;
    content: "";
    flex: 0 0 auto;
    width: 6.4rem;
    height: 6.4rem;
    background: url(../img/pin_x.svg) 0 0 no-repeat;
    background-size: 100% auto;
    align-self: flex-start;
}

.pa-t1 {
    font-family: "Roboto Slab", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .pa-t1 {
        font-size: 18px;
    }
}
.pa-t1 .icn {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-right: 1rem;
    padding: 6px;
    background: #FF9000;
    border-radius: 50%;
    vertical-align: top;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .pa-t1 .icn {
        width: 24px;
        height: 24px;
        padding: 4px;
    }
}
.pa-t1 .icn::before {
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/icns/fill/24/lightbulb.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
}
@media only screen and (max-width: 767px) {
    .pa-t1 .icn::before {
        width: 16px;
        height: 16px;
    }
}

.pa-lst {
    flex-direction: column;
    align-items: center;
}
.pa-lst ul {
    margin: 0;
}
.pa-lst li {
    margin: 0 0 -1px 0;
    list-style: none;
}
.pa-lst .row {
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 1rem 0;
    text-decoration: none;
    border-top: 1px solid #E8E9EA;
    border-bottom: 1px solid #E8E9EA;
}
@media only screen and (max-width: 767px) {
    .pa-lst .row {
        padding: 2rem 0;
    }
}
.pa-lst .row:hover, .pa-lst .row:focus-within {
    color: #222431;
}
.pa-lst .row:hover .ttl::before, .pa-lst .row:focus-within .ttl::before {
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
}
.pa-lst .row:hover .cta, .pa-lst .row:focus-within .cta {
    background: #2A9E00;
}
.pa-lst .ttl {
    padding-left: calc(2rem + 16px);
    font-size: 18px;
    font-weight: 500;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .pa-lst .ttl {
        padding-left: calc(2rem + 12px);
        font-size: 14px;
        line-height: 1.25;
    }
}
.pa-lst .ttl::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icns/fill/16/home.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
}
@media only screen and (max-width: 767px) {
    .pa-lst .ttl::before {
        width: 12px;
        height: 12px;
    }
}
.pa-lst .cta {
    padding: 8px 20px;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    background: #238500;
    border-radius: 50px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
}
@media only screen and (max-width: 767px) {
    .pa-lst .cta {
        padding: 6px 12px;
        font-size: 10px;
    }
}
.pa-lst .cta::after {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 8px;
    background: url(../img/btn_arw.svg) 0 0 no-repeat;
    background-size: 100% auto;
}
@media only screen and (max-width: 767px) {
    .pa-lst .cta::after {
        width: 7px;
        height: 7px;
        margin-left: 4px;
    }
}

.pa-cta {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.pa-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 4rem;
}
.pa-block .ttl {
    margin: 0;
}
@media only screen and (max-width: 1023px) {
    .pa-block .ul-check {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}
.pa-block .pa-lst {
    flex: 1 1 auto;
    position: relative;
    overflow-y: auto;
}
@media only screen and (max-width: 1023px) {
    .pa-block .pa-lst {
        overflow: inherit;
    }
}
.pa-block .pa-lst ul {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media only screen and (max-width: 1023px) {
    .pa-block .pa-lst ul {
        position: relative;
        max-height: 220px;
        overflow-y: auto;
    }
}


/* Table */
.table {
    margin: 3rem 0;
    text-align: left;
}
@media only screen and (max-width: 767px) {
    .table {
        overflow-x: scroll;
    }
}
.table table {
    width: 100%;
    cursor: default;
    border-collapse: collapse;
}
.table.fixed table {
    table-layout: fixed;
}
@media only screen and (max-width: 767px) {
    .table.fixed table {
        table-layout: inherit;
    }
}
.table thead tr {
    background-color: #C8E2FF;
}
.table tbody tr {
    background-color: #F8F8F9;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.table tbody tr:nth-of-type(even) {
    background-color: #FFF;
}
.table tbody tr:hover {
    background: #FFEECC;
}
.table th,
.table td {
    padding: 1.5rem 2rem;
}
.table th {
    font-weight: 500;
}

/* Header */
.site-header {
    padding: 2.5rem 0;
    position: relative;
    z-index: 1000;
}
@media print {
    .site-header {
        padding-top: 0;
    }
}
.site-header .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

/* Logo */
.site-logo {
    width: 262px;
    height: 42px;
    background: url(../img/logo.svg) 0 0 no-repeat;
    background-size: 100% auto;
    text-indent: -999em;
}
@media only screen and (max-width: 767px) {
    .site-logo {
        width: 150px;
        height: 24px;
    }
}
.site-logo.white {
    background-image: url(../img/logo_white.svg);
}
.site-logo.black {
    background-image: url(../img/logo_black.svg);
}
.site-logo a {
    display: block;
    height: 100%;
}

/* Navigation Desktop */
@media only screen and (max-width: 1279px) {
    #menu {
        display: none;
    }
}

@media print {
    .hnav {
        display: none;
    }
}
.hnav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
    margin: 0;
}
.members .hnav ul {
    gap: 2rem;
}
.hnav li {
    margin: 0;
    list-style: none;
    position: relative;
}
.hnav a {
    display: block;
    color: #222431;
    text-decoration: none;
    position: relative;
}
.hnav a:hover, .hnav a:focus, .hnav a:active {
    color: #0071EB;
}
.hnav a.special {
    padding: 6px 24px;
    color: #FFF;
    background: #0071EB;
    border-radius: 100px;
}
.hnav a.special:hover, .hnav a.special:focus, .hnav a.special:active {
    background: #007BFF;
}
.hnav a.phone {
    padding-left: 24px;
}
@media only screen and (max-width: 767px) {
    .hnav a.phone {
        font-size: 12px;
    }
}
@media only screen and (max-width: 413px) {
    .hnav a.phone {
        padding-left: 20px;
        font-size: 10px;
    }
}
.hnav a.phone::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icns/outline/16/phone.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
}
@media only screen and (max-width: 413px) {
    .hnav a.phone::before {
        width: 12px;
        height: 12px;
        top: calc(50% - 6px);
    }
}
.hnav a.phone:hover::before, .hnav a.phone:focus::before, .hnav a.phone:active::before {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.hnav .search-again {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    color: #FFF;
    background: #0071EB;
    border-radius: 100px;
}
.hnav .search-again::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icns/fill/16/magnifier.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(234deg) brightness(107%) contrast(107%);
}
.hnav .search-again:hover, .hnav .search-again:focus, .hnav .search-again:active {
    color: #FFF;
    background: #007BFF;
}
.hnav .hnav-icn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    padding: 11px;
    font-size: 0px;
    text-indent: -999em;
    background: rgba(34, 36, 49, 0.05);
    border: 2px solid transparent;
    border-radius: 21px;
}
.hnav .hnav-icn:hover, .hnav .hnav-icn:focus-within {
    background: #FFF;
}
.hnav .hnav-icn:hover::before, .hnav .hnav-icn:focus-within::before {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.hnav .hnav-icn::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.hnav .hnav-icn.icn-home::before {
    background-image: url(../img/icns/fill/16/home.svg);
}
.hnav .hnav-icn.icn-support::before {
    background-image: url(../img/icns/fill/16/support.svg);
}
.hnav .hnav-icn.icn-account::before {
    background-image: url(../img/icns/fill/16/user.svg);
}
.hnav .has-sub {
    z-index: 2;
}
.hnav .has-sub .hnav-icn {
    cursor: pointer;
    position: relative;
    z-index: 3;
}
.hnav .has-sub .hnav-icn::after {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 8px;
    background: url(../img/arw.svg) center center no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.hnav .has-sub .hnav-icn:hover::after, .hnav .has-sub .hnav-icn:focus-within::after {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.hnav .has-sub.open .hnav-icn {
    background-color: #FFF;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.hnav .has-sub.open .hnav-icn::before, .hnav .has-sub.open .hnav-icn::after {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.hnav .has-sub.open .hnav-icn::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.hnav .has-sub ul {
    display: none;
    width: 240px;
    height: auto;
    padding: 20px;
    background: #FFF;
    border-radius: 20px 0 20px 20px;
    position: absolute;
    top: 100%;
    right: 0;
    -webkit-box-shadow: 0 10px 15px 0 rgba(34, 36, 49, 0.1);
    box-shadow: 0 10px 15px 0 rgba(34, 36, 49, 0.1);
}
.hnav .has-sub ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 15px;
    position: relative;
}
.hnav .has-sub ul a::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.hnav .has-sub ul a.icn-account::before {
    background-image: url(../img/icns/fill/16/user.svg);
}
.hnav .has-sub ul a.icn-reports::before {
    background-image: url(../img/icns/fill/16/folder_document.svg);
}
.hnav .has-sub ul a.icn-logout::before {
    background-image: url(../img/icns/fill/16/logout.svg);
}
.hnav .has-sub ul a:hover::before, .hnav .has-sub ul a:focus-within::before {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.hnav .has-sub.open ul, .hnav .has-sub.hover:hover ul {
    display: block;
}

/* Navigation Mobile */
.slicknav_menu {
    display: none;
    width: 40px;
    height: 40px;
    position: absolute;
    top: calc(50% - 20px);
    right: -8px;
    z-index: 1000;
}
@media only screen and (max-width: 1279px) {
    .slicknav_menu {
        display: block;
    }
}

a.slicknav_btn {
    display: block;
    height: 100%;
    position: relative;
}
a.slicknav_btn.slicknav_open .slicknav_icon {
    background: url(../img/menu_close.svg) center center no-repeat;
    background-size: 18px auto;
}
a.slicknav_btn.slicknav_open .slicknav_icon-bar {
    display: none;
}

.slicknav_menutxt {
    font-size: 0px;
    text-decoration: none;
    text-indent: -999em;
}

.slicknav_icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    width: 24px;
    height: 24px;
    padding: 3px 0;
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
}

.slicknav_icon-bar {
    height: 2px;
    background: #222431;
}

.slicknav_nav {
    display: block;
    width: 300px;
    padding: 15px 30px;
    font-size: 14px;
    background: #FFF;
    border-top: 4px solid #0071EB;
    border-radius: 16px 0 16px 16px;
    position: absolute;
    top: 100%;
    right: 0;
    -webkit-box-shadow: 0 5px 10px 0 rgba(34, 36, 49, 0.1);
    box-shadow: 0 5px 10px 0 rgba(34, 36, 49, 0.1);
}
.slicknav_nav ul {
    margin: 0;
}
.slicknav_nav li {
    margin: 0;
    border-top: 1px solid #E8E9EA;
    list-style: none;
}
.slicknav_nav li:first-child {
    border-top: none;
}
.slicknav_nav a {
    display: block;
    padding: 15px 0;
    color: #222431;
    text-decoration: none;
    position: relative;
}
.slicknav_nav a:hover, .slicknav_nav a:focus-within {
    color: #0071EB;
}
.slicknav_nav a.special {
    color: #0071EB;
    font-weight: 700;
}
.slicknav_nav .slicknav_row {
    padding: 0;
}
.slicknav_nav .has-sub .hnav-icn::after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    background: url(../img/arw_sm.svg) center center no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: calc(50% - 4px);
    right: 0;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.slicknav_nav .has-sub.slicknav_open .hnav-icn::after {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.slicknav_nav .has-sub ul {
    border-top: 1px solid #E8E9EA;
}

.slicknav_arrow {
    display: none;
}

/* Mobile Menu */
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding: 7rem 0;
    background: #F4F4F4;
}
@media print {
    .site-footer {
        display: none;
    }
}
.members .site-footer {
    background: transparent;
}
.site-footer .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    margin: -2rem;
}
@media only screen and (max-width: 1279px) {
    .site-footer .row {
        flex-wrap: wrap;
    }
}
.site-footer .col {
    flex: 0 1 100%;
    padding: 2rem;
}
@media only screen and (max-width: 1279px) {
    .site-footer .col {
        flex: 0 1 calc(100% / 2);
        width: calc(100% / 2);
    }
}
@media only screen and (max-width: 767px) {
    .site-footer .col {
        flex: 0 1 100%;
        width: 100%;
    }
}
.site-footer .inf {
    font-size: 14px;
}
@media only screen and (max-width: 1279px) {
    .site-footer .cpy {
        flex: 0 1 100%;
    }
}
.site-footer .ttl {
    color: #222431;
    font-size: 18px;
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .site-footer .ttl {
        font-size: 16px;
    }
}
.site-footer .site-logo {
    width: 200px;
    height: 32px;
}
@media only screen and (max-width: 767px) {
    .site-footer .site-logo {
        width: 150px;
        height: 24px;
    }
}
.site-footer .cnt li {
    padding-left: 24px;
    position: relative;
}
.site-footer .cnt li::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
}
.site-footer .cnt li.phn::before {
    background-image: url(../img/icns/outline/16/phone.svg);
}
.site-footer .cnt li.eml::before {
    background-image: url(../img/icns/outline/16/email.svg);
}
.site-footer .cnt li.adr::before {
    background-image: url(../img/icns/outline/16/pin.svg);
}
.site-footer ul {
    margin-left: 0;
}
.site-footer li {
    margin: 0;
    padding: 0.4rem 0;
    list-style: none;
}
.site-footer a {
    color: #4E505A;
    text-decoration: none;
}
.site-footer a:hover, .site-footer a:focus, .site-footer a:active {
    color: #0071EB;
}
.site-footer a.fx {
    align-items: center;
    gap: 8px;
}
.site-footer a.fx:hover .ic, .site-footer a.fx:focus-within .ic {
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.site-footer a .ic {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(632%) hue-rotate(194deg) brightness(95%) contrast(92%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.site-footer a .ic.icn-accsessibility {
    background-image: url(../img/icns/fill/16/accsessibility.svg);
}
.site-footer hr {
    height: 1px;
    margin: 7rem 0;
    border: none;
    background: rgba(34, 36, 49, 0.1);
}

/* Error */
.error {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8rem;
    max-width: 1080px;
    margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
    .error {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }
}
.error .hdr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}
@media only screen and (max-width: 1023px) {
    .error .hdr {
        justify-content: center;
    }
}
.error .t1 {
    color: #222431;
    font-family: "Roboto Slab", serif;
    font-size: 16rem;
    font-weight: 600;
    line-height: 1;
}
.error .t2 {
    color: #BCBDC1;
    font-size: 7rem;
    font-weight: 700;
    line-height: 1.2;
}
.error .t3 {
    margin-top: 2rem;
    font-size: 2.4rem;
}
.error .button {
    margin-top: 3rem;
}
.error .button .row {
    justify-content: flex-start;
}
@media only screen and (max-width: 1023px) {
    .error .button .row {
        justify-content: center;
    }
}
.error .ill {
    flex: 0 0 auto;
}

/* Report Thumb */
.report-tmb-cont {
    margin: 3rem auto;
    padding-top: 1rem;
    overflow: hidden;
    position: relative;
}
.report-tmb-cont::before {
    display: block;
    content: "";
    width: 100%;
    height: 25%;
    background: white;
    background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.report-tmb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto;
    padding: 16px;
    gap: 2px;
    text-decoration: none;
    background: #F4F4F4;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 3px 0 rgba(34, 36, 49, 0.3), 0 5px 20px 0 rgba(34, 36, 49, 0.07);
    box-shadow: 0 1px 3px 0 rgba(34, 36, 49, 0.3), 0 5px 20px 0 rgba(34, 36, 49, 0.07);
}
@media only screen and (max-width: 767px) {
    .report-tmb {
        padding: 12px;
    }
}
.report-tmb .hdr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}
.report-tmb .hdr .site-logo {
    width: 100px;
    height: 16px;
}
.report-tmb .hdr .txt {
    color: #0071EB;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    text-align: right;
}
@media only screen and (max-width: 767px) {
    .report-tmb .hdr .txt {
        font-size: 10px;
    }
}
.report-tmb .adr {
    padding: 0 0 12px 0;
    color: #0071EB;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .report-tmb .adr {
        padding: 0 0 8px 0;
    }
}
.report-tmb .adr:not(:first-child) {
    padding: 8px 0;
}
.report-tmb .t1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    gap: 8px;
}
.report-tmb .t1 .icn {
    width: 12px;
    filter: brightness(0) saturate(100%) invert(44%) sepia(54%) saturate(6689%) hue-rotate(76deg) brightness(92%) contrast(101%);
}
.report-tmb .t1 .txt {
    color: #0071EB;
}
.report-tmb .t2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 4px;
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    gap: 4px;
}
.report-tmb .t2 .icn {
    width: 6px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.report-tmb .t2 .txt {
    color: #222431;
}
.report-tmb .sct {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    padding: 8px;
    gap: 8px;
    background: #FFF;
    border-radius: 5px;
}
.report-tmb .two-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px;
}
.report-tmb .two-cols .sct {
    flex: 0 1 100%;
}
.report-tmb .smr .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
}
.report-tmb .smr .col {
    flex: 0 1 100%;
}
.report-tmb .smr .cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 6px 2px;
    background: #FFF;
    border-radius: 5px;
    gap: 4px;
    text-decoration: none;
}
.report-tmb .smr .icn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: #C8E2FF;
    border-radius: 50%;
}
.report-tmb .smr .icn img {
    width: 16px;
}
.report-tmb .smr .txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    text-align: center;
}
.report-tmb .smr .ttl {
    color: #4E505A;
    font-size: 5px;
    line-height: 1;
}
.report-tmb .smr .val {
    color: #222431;
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
}
.report-tmb .smr .val .blur {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-filter: blur(2px);
    filter: blur(2px);
}
.report-tmb .nav {
    font-size: 7px;
    line-height: 1;
}
.report-tmb .nav ul {
    margin: -1px 0;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
}
.report-tmb .nav li {
    margin: 0;
    padding: 1px 0;
    list-style: none;
    -webkit-column-break-inside: avoid;
    -moz-page-break-inside: avoid;
    break-inside: avoid;
    -o-column-break-inside: avoid;
    -ms-column-break-inside: avoid;
    column-break-inside: avoid;
    page-break-inside: avoid;
}
.report-tmb .nav .cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding: 3px 4px;
    color: #222431;
    background: #FFF;
    border-radius: 5px;
    gap: 4px;
    position: relative;
}
.report-tmb .nav .cnt::after {
    display: block;
    content: "";
    width: 4px;
    height: 4px;
    background: url(../img/arw.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
    position: absolute;
    top: calc(50% - 2px);
    right: 4px;
}
.report-tmb .nav .cnt .icn {
    flex: 0 0 auto;
    width: 8px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.report-tmb .cwi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
}
.report-tmb .cwi .img {
    flex: 0 0 80px;
    overflow: hidden;
}
.report-tmb .cwi .img img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-filter: blur(5px);
    filter: blur(5px);
}
.report-tmb .inf {
    flex: 0 1 100%;
}
.report-tmb .inf .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
}
.report-tmb .inf .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    flex: 0 1 100%;
    padding: 3px 0;
    border-top: 1px solid #E8E9EA;
}
.report-tmb .inf .icn {
    flex: 0 0 auto;
    width: 6px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
.report-tmb .inf .txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
}
.report-tmb .inf .ttl {
    color: #4E505A;
    font-size: 4px;
    line-height: 1;
}
.report-tmb .inf .val {
    color: #222431;
    font-size: 5px;
    font-weight: 700;
    line-height: 1;
}
.report-tmb .inf .val.blur {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}
.report-tmb .res > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    margin: -4px;
}
.report-tmb .res > .row > .col {
    flex: 0 1 50%;
    padding: 4px;
}
.report-tmb .tbl {
    color: #222431;
    font-size: 4px;
    line-height: 1;
}
.report-tmb .tbl .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    padding: 2px 4px;
    background: #F8F8F9;
    border-radius: 5px;
    gap: 4px;
}
@media only screen and (max-width: 767px) {
    .report-tmb .tbl .row {
        border-radius: 3px;
    }
}
.report-tmb .tbl .row:nth-of-type(even) {
    background: #FFF;
}
.report-tmb .tbl .val {
    color: #222431;
    font-weight: 700;
    text-align: right;
}
.report-tmb .tbl .val.blur {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-filter: blur(1px);
    filter: blur(1px);
}
.report-tmb .nch {
    font-size: 4px;
    line-height: 1;
}
.report-tmb .nch ul {
    margin: -2px 0;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
}
.report-tmb .nch li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 2px 0;
    gap: 4px;
    list-style: none;
    -webkit-column-break-inside: avoid;
    -moz-page-break-inside: avoid;
    break-inside: avoid;
    -o-column-break-inside: avoid;
    -ms-column-break-inside: avoid;
    column-break-inside: avoid;
    page-break-inside: avoid;
}
.report-tmb .nch .icn {
    flex: 0 0 auto;
    width: 8px;
}
.report-tmb .ctg {
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}
.report-tmb .ctg ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2px;
    margin: 0;
}
.report-tmb .ctg li {
    flex: 0 1 calc(100% / 2 - 1px);
    margin: 0;
    padding: 4px;
    background: rgba(200, 226, 255, 0.4);
    border-radius: 3px;
    list-style: none;
    position: relative;
}
.report-tmb .ctg li::after {
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    background: url(../img/arw.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 4px;
}

/* Register */
.reg-container {
    margin: 3rem 0;
    background: #FFF;
    border-radius: 1.5rem;
    -webkit-box-shadow: 0 1px 3px 0 rgba(34, 36, 49, 0.3), 0 5px 20px 0 rgba(34, 36, 49, 0.07);
    box-shadow: 0 1px 3px 0 rgba(34, 36, 49, 0.3), 0 5px 20px 0 rgba(34, 36, 49, 0.07);
    overflow: hidden;
}
.reg-container > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
}
@media only screen and (max-width: 1023px) {
    .reg-container > .row {
        flex-direction: column;
    }
}
.reg-container > .row > .col {
    flex: 0 1 100%;
    padding: 4rem;
}
.reg-container .col.sum {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
    background: rgba(0, 113, 235, 0.05);
}
@media only screen and (max-width: 1023px) {
    .reg-container .col.sum {
        order: 1;
    }
}
@media only screen and (max-width: 1023px) {
    .reg-container .col.sum.order-lg-first {
        order: -1;
    }
}
.reg-container .col.sum .report-tmb-cont {
    width: 100%;
    margin: -1rem auto -3rem auto;
}
@media only screen and (max-width: 767px) {
    .reg-container .col.sum .report-tmb-cont {
        width: calc(100% + 6rem);
        margin: -2rem -3rem;
        padding-right: 3rem;
        padding-left: 3rem;
    }
}
.reg-container .col.sum .report-tmb-cont::before {
    background: #f4f8fe;
    background: linear-gradient(0deg, #f4f8fe 0%, rgba(244, 248, 254, 0) 100%);
}
.reg-container .col.inf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.reg-sum .ttl {
    font-size: 22px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .reg-sum .ttl {
        font-size: 16px;
    }
}
.reg-sum .lst {
    font-size: 18px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}
@media only screen and (max-width: 767px) {
    .reg-sum .lst {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        font-size: 16px;
    }
}
.reg-sum .lst ul {
    margin: 0;
}
.reg-sum .lst li {
    margin: 0;
    padding: 0.25rem 0 0.25rem 28px;
    list-style: none;
    position: relative;
    -webkit-column-break-inside: avoid;
    -moz-page-break-inside: avoid;
    break-inside: avoid;
    -o-column-break-inside: avoid;
    -ms-column-break-inside: avoid;
    column-break-inside: avoid;
    page-break-inside: avoid;
}
@media only screen and (max-width: 767px) {
    .reg-sum .lst li {
        padding-left: 22px;
    }
}
.reg-sum .lst li::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/checkmark.svg) 0 0 no-repeat;
    background-size: 100% auto;
    filter: brightness(0) saturate(100%) invert(44%) sepia(54%) saturate(6689%) hue-rotate(76deg) brightness(92%) contrast(101%);
    position: absolute;
    top: 6px;
    left: 0;
}
@media only screen and (max-width: 1279px) {
    .reg-sum .lst li::before {
        width: 14px;
        height: 14px;
        top: 7px;
    }
}
@media only screen and (max-width: 767px) {
    .reg-sum .lst li::before {
        width: 12px;
        height: 12px;
        top: 6px;
    }
}
.reg-sum.v2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.reg-sum.v2 .lst {
    font-size: 15px;
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
}
@media only screen and (max-width: 767px) {
    .reg-sum.v2 .lst {
        font-size: 12px;
    }
}
.reg-sum.v2 .lst li {
    padding: 0 0 0 20px;
}
@media only screen and (max-width: 767px) {
    .reg-sum.v2 .lst li {
        padding-left: 16px;
    }
}
.reg-sum.v2 .lst li::before {
    width: 12px;
    height: 12px;
    top: 4px;
}
@media only screen and (max-width: 767px) {
    .reg-sum.v2 .lst li::before {
        width: 10px;
        height: 10px;
        top: 3px;
    }
}

.reg-inf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 4rem;
}
@media only screen and (max-width: 767px) {
    .reg-inf .ic {
        max-width: 40px;
    }
}
.reg-inf .t1 {
    font-size: 18px;
}
@media only screen and (max-width: 767px) {
    .reg-inf .t1 {
        font-size: 16px;
    }
}
.reg-inf .t2 {
    font-family: "Roboto Slab", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
}
@media only screen and (max-width: 767px) {
    .reg-inf .t2 {
        font-size: 24px;
    }
}
.reg-inf .t3 {
    color: #0071EB;
    font-family: "Roboto Slab", serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
}
@media only screen and (max-width: 767px) {
    .reg-inf .t3 {
        font-size: 18px;
    }
}
.reg-inf .ct {
    width: 100%;
    max-width: 320px;
}
@media only screen and (max-width: 767px) {
    .reg-inf .ct {
        max-width: 240px;
    }
}
.reg-inf .ct .rw {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reg-inf .ct .pr {
    font-family: "Roboto Slab", serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.25;
}
@media only screen and (max-width: 767px) {
    .reg-inf .ct .pr {
        font-size: 36px;
    }
}
@media only screen and (max-width: 767px) {
    .reg-inf .ct .so {
        max-width: 100px;
    }
}
.reg-inf .hr {
    width: 100%;
    height: 1px;
    background: white;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(34, 36, 49, 0.0984768908) 30%, rgba(34, 36, 49, 0.1) 70%, rgba(255, 255, 255, 0) 100%);
}

.reg-sat {
    padding: 4rem;
    font-size: 15px;
    background: rgba(255, 144, 0, 0.05);
}
@media only screen and (max-width: 1279px) {
    .reg-sat {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media only screen and (max-width: 767px) {
    .reg-sat {
        font-size: 13px;
        text-align: center;
    }
}
.reg-sat .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -1.5rem;
}
@media only screen and (max-width: 767px) {
    .reg-sat .row {
        margin: -1rem 0;
        flex-direction: column;
    }
}
.reg-sat .col {
    padding: 0 1.5rem;
}
@media only screen and (max-width: 767px) {
    .reg-sat .col {
        padding: 1rem 0;
    }
}
.reg-sat .img {
    flex: 0 0 auto;
}
@media only screen and (max-width: 767px) {
    .reg-sat .img {
        width: 120px;
    }
}
.reg-sat h3 {
    margin: 0;
}
.reg-sat p {
    margin: 1rem 0 0 0;
    color: #4E505A;
}
@media only screen and (max-width: 1023px) {
    .reg-sat br {
        display: none;
    }
}

.reg-incs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 2.5rem;
    text-align: left;
}
.reg-incs .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    gap: 2rem;
}
.reg-incs .icn {
    flex: 0 0 auto;
    width: 32px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(56%) saturate(3088%) hue-rotate(199deg) brightness(106%) contrast(101%);
}
@media only screen and (max-width: 767px) {
    .reg-incs .icn {
        width: 24px;
    }
}
.reg-incs .ttl {
    font-size: 18px;
    font-weight: 700;
}
@media only screen and (max-width: 767px) {
    .reg-incs .ttl {
        font-size: 14px;
    }
}
.reg-incs .val {
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
    .reg-incs .val {
        font-size: 12px;
    }
}

.reg-reports {
    width: 100%;
    max-width: 540px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
@media only screen and (max-width: 767px) {
    .reg-reports {
        height: 150px;
    }
}
.reg-reports::before {
    display: block;
    content: "";
    width: 100%;
    height: 50px;
    background: #f4f8fe;
    background: linear-gradient(0deg, #f4f8fe 0%, rgba(244, 248, 254, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.reg-reports::after {
    display: block;
    content: "";
    width: 54px;
    height: 54px;
    background: url(../img/sample.svg) 0 0 no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.reg-reports .col {
    width: 160px;
    position: absolute;
    top: 0;
    -webkit-box-shadow: 0 0 20px 0 rgba(34, 36, 49, 0.3);
    box-shadow: 0 0 20px 0 rgba(34, 36, 49, 0.3);
}
@media only screen and (max-width: 767px) {
    .reg-reports .col {
        width: 120px;
    }
}
.reg-reports .c1 {
    left: 0;
}
.reg-reports .c2 {
    left: 20%;
    -webkit-transform: translateX(-20%);
    -ms-transform: translateX(-20%);
    transform: translateX(-20%);
}
.reg-reports .c3 {
    left: 40%;
    -webkit-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    transform: translateX(-40%);
}
.reg-reports .c4 {
    left: 60%;
    -webkit-transform: translateX(-60%);
    -ms-transform: translateX(-60%);
    transform: translateX(-60%);
}
.reg-reports .c5 {
    left: 80%;
    -webkit-transform: translateX(-80%);
    -ms-transform: translateX(-80%);
    transform: translateX(-80%);
}
.reg-reports .c6 {
    right: 0;
}

/*# sourceMappingURL=register.css.map */
.site-logo.pro {
    width: 324px;
    background-image: url(../img/logo_pro.svg);
}
.site-footer .site-logo.pro {
    width: 246px;
}
.site-logo.black.pro {
    background-image: url(../img/logo_pro_black.svg);
}
@media only screen and (max-width: 767px) {
    .site-logo.pro {
        width: 160px;
    }
}