﻿:root {
    --white-color: #fff;
    --yellow-color: #ffb700;
    --dark-color: #000;
    --main-text-color: #313131;
    --light-text-color: #212121;
    --primary-color: #14133b;
    --danger-color: #f86b6b;
    --success-color: #28a745;
    --field-bg-color: #fff;
    --grey-link-color: #878787;
    --background-dark-color: #14133b; /*#072655*/
    --background-light-color: #ffffff; /*#072655*/
}

* {
    margin: 0;
    padding: 0;
    font-family: ElectroluxSansRegular;
}

a {
    color: var(--background-dark-color);
}

.app__nav {
    /*position: absolute;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    width: 100%;
    background-color: var(--background-light-color);
    box-shadow: 0 5px 19px 0 rgba(255, 255, 255, 0.16);
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 1004;
}

.app__header {
    width: 100%;
    align-items: center;
    color: var(--white-color);
}

.app__header_icon {
    object-fit: contain;
    height: 40px;
}

body {
    height: 100vh;
    background-color: var(--background-light-color);
}

.content {
    height: 100%;
    padding: 0 1em;
    padding-top: 4.5em;
}

.title {
    height: 37px;
    font-family: ElectroluxSansRegular;
    font-size: 30px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.23;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
    padding-top: 4vh;
}

.sub-title {
    height: 37px;
    font-family: ElectroluxSansRegular;
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: var(--dark-color);
    padding-top: 4vh;
}

.page-title {
    height: 37px;
    font-family: ElectroluxSansRegular;
    font-size: 21px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.2;
    letter-spacing: normal;
    text-align: left;
    color: var(--dark-color);
    white-space: nowrap;
    margin-left: 3px;
    margin-right: 3px;
    overflow: hidden;
    margin-top: 3px;
}


.field-label {
    font-family: ElectroluxSansSemibold;
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: normal;
    text-align: left;
    color: var(--main-text-color);
}

.alert-danger {
    color: var(--white-color);
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    opacity: 0.88;
    border-radius: 15px;
    position: relative;
    width: 100%;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--main-text-color);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    height: 35px;
    /*border-radius: 15px;*/
    background-color: var(--white-color);
}

    .form-control:focus {
        color: var(--main-text-color);
        background-color: var(--white-color);
        border-color: #ced4da;
        outline: 0;
        box-shadow: none;
    }

.btn-primary {
    /*border-radius: 30px;*/
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    max-width: 280px;
    width: 100%;
}

    .btn-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--white-color);
    }

    .btn-primary.disabled, .btn-primary:disabled {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--white-color);
        opacity: 0.90;
    }

.btn-success {
    /*border-radius: 30px;*/
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: var(--white-color);
    max-width: 280px;
    width: 100%;
}

    .btn-success:hover {
        background-color: var(--success-color);
        border-color: var(--success-color);
        color: var(--white-color);
    }

    .btn-success.disabled, .btn-success:disabled {
        background-color: var(--success-color);
        border-color: var(--success-color);
        color: var(--white-color);
        opacity: 0.90;
    }

.tab {
    height: 4em;
    box-shadow: 0 5px 19px 0 rgba(255, 255, 255, 0.16);
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    background-color: var(--background-light-color);
    z-index: 1002;
}

.tab__item {
    width: 100%;
    display: flex;
    height: 100%;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.tab__img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.title {
    color: var(--primary-color) !important;
    font-weight: bold;
}

.posts__grid {
    margin-top: 1em;
    width: 100%;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    grid-auto-rows: 19.5em;
}

@media (min-width: 1024px) {
    .posts__grid {
        grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
        grid-auto-rows: 24.5em;
    }
}

.posts__lists {
    margin-top: 1em;
    width: 100%;
    display: flex;
    flex-direction: column;
}

    .posts__lists > .posts__item {
        margin-bottom: 2em;
    }

.posts__user {
    font-family: ElectroluxSansSemibold;
    font-size: 13px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
}

.posts__location {
    font-size: 10px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
}

.posts__image {
    width: 100%;
    margin: 10px 0;
}

    .posts__image > a > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.posts__description {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.09;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
    margin-top: 0.5em;
}

    .posts__description.truncated {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

.posts__like {
    height: 24px;
    width: 24px;
    margin: 0 0 5px 0;
}

.posts__numlikes {
    height: 14px;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
    margin-left: 0.8em;
}

.posts__more {
    font-size: 13px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.09;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
}

.posts__hashtag {
    color: var(--white-color);
    font-family: ElectroluxSansSemibold;
}

.posts__delete {
    height: 24px;
    width: 24px;
}

textarea.form-control {
    height: 8em !important;
}

.dropzone__custom {
    min-height: 6em !important;
    border: 1px solid #fff !important;
    border-radius: 15px !important;
    background-color: var(--white-color) !important;
    display: flex;
    justify-content: center;
}

.dropzone .dz-preview .dz-image {
    border-radius: 0 !important;
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: normal;
}

.blockUI.blockMsg.blockPage {
    z-index: 1011;
    position: fixed;
    padding: 0px;
    margin: 0px;
    width: 30%;
    top: 40%;
    left: 35%;
    text-align: center;
    color: rgb(0, 0, 0);
    border: 3px solid red;
    background-color: rgb(255, 255, 255);
    cursor: wait;
}

.translate-label {
    text-decoration: underline;
    font-style: oblique;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    text-align: left;
    color: cadetblue;
    cursor: pointer;
}

#Loader {
    width: 100%;
    height: 4rem;
}

#LoaderContent {
    color: var(--white-color);
}

