﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #48A8DE;
}

.bg-main {
    background: rgba(51, 51, 51, 0.9);
    /* background-color: #333333;*/
}

.btn-main {
    color: #fff;
    background-color: #333333;
    border-color: #504D4C;
}

    .btn-main:hover {
        background-color: #504D4C;
    }

.btn-outline-main {
    color: #283a5a;
    background-color: #fff;
    border-color: #283a5a;
}

    .btn-outline-main:hover {
        color: #fff;
        background-color: #283a5a;
        border-color: #283a5a;
    }

.bg-indigo {
    background-color: #6610f2;
}

.btn-indigo {
    color: #fff;
    background-color: #6610f2;
    border-color: #6610f2;
}

.btn-outline-indigo {
    color: #6610f2;
    background-color: #fff;
    border-color: #6610f2;
}

    .btn-outline-indigo:hover {
        color: #fff;
        background-color: #6610f2;
        border-color: #6610f2;
    }

.bg-purple {
    background-color: #6f42c1;
}

.btn-purple {
    color: #fff;
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.btn-outline-purple {
    color: #6f42c1;
    background-color: #fff;
    border-color: #6f42c1;
}

    .btn-outline-purple:hover {
        color: #fff;
        background-color: #6f42c1;
        border-color: #6f42c1;
    }

.w-10 {
    width: 10%
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}


.nav-link:hover {
    background-color: #48A8DE;
    border-radius: 10px;
}

#menu .nav-link:hover {
    background-color: #1b6ec2
}

/* priority display 
-------------------------------------------------- */

@media screen and (max-width: 1280px) {
    .priority-5 {
        display: none;
    }
}

@media screen and (max-width: 1045px) and (min-width: 835px) {
    .priority-5 {
        display: none;
    }

    .priority-4 {
        display: none;
    }
}

@media screen and (max-width: 565px) and (min-width: 300px) {
    .priority-5 {
        display: none;
    }

    .priority-4 {
        display: none;
    }

    .priority-3 {
        display: none;
    }
}

@media screen and (max-width: 300px) {
    .priority-5 {
        display: none;
    }

    .priority-4 {
        display: none;
    }

    .priority-3 {
        display: none;
    }

    .priority-2 {
        display: none;
    }
}

/* =========================================================
09. Media queries
============================================================ */

@media print {
}


.merry {
    --color1: #1528ec;
    --color2: #ff0a0a;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    font-size: 46px;
    background: repeating-linear-gradient( 45deg, var(--color1), var(--color1) 30px, var(--color2) 30px, var(--color2) 60px );
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    animation: 40s linear 0s infinite move;
}

@keyframes move {
    from {
        background-position: 0px;
    }

    to {
        background-position: 1000px;
    }
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /*transition: transform 0.2s ease-in-out;*/
    border-radius: 10px;
}

    .card:hover {
        /*transform: scale(1.05);*/
    }

.fs-7 {
    font-size: 0.85rem !important;
}

.fs-8 {
    font-size: 0.75rem !important;
}