/* COMUNI */

.zeyada {
    font-family: 'Zeyada'!important;
    text-transform: uppercase!important;
}

html,
body {
    background-color: white;
}

.bg-blue {
    background-color: #0F1D42
}

.bg-orange {
    background-color: #f39639
}

.bg-white {
    background-color: #ffffff
}

.bg-cool {
    background-color: #f7f7f7
}

.bg-black {
    background-color: #1f1f1f;
}

.bg-red {
    background-color: #e43432;
}

.text-blue {
    color: #0F1D42
}

.text-orange {
    color: #f39639
}

.text-white {
    color: #ffffff
}

.text-cool {
    color: #f7f7f7
}

.text-black {
    color: #1f1f1f;
}

.text-red {
    color: #e43432;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.btn-circle:hover>i,
.btn.btn-circle:hover>i {
    color: #1f1f1f;
    background-color: #f39639;
}

.no-margin-top {
    margin-top: 0!important;
}

.uppercase {
    text-transform: uppercase;
}


/* HEADER */

.navbar {
    text-align: center;
}

.navbar-brand {
    height: auto;
    border: 0;
    float: none;
    display: inline-block;
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 50px;
}


/* FOOTER */

footer {
    bottom: 0;
    width: 100%;
}


/* NAV */

#nav {
    border-right: 0;
    top: 83px;
}

.nav-primary {
    background-color: #ffffff;
}

.nav-primary>ul>li.active>a {
    border-color: #f39639
}

@media (max-width: 767px) {
    .slide-nav #nav {
        top: 60px!important;
        width: 40%!important;
        border-right: 1px solid #1f1f1f;
    }
}


/* LOADING */

.loading {
    opacity: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    background: #ffffff;
    padding-top: 25vh;
    text-align: center;
    z-index: -1;
    transition: opacity .8s ease-out;
}

app-root:empty+.loading {
    opacity: 1;
    z-index: 100;
}


/*FRAMES*/

@keyframes pulse_animation {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1);
    }
    60% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation-name: pulse_animation;
    animation-duration: 1000ms;
    transform-origin: 70% 70%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
    html {
        transform: rotate(-90deg);
        transform-origin: left top;
        width: 100vh;
        overflow-x: hidden;
        position: absolute;
        top: 100%;
        left: 0;
    }
}