@import "settings.css";
body.dialog-opened {
    overflow: hidden;
}
.header {
    position: fixed;
    width: 100%;
    background: linear-gradient(90deg, #FF7800 0%, #FAA532 100%);
    z-index: 5;
    padding: 0 2.5rem;
}
.header-inner {
    display: flex;
    align-items: center;
    max-width: 105rem;
    margin: 0 auto;
    height: 54px;
}
.header-inner .icon svg {
    height: 1rem;
    width: auto;
    margin-top: .3125rem;
}
.global-content {
    padding: 54px 0 60px;
}
.section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 3rem 1rem 0;
}
.section.stage {
    background-color: #ededed;
    background-image: url('../files/stage-visual.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 1rem 3rem;
    min-height: 300px;
}
.section.stage p {
    padding-top: 1rem;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
}
.content {
    width: 100%;
    max-width: 960px;
    text-align: center;
}
.content-heading {
    margin-bottom: 2rem;
}

.content-heading p {
    font-weight: bold;
    margin: 0;
}
.content-image {
    margin-top: 1rem;
}
.content-list {
    text-align: left;
}
.accordion-label {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    cursor: pointer;
    padding: 0.625rem 0.75rem 0.625rem 1.5rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    line-height: 20px;
    transition: color 0.4s;
}
.accordion-label.superior {
    background-color: #ededed;
    padding: 0.625rem 1.5rem;
    text-transform: uppercase;
}
.accordion-item {
    background-color: #ffffff;
}
.accordion-item:last-of-type {
    margin-bottom: 1rem;
}
.accordion-label::after {
    content: '';
    position: relative;
    width: 0.75rem;
    height: 1.1875rem;
    margin-left: 1rem;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22' %3E%3Cpolygon class='Icon-base' points='22,9 13,9 13,0 9,0 9,9 0,9 0,13 9,13 9,22 13,22 13,13 22,13 '/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    transform-origin: center center;
    transform: rotate(0deg);
    transition: transform .2s ease-in-out;
}
.accordion-label.active::after {
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 4' %3E%3Cpolygon class='Icon-base' points='22,0 0,0 0,4 22,4 '/%3E%3C/svg%3E");
}
.accordion-label.superior::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNSAxNSI+PHBhdGggY2xhc3M9Ikljb24tYmFzZSIgZD0iTTEyLjUsMTVhMSwxLDAsMCwxLS43NS0wLjM0bC0xMS41LTEzQTEsMSwwLDEsMSwxLjc1LjM0TDEyLjUsMTIuNDksMjMuMjUsMC4zNGExLDEsMCwxLDEsMS41LDEuMzJsLTExLjUsMTNBMSwxLDAsMCwxLDEyLjUsMTVaIi8+PC9zdmc+");
}
.accordion-label.superior.active::after {
    transform: rotate(-180deg);
}
.accordion-label.superior.active, .accordion-label.superior:hover {
    color: #FA5A14;
}
.accordion-panel {
    color: #878787;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    text-align: left;
    transition: max-height 0.2s ease-out;
    border-bottom: 2px dotted #ededed;
}
.accordion-panel.superior {
    padding: 0 0.75rem;
    background-color: #ededed;
}
.accordion-panel.inner p {
    margin-top: 0;
}
.icon-highlight {
    fill: #FA5A14;
}
.icon-base {
    fill: white;
}
.TextLink {
    position: relative;
    display: inline-block;
    max-width: 100%;
    font-family: "Interstate-Regular", Helvetica, Roboto, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #FA5A14;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color .2s ease-in-out;
    cursor: pointer;
    pointer-events: all;
}
.TextLink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    width: auto;
    background: rgba(236,86,0,0);
    animation: ani-textlink-leave .2s ease-in-out forwards;
}
.TextLink:not(.TextLink--noStyle):hover::after,
.TextLink:not(.TextLink--noStyle):focus::after,
.TextLink.is-active:not(.TextLink--noStyle)::after {
    animation: ani-textlink-enter .15s ease-in-out .05s forwards;
}
.MetaNavigation {
    padding: 2.25rem 0;
    background: linear-gradient(90deg, #FF7800 0%, #FAA532 100%);
    color: #000;
}
.MetaNavigation-wrapper {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}
.MetaNavigation-meta .MetaNavigation-link .TextLink {
    color: #000;
}
.MetaNavigation-meta .MetaNavigation-link .TextLink:hover {
    color: #fff;
}
.MetaNavigation-title .TextLink {
    line-height: normal;
}
.MetaNavigation-title svg {
    vertical-align: top;
}
dialog {
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    border: 0;
    padding: 0;
}
dialog::backdrop {
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
}
dialog .dialog-header {
    padding: 10px;
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}
dialog .dialog-content {
    overflow: auto;
    height: auto !important;
    max-height: calc(100vh - 80px);
    padding: 8px;
}

dialog .dialog-content .dialog-text {
    max-width: 1060px;
    margin: 10px 0;
}

dialog .Icon {
    width: 1rem;
    height: 1rem;
    display: block;
}
dialog .close-dialog {
    border: 0;
    background: #FFFFFF;
    padding: 0;
    cursor: pointer;
}
dialog p {
    margin: 0;
}
dialog table {
    margin-top: 8px;
    width: 100%;
}
dialog th {
    background: #FA5A14;
    padding: 1rem;
    color: #FFFFFF;
}
dialog td {
    max-width: 160px;
    text-align: center;
    background: #F1F1F1;
}
dialog td .check img,
dialog td .cross img {
    vertical-align: middle;
}
dialog .check:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../files/icon-check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
}
dialog .cross:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../files/icon-cross.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
}
dialog td p {
    text-align: center;
    padding: 4px;
}
dialog td p:not(:last-child) {
    border-bottom: 2px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
    .MetaNavigation-meta .MetaNavigation-link:not(:last-child) {
        margin-bottom: 1.5rem;
    }
    dialog table, dialog p {
        font-size: 14px;
    }
}
@media screen and (min-width: 768px) {
    .MetaNavigation {
        padding: 1.125rem 0;
    }
    .MetaNavigation-meta .MetaNavigation-link {
        display: inline-block;
        padding: 0 .75rem;
    }
}
@media screen and (max-width: 1023px) {
    .MetaNavigation-title {
        margin-bottom: 1.5rem;
    }
    .MetaNavigation-meta {
        margin-bottom: 1.5rem;
        text-align: center;
    }
}
@media screen and (min-width: 1024px) {
    .MetaNavigation-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }
    .MetaNavigation-meta {
        display: inline-block;
        text-align: left;
        margin-left: 2rem;
    }
    .header {
        padding: 0 1.5rem;
    }
}
@keyframes ani-textlink-enter {
    0% {
        background-color: #fff;
        right: 50%;
        left: 50%;
    }
    100% {
        background-color: #fff;
        right: 0;
        left: 0;
    }
}
@keyframes ani-textlink-leave {
    0% {
        background-color: #fff;
        right: 0;
        left: 0;
    }
    100% {
        background-color: transparent;
        right: 0;
        left: 0;
    }
}
