@font-face {
    font-family: "GillSans";
    src: url("../font/GillSans.ttf") format('truetype');
}

@font-face {
    font-family: 'Gotham';
    src: url('../preview/fonts/gotham/gotham-medium.otf');
}

.loading-text-group {
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    position: absolute;
}

.load-screen-text {
    color: white;
    text-align: center;
}

#carouselContainer {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.text-for-model {
    margin-left: 3%;
    margin-right: 3%;
    margin-top: 10px;
    padding: 7px;
    border-radius: 7px;
    background-color: var(--tutorial-background-color);
    display: block;
    font-family: "Gotham", sans-serif;
    font-size: 10pt;
    color: var(--tutorial-text-color);
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    opacity: 1;
}

.text-container {
    width: 100%;
    transform: translate(-100%, 0);
    transition: transform 0.5s;
}

.text-container-show {
    transform: translateX(0);
}

.display-none {
    display: none;
}

#tapToPlace {
    padding: 0 !important;
}

#link {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
    text-align: center;
    opacity: 1;
    display: block;
    font-family: "Gotham", sans-serif;
    font-size: 12pt;
    color: var(--link-text-color);
    padding-bottom: 15px;
    padding-top: 10px;
    -webkit-animation: fadeInOut 3s infinite;
    animation: fadeInOut 3s infinite;
}

@-webkit-keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#textToLink {
    display: inline-block;
    vertical-align: middle;
}

.rightArrow {
    font-size: 24pt;
    display: inline-block;
    vertical-align: middle;
}
