﻿div {
    font-family: "Segoe UI";
}

.demo-main {
    background-color: #fcfcfe;
}

.demo-logo {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    align-self: center;
    min-height: 100px;
    justify-content: center;
}

.demo-navbar {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    align-self: center;
    min-height: 100px;
    justify-content: center;
    gap: 10px;
}

.demo-navbar-item {
    background-color: #ffffff;
    min-height: 60px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #111111;
    transition: background-color 300ms ease-out , transform 300ms ease-out , color 300ms ease-out ;
}

    .demo-navbar-item:hover {
        color: #00aadd;
    }



.demo-navbar-separator {
    background: rgba(0,0,0,0.2);
    min-height: 40px;
    min-width: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-navbar-login-button-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
}

#bar-modules-description {
    background-color: #aaffaa;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bar-carousel {
    max-height: 500px;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    max-height: 300px;
}

.carousel-image-holder {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nobr {
    white-space: nowrap;
}

.carousel-text-holder {
    display: flex;
    align-items: center;
    justify-content: center;

}

.carousel-separator-50 {
    background: rgba(0,0,0,0.2);
    min-height: 50px;
    max-height: 50px;
    min-width: 1px;
    max-width: 1px;
    margin: auto 10px auto 10px;
}

.carousel-separator-100 {
    background: rgba(0,0,0,0.2);
    min-height: 100px;
    max-height: 100px;
    min-width: 1px;
    max-width: 1px;
    margin: auto 10px auto 10px;
}

.carousel-separator-150 {
    background: rgba(0,0,0,0.2);
    min-height: 150px;
    max-height: 150px;
    min-width: 1px;
    max-width: 1px;
    margin: auto 10px auto 10px;
}

.carousel-separator-200 {
    background: rgba(0,0,0,0.2);
    min-height: 200px;
    max-height: 200px;
    min-width: 1px;
    max-width: 1px;
    margin: auto 10px auto 10px;
}

.demo-card-holder {
    display: grid;
    grid-template-columns: repeat(3, auto);
    align-content: stretch;
    grid-gap: 10px;
}

.demo-card {
    padding: 20px;
    margin: 20px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease-in-out;
}

    .demo-card:hover {
        transform: scale(1.02);
        cursor: pointer;
    }

.demo-card-image {
    width: 50%;
}

/*.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230ad4' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230ad4' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}*/


a:link {
    text-decoration: none;
    /*color: #0ad;*/
}

a:visited {
    text-decoration: none;
    /*color: #0ad;*/
}

a:hover {
    text-decoration: none;
    /*color: #0ad;*/
}

a:active {
    text-decoration: none;
    /*color: #0ad;*/
}


.demo-section-text-header-dark {
    color: #009de1;
}

.demo-section-text-header-light {
    color: #004e93;
}

.demo-section-button-blue {
    background-color: #009de1;
    border-color: #009de1;
}