.search {
    position: relative;
}

.search__img {
    position: absolute;
    top: 5px;
    right: 16px;
    width: 25px;
}

.search__field {
    padding-right: 50px;
}

.select2-container--default .select2-selection--multiple {
    border-radius: 30px;
    background-color: #f2f4f7;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 30px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: none;
    display: inline-block;
    margin-left: 5px;
    margin-top: 5px;
    border-radius: 30px;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
    border-right: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #ffb700;
    color: white;
}

.select2-container--default .select2-results__option--selected {
    background-color: #e4e4e4;
}

.hidden {
    display: none !important;
}

.document__title {
    font-family: ElectroluxSansSemibold;
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.6;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
}

.document__img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.document__name {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.07;
    letter-spacing: normal;
    text-align: left;
    color: var(--white-color);
    margin-left: 0.5rem;
}

.document__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1rem;
}

.document__item {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .document__item:not(:last-child) {
        border-bottom: solid 1px var(--white-color);
    }


.languages__img {
    width: 34px;
    height: 23px;
    object-fit: contain;
    margin: 0 10px 0 0;
}

.map-game {
    filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(121deg) brightness(91%) contrast(89%);
}

.station {
    position: absolute;
    z-index: 1001;
    filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(121deg) brightness(91%) contrast(89%);
}

.number {
    position: absolute;
    z-index: 999;
    width: 100px;
    filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(121deg) brightness(91%) contrast(89%);
}

.step {
    position: absolute;
    z-index: 999;
    filter: invert(76%) sepia(93%) saturate(712%) hue-rotate(358deg) brightness(102%) contrast(104%);
}

.current-level {
    /*    filter: invert(58%) sepia(78%) saturate(5376%) hue-rotate(180deg) brightness(108%) contrast(97%);*/
    filter: invert(100%) sepia(15%) saturate(503%) hue-rotate(202deg) brightness(106%) contrast(100%);
}

.complete-level {
    filter: invert(76%) sepia(93%) saturate(712%) hue-rotate(358deg) brightness(102%) contrast(104%);
}

.right-answer {
}

.map-pin {
    width: 50px;
    position: absolute;
    z-index: 2000;
}

.wrong-answer {
    background-color: red;
}

.station-animation {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-name: zoom;
    animation-name: zoom;
    animation-iteration-count: 2;
}

.station-container {
    /*position:absolute*/
}

.station-text {
    color: var(--primary-color);
    text-align: justify;
    font-size: 20px;
}

.station-question {
    color: var(--primary-color);
    text-align: justify;
    font-size: 20px;
    margin-top: 20px;
    text-align: justify;
}

.station-answer {
    color: var(--primary-color);
    text-align: justify;
    font-size: 20px;
    margin-top: 20px;
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(1.0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }

    60% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes zoom {
    0% {
        transform: scale(1.0);
    }

    20% {
        transform: scale(1.2);
    }

    40% {
        transform: scale(1.3);
    }

    60% {
        transform: scale(1.2);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.0);
    }
}

.back-container {
    text-align: center;
    margin-top: 40px;
}

.back-link {
    font-size: 23px;
}

.link-container {
    text-align: center;
    margin-top: 40px;
}

.text-container {
    padding-top: 10px;
    text-align: justify;
}

.question-link {
    font-size: 23px;
}

#mapContainer {
    height: calc(100vh - 120px); /* Fallback for browsers that do not support Custom Properties */
    height: calc((var(--vh, 1vh) * 100) - 120px);
    margin-top: 60px;
}

