﻿/* Setup */
@font-face {
    font-family: "Protogrotesk-regular";
    src: url(../Assets/protogrotesk-regular.otf) format('opentype');
}

@font-face {
    font-family: "Protogrotesk-light";
    src: url(../Assets/protogrotesk-light.otf) format('opentype');
}

@font-face {
    font-family: "DINPro-Bold";
    src: url(../Assets/DINPro-Bold.woff2) format('woff2');
}

@font-face {
    font-family: "DIN Pro";
    src: url(../Assets/DINPro.woff2) format('woff2');
}

@font-face {
    font-family: "DINPro-Light";
    src: url(../Assets/DINPro-Light.woff2) format('woff2');
}

html {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Protogrotesk-regular", trebuchet, sans-serif;
}

body {
    min-height: 100vh;
    min-width: 100vw;
    background-color: white;
}

#page-container {
    min-height: 100vh;
    min-width: 100vw;
    background-color: white;
    position: relative;
}

#content-wrapper {
    padding-bottom: 500px
}


/* Nav */
.navbar {
    display: flex;
    width: 100%;
    background-color: white;
    justify-content: space-between;
    align-items: center;
    padding-right: 64px;
    padding-left: 64px;
}


.logo {
    color: #000;
    font-family: "DIN Pro";
    font-size: calc(16px + 1.5625vw);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 3.6px;
    text-decoration: none;
}


@media (min-width: 353px) {
    .logo {
        letter-spacing: normal;
    }

    .navbar {
        padding-right: 24px;
        padding-left: 24px;
    }
}

.dropdown .dropbtn {
    color: black;
}

.dropbtn {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

    .dropbtn .navbar-light {
        color: black
    }

.navbar .nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
    border: none;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown-menu.show {
    width: 100%;
    border-radius: unset;
    border: none;
    box-shadow: 0px 1px 26px 1px rgba(196, 196, 196, 0.8);
}



/* Breadcrumbs */
ol.breadcrumb {
    width: 100%;
    background-color: #245ca6;
    padding: 16px;
}

li.breadcrumb-item a {
    color: black;
    text-decoration: none;
}

li.breadcrumb-item.active {
    color: black;
    text-decoration: none;
    position: relative;
}

    li.breadcrumb-item.active::after {
        content: "";
        position: absolute;
        top: 65%;
        left: 15%;
        width: 90%;
        height: 4px;
        background-color: white;
        margin-top: 8px;
    }


/* Buttons  */
.outline-secondary-botton {
    background-color: white;
    color: black;
    border: 1px solid #000;
    padding: 8px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
}


.secondary-botton {
    background-color: black;
    color: white;
    padding: 8px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: none;
}

.icon {
    margin-right: 10px;
    font-size: 18px;
}

/* Page content */

.rectangle {
    border: 1px solid #ccc;
    padding: calc(70px + 1.5625vw) 0 calc(40px + 1vw);
    position: relative;
}

.title {
    background-color: #245ca6;
    font-family: 'DIN Pro';
    text-transform: uppercase;
    color: black;
    padding: 10px;
    position: absolute;
    font-size: 0.7em;
    top: 6%;
    left: 4%;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.4px;
}

.no-fund-content-wrapper {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background-color: #F5F5F5;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.30);
    border-radius: 2%;
    padding: calc(10px + 1.5625vw) calc(8px + 1.5625vw);
    margin: auto;
}

.no-fund-content-wrapper p {
    font-family: 'DINPro-Light';
}