@import url('https://fonts.googleapis.com/css?family=Muli:300,300i,400,400i,700,700i,900,900i&display=swap');

:root {
    --blue1: #002757;
    --blue2: #004986;
    --blue3: #005f9c;
    --blue4: #258bc0;
    --blue5: #3fa6c5;
    --orange: #e06608;
    --orange2: rgba(224, 102, 8, 0.1);
    --white: #fff;
}

html {
    color: var(--blue1);
}

/*TYPOGRAPHY*/
html, p, h1, h2, h3, h4, h5, h6 {
    font-family: 'Muli', sans-serif !important;
}

.blue1-text {
    color: var(--blue1) !important;
}

.orange-text {
    color: var(--orange);
}

.white-text {
    color: var(--white);
}

.marvel-text p{
    color: var(--blue1);
}

.spaced-text {
    letter-spacing: 2px;
}

.xbold {
    font-weight: 900;
}

.underline {
    text-decoration: underline;
}

/*BACKGROUNDS*/
.bg {
    background-image: url("../img/background-xl.jpg");
    background-position: top center;
    background-repeat: repeat;
    background-size: cover;
    min-height: 100vh;
}

.bg-marvel {
    background-image: url("../img/background-xl-02.jpg");
    background-position: top center;
    background-repeat: repeat;
    background-size: cover;
    min-height: 100vh;
}

.orange-bg {
    background: var(--orange);
}

.blue1-bg {
    background: var(--blue1);
}

.blue4-bg {
    background: var(--blue4);
}