.bird {
    background-image: url('../../map/bird-cells-new.svg');
    background-size: auto 100%;
    width: 88px;
    height: 125px;
    will-change: background-position;
    animation-name: fly-cycle;
    animation-timing-function: steps(10);
    animation-iteration-count: infinite;
}

.bird--one {
    animation-duration: 1s;
    animation-delay: -0.5s;
}

.bird--two {
    animation-duration: 0.9s;
    animation-delay: -0.75s;
}





.bird-container {
    position: absolute;
    top: 20%;
    left: -10%;
    transform: scale(0) translateX(-10vw);
    will-change: transform;
    animation-name: fly-right-one;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bird-container--one {
    animation-duration: 15s;
    animation-delay: 0;
}

.bird-container--two {
    top: 35%;
    animation-duration: 16s;
    animation-delay: 1s;
}


@keyframes fly-cycle {

    100% {
        background-position: -900px 0;
    }
}

@keyframes fly-right-one {

    0% {
        transform: scale(0.3) translateX(-10vw);
    }

    10% {
        transform: translateY(2vh) translateX(10vw) scale(0.4);
    }

    20% {
        transform: translateY(0vh) translateX(30vw) scale(0.5);
    }

    30% {
        transform: translateY(4vh) translateX(50vw) scale(0.6);
    }

    40% {
        transform: translateY(2vh) translateX(70vw) scale(0.6);
    }

    50% {
        transform: translateY(0vh) translateX(90vw) scale(0.6);
    }

    60% {
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }

    100% {
        transform: translateY(0vh) translateX(110vw) scale(0.6);
    }
}

@keyframes fly-right-two {

    0% {
        transform: translateY(-2vh) translateX(-10vw) scale(0.5);
    }

    10% {
        transform: translateY(0vh) translateX(10vw) scale(0.4);
    }

    20% {
        transform: translateY(-4vh) translateX(30vw) scale(0.6);
    }

    30% {
        transform: translateY(1vh) translateX(50vw) scale(0.45);
    }

    40% {
        transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
    }

    50% {
        transform: translateY(0vh) translateX(90vw) scale(0.45);
    }

    51% {
        transform: translateY(0vh) translateX(110vw) scale(0.45);
    }

    100% {
        transform: translateY(0vh) translateX(110vw) scale(0.45);
    }
}

.marker {
    transform: perspective(40px) rotateX(20deg) rotateZ(-45deg);
    transform-origin: 50% 50%;
    border-radius: 50% 50% 50% 0;
    padding: 0 3px 3px 0;
    width: 40px;
    height: 40px;
    background: #14133B;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -2.3em 0 0 0.1em;
    -webkit-box-shadow: -1px 1px 4px rgba(0, 0, 0, .5);
    -moz-box-shadow: -1px 1px 4px rgba(0, 0, 0, .5);
    box-shadow: -1px 1px 4px rgba(0, 0, 0, .5);
}

    .marker:after {
        content: '';
        width: 1em;
        height: 1em;
        margin: 1em 0 0 .7em;
        background: #ffffff;
        position: absolute;
        border-radius: 50%;
        -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .5);
        -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .5);
        box-shadow: 0 0 10px rgba(0, 0, 0, .5);
        -moz-box-shadow: inset -2px 2px 4px hsla(0, 0, 0, .5);
        -webkit-box-shadow: inset -2px 2px 4px hsla(0, 0, 0, .5);
        box-shadow: inset -2px 2px 4px hsla(0, 0, 0, .5);
    }

.beacon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 10%;
    width: 20%;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    /*z-index: -1;*/
}

    .beacon:before,
    .beacon:after {
        position: absolute;
        content: "";
        height: 30%;
        width: 60%;
        left: 0;
        top: 0;
        background-color: transparent;
        border-radius: 50%;
        box-shadow: 0 0 0 3px var(--primary-color);
        -webkit-animation: active 2s infinite linear;
        -moz-animation: active 2s infinite linear;
        animation: active 2s infinite linear;
    }

.beacon-right:before,
.beacon-right:after {
    box-shadow: 0 0 0 3px #08ff40;
}

.beacon-wrong:before,
.beacon-wrong:after {
    box-shadow: 0 0 0 3px #e81000;
}

