/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #ffffff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #eeeeee;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #dddddd;
    }




.bold {
    font-family: 'Inter';
    font-weight: 700;
    transform: scale(1,0.94);
}

.semibold {
    font-family: 'Inter';
    font-weight: 500;
    transform: scale(1,0.94);
}

.medium {
    font-family: 'Inter';
    font-weight: 400;
    transform: scale(1,0.94);
}

.regular {
    font-family: 'Inter';
    font-weight: 300;
    transform: scale(1,0.94);
}


.light {
    font-family: 'Inter';
    font-weight: 300;
}


html, body {
    font-family: 'Inter';
    font-weight: 300;
    background: #ffffff;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    font-size: 16px;
    color: #333333;
}

div {
    box-sizing: border-box;
}

a, .btn-link {
    color: #0066cc;
    text-decoration: none;
}


    a.social-link {
        color: #dddddd;
        text-decoration: none;
    }

    a.social-link:hover {
        color: #ffffff;
    }


summary {
    color: #ffffff;
    font-family: 'Inter';
    font-size: 20px;
    padding: 5px 0px;
}



.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }



.navlink {
    display: none;
}

.navlink.active {
    display: block;    
}




.dots-top {
    opacity: 1;
    margin-top: 0px;
    /*transition: 1s;*/
    /*margin-left: 10%;*/
    width: 75%;
}

a.dot {
    color: #aaaaaa;
    font-size: 15px;
    margin-right: 50px;
    letter-spacing: 0px;
    font-weight: 400;
    text-decoration: auto;
    transform: scale(1, 0.94);
    display: inline-block;
}

    a.dot.active {
        color: #1d1d1f !important;
        /*color: #0366d6 !important;*/
        /*font-weight: 400 !important;*/
        /* transition-duration: 0.5s;*/
    }

a.dot2 {
    color: #0366d6;
    font-size: 15px;
    margin-right: 50px;
    letter-spacing: 0px;
    font-weight: 400;
    text-decoration: auto;
    transform: scale(1, 0.94);
}

a.dot2.active {
    color: #333333 !important;
    /*font-weight: 400 !important;*/
    /* transition-duration: 0.5s;*/
}


.body-container {
    /*position: absolute;
    left: 15%;
    top: 55px;
    width: 85%;
    height: calc(100vh - 55px);*/
    /*overflow-y:scroll;
    overflow-x:hidden;*/
}

.navbar-container {
    display: flex;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    height: 55px;
    background: #fafafa;
    z-index:1000;
}

.navbar-container-2 {
    /*position: absolute;
    top: 55px;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    height: calc(100vh - 55px);
    background: #fafafa;
    z-index: 1000;
    /*border-top: 0.5px solid #cccccc;*/
}

.navbar-container-3 {
    position: absolute;
    top: 55px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0px;
    padding-right: 0px;
    width: 15%;
    height: calc(100vh - 55px);
    /*background: #fafafa;*/
    z-index: 1000;
    /*border-top: 0.5px solid #cccccc;*/
}


.column1 {
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /*border-bottom: 1px solid #eeeeee;*/
}


.column2 {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    /*border-bottom: 1px solid #eeeeee;*/
}

.column3 {
    width: 15%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #dddddd; 
    margin-right: 20px;
}


.logo {
    width: 80%;
    /*padding-left: 20px;*/
    /*padding-top: 10px;*/
}

.logo-line {
    width: 90px;
}

.page {
    width: 100%;
    padding: 5% 20% 5% 20%; 
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}