.top-line {
    background-image: url("../img/top-line.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 20px;
}

.orange-box {
    background: var(--orange2);
    color: var(--blue1);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.orange-box-dark {
    background: var(--orange);
    color: var(--white);
    padding: 20px;
    border-radius: 20px;
}

/*FORM*/
.uk-input, .uk-textarea {
    border: 1px solid var(--orange);
}

/*BORDER*/
.uk-border-rounded {
    border-radius: 20px;
}

/*FOOTER*/
footer {
    background: var(--blue1);
    box-shadow: 0 -2px 10px #000;
}

/*NAVBAR*/
.uk-navbar-nav > li > a, .uk-navbar-item, .uk-navbar-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-height: 0;
    padding: 0 15px;
    font-size: 0.875rem;
    font-family: 'Muli', sans-serif;
    text-decoration: none;
    color: #fff;
}

.uk-navbar-nav > li > a:hover {
    color: #fff;
    background: var(--blue1);
}

/*CONTENT BOX*/
.content-box {
    background: #fff;
    display: block;
    border-radius: 20px;
}

.content-box-marvel {
    background: transparent;
    display: block;
    border-radius: 20px;
    border: 2px solid var(--white);
}

.content-box p {
    color: var(--blue1);
    text-align: justify;
}

.content-box h1, .content-box h2, .content-box h3, .content-box h4 {
    color: var(--orange);
}

[class*='uk-align'] {
    margin-bottom: 0;
}

label {
    color: var(--white);
}

.uk-button-primary:hover, .uk-button-primary:focus, .uk-button-primary:active {
    background-color: var(--blue1);
    color: #fff;
}

/*LINKS*/
.img-link, .img-link:hover, .img-link:focus, .img-link:active {
    background: transparent !important;
}

/*BUTTONS*/
.orange-btn {
    background: var(--orange);
    color: var(--white);
}

.orange-btn:hover, .orange-btn:focus, .orange-btn:active {
    background: var(--blue1);
    color: var(--white);
}

.blue1-btn {
    background: var(--blue1);
    color: var(--white);
}

.blue1-btn:hover, .blue1-btn:focus, .blue1-btn:active {
    background: var(--orange);
    color: var(--white);
}

.blue2-btn {
    background: var(--blue2);
    color: var(--white);
}

.blue2-btn:hover, .blue2-btn:focus, .blue2-btn:active {
    background: var(--blue5);
    color: var(--white);
}

.blue4-btn {
    background: var(--blue4);
    color: var(--white);
}

.blue4-btn:hover, .blue4-btn:focus, .blue4-btn:active {
    background: var(--blue1);
    color: var(--white);
}

.btn-smile {
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-smile:hover, .btn-smile:focus, .btn-smile:active {
    background: var(--blue1);
    color: var(--white);
}

/*SUB MENU*/
.uk-slider-items {
    color: #FFFFFF80;
    font-size: 14px;
}

.uk-slider-items a {
    color: var(--white);
    font-size: 14px;
}

.uk-slider-items a.active {
    color: var(--orange);
    font-weight: 900;
    text-decoration: underline;
}

.uk-slidenav-next, .uk-slidenav-previous, .uk-slidenav-next:hover, .uk-slidenav-previous:hover, .uk-slidenav-next:active, .uk-slidenav-previous:active, .uk-slidenav-next:visited, .uk-slidenav-previous:visited {
    color: #fff
}

/*HOME MENU*/
@media screen and (max-width: 1024px) {
    .page-menu a.uk-button {
        font-size: 12px;
        padding: 0 20px;
    }
}

/*LIST*/
.uk-list-bullet > li::before {
    content: "•";
    position: absolute;
    top: 0;
    left: 10px;
    width: 1.5em;
    height: 1.5em;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: block;
    color: var(--orange);
}

.uk-list-bullet .uk-list-bullet > li::before {
    content: "-";
    position: absolute;
    top: 0;
    left: 10px;
    width: 1.5em;
    height: 1.5em;
    background-image: none;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: block;
    color: var(--orange);
}

.ul-box {
    background: var(--orange2);
    padding: 10px;
    border-radius: 10px;
}

.round-num {
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    background-color: var(--orange);
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px #373737;
    padding: 5px 12px;
}

.round-num-blue {
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    background-color: var(--blue1);
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px #373737;
    padding: 5px 12px;
}

.round-icon {
    color: var(--white);
    /*font-size: 20px;*/
    font-weight: 900;
    background-color: var(--orange);
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px #373737;
    padding: 14px 20px;
}

.round-icon > i {
    top: 4px;
    position: relative;
}

.round-text-blue {
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    background-color: var(--blue1);
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px #373737;
    padding: 5px 12px;
}

.vline {
    position: relative;
    z-index: 1;
}

.vline::after {
    content: "";
    border-left: 2px solid var(--blue1);
    position: absolute;
    height: 95%;
    top: 0;
    left: 19px;
    z-index: -1;
}

.box-vline {
    position: relative;
    z-index: 1;
}

.box-vline::after {
    content: "";
    border-left: 2px solid var(--blue1);
    position: absolute;
    height: 100%;
    top: 0;
    left: 59px;
    z-index: -1;
}

@media screen and (max-width: 1024px) {
    .box-vline::after {
        content: "";
        border-left: 2px solid var(--blue1);
        position: absolute;
        height: 100%;
        top: 0;
        left: 49px;
        z-index: -1;
    }
}

.scheme {
    position: relative;
    z-index: 1;
}

.scheme::after {
    content: "";
    border-left: 2px solid var(--blue1);
    position: absolute;
    height: 100%;
    top: 0;
    left: 4px;
    z-index: -1;
}

.scheme-circle {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    box-shadow: 0 0 0 5px var(--white), 0 0 0 10px var(--orange), 0 0 0 15px var(--white), 0 0 5px 15px #373737;
    background-color: var(--blue4);
    position: relative;
    top: 15px;
}

.scheme-circle-small {
    height: 10px;
    width: 10px;
    border-radius: 5px;
    box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--orange), 0 0 0 9px var(--white), 0 0 5px 10px #373737;
    background-color: var(--blue4);
    position: relative;
    left: 14px;
    top: 8px;
}

.orange-hr {
    border-top: 1px solid var(--orange);
}

a.disabled > * {
    opacity: 0.3;
    cursor: default;
}

/*TOOLTIP*/
.tooltip-bg {
    background: var(--blue1);
    display: inline-block;
    padding: 0 10px;
    border-radius: 20px;
    color: var(--white);
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: #fff;
    color: var(--orange);
    text-transform: none;
    font-weight: normal;
    font-size: 14px;
    font-style: normal;
    text-align: justify;
    border-radius: 6px;
    padding: 20px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 25%;
    margin-left: 0;
    opacity: 0;
    box-shadow: 0 0 5px #5f5f5f;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

span.speech, .speech {
    display: block;
    margin-left: 20px;
    font-style: italic;
    color: var(--blue3);
}

.uk-light > span.speech {
    color: var(--white);
}

.indent {
    margin-left: 50px !important;
}

.note {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 20px;
}

#meraviglia .uk-modal-dialog {
    background: #151515;
    transition: opacity 1.5s ease;
    min-height: 100vh;
}

#meraviglia .uk-modal-body {
    padding: 30px 50px;
}