.beacon:after {
    -moz-animation-delay: 1s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes active {
    0% {
        -webkit-transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes active {
    0% {
        transform: scale(.1);
        transform: box-shadow(0px 0px 0px 1px #14133B);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}


.link-start {
    /*    color: #14133b;
    background-color: white;
    border-color: white;
*/
    color: white;
    background-color: transparent;
    font-size: 2em;
}

    .link-start:hover {
        text-decoration: none;
        color: white;
        transform: scale(1.2);
    }

@media only screen and (max-width: 400px) {

    .link-start {
        font-size: 26px;
    }
}

.fadein {
    margin-top: 25px;
    font-size: 21px;
    text-align: center;
    -webkit-animation: fadein 4s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 4s; /* Firefox < 16 */
    -ms-animation: fadein 4s; /* Internet Explorer */
    -o-animation: fadein 4s; /* Opera < 12.1 */
    animation: fadein 4s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.img-response {
    padding: 50px;
}
.img-ok{
    margin: 0 auto;
    width: 325px;
}
.end-message {
    font-size: 35px;
    color: white;
}

.carousel-page-text {
    font-size: 22px;
}

@media only screen and (max-width: 400px) {

    .carousel-page-text {
        font-size: 16px;
    }
}

.carousel-page-logo {
    width: 160px
}

.alphabet-container {
    /*    border: 1px solid #0056b3;
*/ padding: 3px;
    min-width: 700px;
    overflow-x: auto;
}

/*.alphabet-item {
    border: 1px solid white;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    margin: 2px;
}*/
.alphabet-item {
    /*border: 1px solid white;*/
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    margin: 5px;
    background-color: #ffffff36;
    border-radius: 6px;
    height: 50px;
}

.alphabet-item:active {
    opacity: 0.3;
}

.alphabet-image {
    width: 100%;
    max-width: 40px;
    border: 1px solid;
    border-radius: 6px;
}

.alphabet-letter {
    width: 50px;
    color: white;
    align-content: center;
    align-items: center;
    justify-content: center;
    display: flex;
}

.table-word-container {
    margin: 0 auto;
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    background-color: #ffffff36;
    border-radius: 6px;
}

.word-container {
    width: 100%;
    margin-top: 60px;
}

.word-cell {
    /*border: 1px solid white;*/
    font-size: 22px;
    font-weight: bold;
    width: 40px;
    text-align: center;
    min-width: 22px;
    color: white;
}

.word-cell-image {
    /*border: 1px solid white;*/
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    padding: 2px;
    padding-bottom: 7px;
}

.word-image {
    width: 100%;
    max-width: 50px;
    border: 1px solid;
}

.btn-outline-primary {
    /*border-radius: 30px;*/
    border-color: var(--white-color);
    color: var(--white-color);
    width: 334px;
}

    .btn-outline-primary:hover {
        color: var(--white-color);
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        opacity: 0.90;
    }

    .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
        color: var(--white-color);
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.allword-container {
    /*    border: 1px solid #0056b3;*/ 
    padding: 3px;
    overflow-x: auto;
}

.allword-item {
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    margin: 5px;
    background-color: #ffffff36;
    border-radius: 6px;
}
.word-to-replace {
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    background-color: #ffffff36;
    border-radius: 6px;
    width: 130px;
    height: 40px;
}

.word-selected {
    background-color: #009fff82;
}

.allword-word {
    color: white;
}

.fulltext-container {
    /*    border: 1px solid #0056b3;
*/ padding: 3px;
    overflow-x: auto;
}

.fulltext-item {
    /*    border: 1px solid white;*/
    padding: 5px;
    font-size: 20px;
    /*font-weight: bold;*/
    margin: 2px;
}
.fulltext-replaced {
    color: #ffcb00e8 !important;
}

.fulltext-word {
    color: white;
}

.space-blink {
    animation: blinker 1.5s linear infinite;
    height: 4px;
    width: 26px;
    background-color: #ffc630;
    margin: 0 auto;
    margin-top: 24px;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.wrong-choice {
    height: 9px;
    margin-top: 20px;
    animation: blinker 0.5s linear infinite;
    background-color: red;
}


.wrong-word-to-replace {
    background-color: #f443367d;
}

.carousel-item {
    height: calc(100vh - 290px);
}

.carousel-item>div{
    height: 100%;
}

.carousel-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-page-text{
    margin-bottom: 180px;
}