/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }




.bold {
    font-family: 'Inter';
    font-weight: 700;
    transform: scale(1,0.94);
}


.semibold {
    font-family: 'Inter';
    font-weight: 500;
    transform: scale(1,0.94);
}


.regular {
    font-family: 'Inter';
    font-weight: 400;
    transform: scale(1,0.94);
}


.light {
    font-family: 'Inter';
    font-weight: 300;
    transform: scale(1,0.94);
}



html, body {
    font-family: 'Inter';
    background: #ffffff;
    margin: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

div {
    box-sizing: border-box;
}

a, .btn-link {
    color: #0366d6;
}


    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;
}

a.dot {
    color: #aaaaaa;
    font-size: 14px;
    margin-right: 1.8vw;
    letter-spacing: 0px;
    font-weight: 400;
    text-decoration: auto;
    transform: scale(1, 0.93);
}

table td {
    transform: scale(1, 0.93);
    font-weight:300;
}

a.dot.active {
    color: #ffffff !important;
    /*font-weight: 400 !important;*/
   /* transition-duration: 0.5s;*/
}

.navbar-container {
    display: flex;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    height: 55px;
    background: #262626;
    z-index:1000;
}

.navbar-container-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    height: 55px;
    background: #262626;
    z-index: 1000;
    border-top: 0.5px solid #444444;
}

.column1 {
    width: 15%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    /*background: #FF5A00; */
}


.column2 {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    
    
}

.column3 {
    width: 15%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    color: #dddddd; 
    margin-right: 20px;
}


.logo {
    width: 80px;
    margin-left:20px;
    /*transform: translate(-10px, 0px);*/
    /*padding-left: 20px;
    padding-top: 10px;*/
}

.page {
    width: 100%;
    
}


.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;
}


