﻿/* HTML */

a {
    text-decoration: none !important;
}

    a:hover {
        text-decoration: none !important;
    }

body {
    padding-top: 100px !important;
    background-color: #fff;
}

#main {
    min-height: 85vh !important;
    padding-bottom:100px;
}

textarea, input {
    border-radius: 0px !important;
}

textarea {
    min-height:150px !important;
}

/* COLORS */

.bg-white {
    background-color: #FFF;
}

.bg-black {
    background-color: #000;
}

/* BOOTSTRAP CUSTOMIZATION */

.collapsing {
    transition: none !important;
}

.collapse-md {

}

.btn {
    text-decoration:none !important;
}

.bg-primary {
    background-color: #1f4a89 !important;
}

.border-primary {
    border-color: #1f4a89 !important;
}

.text-primary {
    color: #1f4a89 !important;
}

    .text-primary:hover {
        color: #192d4a !important;
    }

    .text-primary:active {
        color: #1111 !important;
    }

.btn-primary {
    background-color: #1f4a89 !important;
    border-color: #1f4a89 !important;
}

    .btn-primary:hover {
        background-color: #192d4a !important;
        border-color: #192d4a !important;
        color: #FFF !important;
    }

.btn-outline-primary {
    color: #1f4a89 !important;
    border-color: #1f4a89 !important;
}

    .btn-outline-primary:hover {
        background-color: #192d4a !important;
        border-color: #192d4a !important;
        color: #FFF !important;
    }

    .btn-outline-primary:active {
        background-color: #111 !important;
        border-color: #111 !important;
        color: #FFF !important;
    }

.bg-danger {
    background-color: #DD4124 !important;
}

.text {
    color: #DD4124 !important;
}

.btn-danger {
    background-color: #DD4124 !important;
    border-color: #DD4124 !important;
}

.modal-content {
    border-radius: 0 !important;
}

/* TAGS */

.tag-sm {
    border-radius: 5px;
    border: 2px solid #CCC;
    color: #888;
    padding: 2px 5px 4px 5px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

/* VFX */

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

.fade-in-out {
    animation: fadeInOut 2s infinite;
}


@keyframes bouncey {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

.bouncey {
    animation: bounce 1s ease infinite;
}

@keyframes shakey {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.shakey {
    animation: shakey 0.5s;
    animation-iteration-count: 1;
}

/* CHARTING */

.chart-visualization {
    max-width:99% !important;
}

.typed-cursor {
    position:absolute;
}

.typed-container {
    white-space: nowrap !important;
    overflow: hidden;
}

#progress-container {
    width: 100%;
    background-color: #ccc;
}

#progress-bar {
    width: 0;
    height: 15px;
    background-color: #3F69AA;
    text-align: center;
    line-height: 30px;
    color: white;
}