.sa-delay {
    animation-delay: 2s;
}

.orange-box-dark .uk-subnav-pill > .uk-active > a, .orange-box-dark .uk-subnav-pill > * > :first-child:hover {
    background-color: var(--white);
    color: var(--blue1);
    border-radius: 20px;
}

.orange-box-dark .uk-subnav-pill > * > :first-child {
    color: var(--white);
}

.content-box-marvel .uk-subnav-pill > .uk-active > a, .orange-box-dark .uk-subnav-pill > * > :first-child:hover{
    background-color: var(--blue1);
    color: var(--orange);
    border-radius: 20px;
}

.content-box-marvel .uk-subnav-pill > * > :first-child {
    color: var(--blue2);
}

.content-box-marvel .uk-subnav-pill > * > a:hover{
    background-color: var(--white);
    color: var(--blue1);
    border-radius: 20px;
}

      /*Z-INDEX*/
.z0 {
    z-index: 0;
}

/*ANIMATION*/
.star-spin {
    animation: rotate 2s linear infinite, glowing 1s infinite;;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes glowing {
    0% {
        text-shadow: 0 0 -10px #c4a300;
    }
    40% {
        text-shadow: 0 0 20px #c4a300;
    }
    60% {
        text-shadow: 0 0 20px #c4a300;
    }
    100% {
        text-shadow: 0 0 -10px #c4a300;
    }
}

a.uk-position-center-right.uk-position-small.uk-hidden-hover.uk-icon.uk-slidenav-next.uk-slidenav,
a.uk-position-center-left.uk-position-small.uk-hidden-hover.uk-icon.uk-slidenav-previous.uk-slidenav {
    font-weight: 100;
    background-color: #ff6201;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0px 0px 5px #666;
    opacity: .8;
}

.contribute-btn {
    background: var(--orange);
    padding: 30px 10px 5px 10px;
    color: var(--white);
    border-radius: 5px;
    display: inline-block;
    position: fixed;
    right: -100px;
    top: 50%;
    transform: rotate(90deg);
    font-size: 12px;
}

.contribute-btn:hover {
    color: var(--white);
    text-decoration: none;
}

/*POST*/
.post{
    background: #ffffff;
    display: block;
    border-radius: 20px;
    box-shadow: 0 2px 5px #333;
    overflow: hidden;
}

.post-title{
    background: var(--blue1);
    padding: 16px 20px;
}

.post-title h1{
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

.post-info{
    background: var(--orange);
    padding: 10px 20px;
}

.post-info p{
    color: #fff;
    font-style: italic;
    font-size: 12px;
    text-align: right;
    margin: 0;
}

.post-content{
    padding: 20px;
}

.post-content p{
    font-size: 14px;
}

mark {
    background: #258bc0;
    color: #ffffff;
}

.uk-alert{
    margin-bottom: 0;
}

.new::before {
    position: absolute;
    content: 'NEW!';
    color: white;
    background: red;
    padding: 5px 15px;
    top: 20px;
    left: 0px;
    box-shadow: 2px 2px 5px #333;
    font-weight: 900;
}

.map-incomplete{
    color: #258bc0;
    position: relative;
}

.map-incomplete::after{
    content: url("../img/x-square-fill.svg");
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
}

.map-complete{
    color: #258bc0;
    font-weight: bold;
    position: relative;
}

.map-complete::after{
    content: url("../img/check-square-fill.svg");
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
}

.uk-accordion-title {
    display: block;
    font-size: 1.25rem;
    line-height: 1.4;
    overflow: hidden;
    background-color: #237baa;
    padding: 1rem;
    color: white;
    border-radius: 5px;
}

.uk-accordion-title:hover, .uk-accordion-title:focus{
    color: white;
}

.accordion-title--inner{
    background-color: #012854;
    padding: 0.5rem;
    font-size: 1rem;
}