
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=PT+Sans:wght@400;700&display=swap");


.light {
    --mainColor: #64bcf4;
    --hoverColor: #5bacdf;
    --backgroundColor: #f1f8fc;
    --darkOne: #312f3a;
    --darkTwo: #45424b;
    --lightOne: #919191;
    --lightTwo: #aaa;
}

.dark {
    --mainColor: #64bcf4;
    --hoverColor: #5bacdf;
    --backgroundColor: #192e3a;
    --darkOne: #f3f3f3;
    --darkTwo: #fff;
    --lightOne: #ccc;
    --lightTwo: #e7e3e3;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body header {
    font-family: "Montserrat", sans-serif;
    font-weight:600;
}

body {
    font-family: "PT Sans", sans-serif;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

img {
   /* width: 100%;*/
}

a {
    text-decoration: none;
}

.big-wrapper {
    position: relative;
    padding: 1.7rem 0 2rem;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-image: url("../images/20568 RoboVent.jpg");
    background-repeat: no-repeat;
    background-size: auto; /* Add this line */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/**/
.container {
    position: relative;
    max-width: 81rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    z-index: 10;
    padding: 10px;
}

header {
    position: relative;
    z-index: 70;
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 80rem;
    }

.overlay {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .logo img {
        width: 200px;
        margin-right: 0.6rem;
        margin-top: -0.6rem;
    }

    .logo h3 {
        color: var(--darkTwo);
        font-size: 1.55rem;
        line-height: 1.2;
        font-weight: 700;
    }

.link-ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.links a {
    color: #233A75;
    margin-left: 2.5rem;
    display: inline-block;
    transition: 0.3s;
}

    .links a:hover {
        color: #233A75;
        transform: scale(1.05);
    }

.childlink a, .childlink button {
    color: var(--lightTwo);
    margin-left: 0rem;
    display: inline-block;
    transition: none;
}

    .childlink a:hover, .childlink button:hover {
        color: var(--hoverColor);
        transform: none;
    }

/*.btn {
    display: inline-block;
    padding: 0.9rem 1.9rem;
    color: #fff !important;
    background-color: var(--mainColor);
    border-radius: 16px;
    text-transform: capitalize;
    transition: 0.3s;
}

    .btn:hover {
        background-color: var(--hoverColor);
        transform: scale(1) !important;
    }*/

.hamburger-menu {
    position: relative;
    z-index: 99;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}

    .hamburger-menu .bar {
        position: relative;
        width: 100%;
        height: 3px;
        background-color: var(--darkTwo);
        border-radius: 3px;
        transition: 0.5s;
    }

.bar::before,
.bar::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--darkTwo);
    border-radius: 3px;
    transition: 0.5s;
}

.bar::before {
    transform: translateY(-8px);
}

.bar::after {
    transform: translateY(8px);
}

.big-wrapper.active .hamburger-menu .bar {
    background-color: transparent;
}

.big-wrapper.active .bar::before {
    transform: translateY(0) rotate(-45deg);
}

.big-wrapper.active .bar::after {
    transform: translateY(0) rotate(45deg);
}

/*.showcase-area .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}*/

.big-title {
    font-size: 1.4rem;
    color: var(--darkOne);
    text-transform: capitalize;
    line-height: 1.4;
}

.text {
    color: var(--lightOne);
    font-size: 1.1rem;
    margin: 1.9rem 0 2.5rem;
    max-width: 600px;
    line-height: 2.3;
}

/*.showcase-area .btn {
    box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.05);
}*/

.person {
    width: 123%;
    transform: translate(15%, 25px);
}

.toggle-btn {
    display: inline-block;
    border: none;
    background: var(--darkTwo);
    color: var(--backgroundColor);
    outline: none;
    cursor: pointer;
    height: 39px;
    width: 39px;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: 0.3s;
}

    .toggle-btn i {
        line-height: 39px;
    }

    .toggle-btn:hover {
        background: var(--mainColor);
    }

.big-wrapper.light .toggle-btn i:last-child {
    display: none;
}

.big-wrapper.light .toggle-btn i:first-child {
    display: block;
}

.big-wrapper.dark .toggle-btn i:last-child {
    display: block;
}

.big-wrapper.dark .toggle-btn i:first-child {
    display: none;
}

.shape {
    position: absolute;
    z-index: 0;
    width: 500px;
    bottom: -180px;
    left: -15px;
    opacity: 0.1;
}

.copy {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    animation: appear 1s 1 both;
}

@keyframes appear {
    0% {
        clip-path: circle(30% at -25% -25%);
    }

    100% {
        clip-path: circle(150% at 0 0);
    }
}

@media screen and (max-width: 870px) {
    .hamburger-menu {
        display: flex;
    }

    .links {
        position: fixed;
        top: 0;
        right: 0;
        max-width: 450px;
        width: 100%;
        height: 100%;
        background-color: var(--mainColor);
        z-index: 95;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: 0.5s;
    }

        .links ul {
            flex-direction: column;
        }

        .links a {
            color: #fff;
            margin-left: 0;
            /*padding: 2rem 0;*/
            padding: 10px 15px;
            /*text-align: center;*/
        }

        .links .btn {
            background: none;
        }

    .overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 0;
        pointer-events: none;
        transition: 0.5s;
    }

    .big-wrapper.active .links {
        transform: translateX(0);
        box-shadow: 0 0 50px 2px rgba(0, 0, 0, 0.4);
    }

    .big-wrapper.active .overlay {
        pointer-events: all;
        opacity: 1;
    }

    .showcase-area {
        padding: 2.5rem 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* .showcase-area .container {
            grid-template-columns: 1fr;
            justify-content: center;
            grid-gap: 2rem;
        }*/

    .big-title {
        font-size: 1.1rem;
    }

    .text {
        font-size: 0.95rem;
        margin: 1.4rem 0 1.5rem;
    }

    .person {
        width: 100%;
        transform: none;
    }

    .logo h3 {
        font-size: 1.25rem;
    }

    .shape {
        bottom: -180px;
        left: -150px;
    }

    #map {
        height: 330px;
    }

    .childlink a, .childlink button {
        color: #aaa;
    }
}

@media screen and (max-width: 470px) {
    .container {
        padding: 0 1.5rem;
    }

    .big-title {
        font-size: 0.9rem;
    }

    .text {
        margin: 1.1rem 0 1.5rem;
    }

    .showcase-area .btn {
        font-size: 0.8rem;
    }

    #map {
        height: 180px;
    }

    .childlink a, .childlink button {
        color: #aaa;
    }
}



/*Tab CSS*/
@import "https://fonts.googleapis.com/css?family=Montserrat:400,700|Raleway:300,400";
/* colors */
/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */
/*html {
    width: 100%;
    height: 100%;
}

body {
    background: #efefef;
    color: #333;
    font-family: "Raleway";
    height: 100%;
}

    body h1 {
        text-align: center;
        color: #428bff;
        font-weight: 300;
        padding: 40px 0 20px 0;
        margin: 0;
    }*/

.tabs {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    background: white;
    padding: 50px;
    padding-bottom: 80px;
    width: 95%;
    height: 600px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
    border-radius: 5px;
    min-width: 240px;
    font-size: 13px;
}

    .tabs input[name=tab-control] {
        display: none;
    }

    .tabs .content section h2,
    .tabs ul li label {
        font-family: "PT Sans";
        font-weight: 700;
        font-size: 13px;
        color: #428bff;
    }

    .tabs ul {
        list-style-type: none;
        padding-left: 0;
        display: flex;
        flex-direction: row;
        margin-bottom: 10px;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
    }

        .tabs ul li {
            box-sizing: border-box;
            flex: 1;
            width: 25%;
            padding: 0 10px;
            text-align: center;
        }

            .tabs ul li label {
                transition: all 0.3s ease-in-out;
                color: #929daf;
                padding: 5px auto;
                overflow: hidden;
                text-overflow: ellipsis;
                display: block;
                
                transition: all 0.2s ease-in-out;
                white-space: nowrap;
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }

                .tabs ul li label br {
                    display: none;
                }

                .tabs ul li label svg {
                    fill: #929daf;
                    height: 1.2em;
                    vertical-align: bottom;
                    margin-right: 0.2em;
                    transition: all 0.2s ease-in-out;
                }

                .tabs ul li label:hover, .tabs ul li label:focus, .tabs ul li label:active {
                    outline: 0;
                    color: #bec5cf;
                }

                    .tabs ul li label:hover svg, .tabs ul li label:focus svg, .tabs ul li label:active svg {
                        fill: #bec5cf;
                    }

    .tabs .slider {
        position: relative;
        width: 14.28%;
        transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
    }

        .tabs .slider .indicator {
            position: relative;
            width: 50px;
            max-width: 100%;
            margin: 0 auto;
            height: 4px;
            background: #428bff;
            border-radius: 1px;
        }

    .tabs .content {
        margin-top: 30px;
    }

        .tabs .content section {
            display: none;
            -webkit-animation-name: content;
            animation-name: content;
            -webkit-animation-direction: normal;
            animation-direction: normal;
            -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
            -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
            line-height: 1.4;
        }

            .tabs .content section h2 {
                color: #428bff;
                display: none;
            }

                .tabs .content section h2::after {
                    content: "";
                    position: relative;
                    display: block;
                    width: 30px;
                    height: 3px;
                    background: #428bff;
                    margin-top: 5px;
                    left: 1px;
                }

    .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
        cursor: default;
        color: #428bff;
    }

        .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label svg {
            fill: #428bff;
        }

@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name=tab-control]:nth-of-type(1):checked ~ .slider {
    transform: translateX(0%);
}

.tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    cursor: default;
    color: #428bff;
}

    .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label svg {
        fill: #428bff;
    }

@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name=tab-control]:nth-of-type(2):checked ~ .slider {
    transform: translateX(100%);
}

.tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    cursor: default;
    color: #428bff;
}

    .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label svg {
        fill: #428bff;
    }

@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name=tab-control]:nth-of-type(3):checked ~ .slider {
    transform: translateX(200%);
}

.tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    cursor: default;
    color: #428bff;
}

    .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label svg {
        fill: #428bff;
    }

@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name=tab-control]:nth-of-type(4):checked ~ .slider {
    transform: translateX(300%);
}

.tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label {
    cursor: default;
    color: #428bff;
}

    .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label svg {
        fill: #428bff;
    }

@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(5):checked ~ ul > li:nth-child(5) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name=tab-control]:nth-of-type(5):checked ~ .slider {
    transform: translateX(400%);
}

.tabs input[name=tab-control]:nth-of-type(5):checked ~ .content > section:nth-child(5) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label {
    cursor: default;
    color: #428bff;
}

    .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label svg {
        fill: #428bff;
    }

@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(6):checked ~ ul > li:nth-child(6) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name=tab-control]:nth-of-type(6):checked ~ .slider {
    transform: translateX(500%);
}

.tabs input[name=tab-control]:nth-of-type(6):checked ~ .content > section:nth-child(6) {
    display: block;
}


.tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label {
    cursor: default;
    color: #428bff;
}

    .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label svg {
        fill: #428bff;
    }

@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(7):checked ~ ul > li:nth-child(7) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name=tab-control]:nth-of-type(7):checked ~ .slider {
    transform: translateX(600%);
}

.tabs input[name=tab-control]:nth-of-type(7):checked ~ .content > section:nth-child(7) {
    display: block;
}

@-webkit-keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@media (max-width: 1000px) {
    .tabs ul li label {
        white-space: initial;
    }

        .tabs ul li label br {
            display: initial;
        }

        .tabs ul li label svg {
            height: 1.5em;
        }
}

@media (max-width: 600px) {
    .tabs ul li label {
        padding: 5px;
        border-radius: 5px;
    }

        .tabs ul li label span {
            display: none;
        }

    .tabs .slider {
        display: none;
    }

    .tabs .content {
        margin-top: 20px;
    }

        .tabs .content section h2 {
            display: block;
        }
}


.custombtn {
    padding: 5px;
    border-radius: 0px;
}

.form-control {
    font-size: 13px;
}

.userAdd {
    font-size: 30px;
    color: #001c40;
    margin-right: 10px;
}

.userRight {
    display: flex;
    width:100%;
}

.nav-profile-icon {
    width: 40px;
    height: 40px;
    display: flex !important;
    margin-left: 1rem !important;
    align-items: center;
    justify-content: center;
    border: 2px solid #233A75; /* Circle border color */
    border-radius: 50%;
    /* color: #000000;  Text color */
    text-decoration: none;
    font-weight: bold; /* Make the text bold */
    background-color: #ffffff; /* Circle background color */

    margin-left: 0rem;
    transition: 0.3s;
}

    .nav-profile-icon span {
        line-height: 40px;
    }

.badge {
    background-color: #C41230;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 0.75em;
    position: relative;
    top: -10px;
    left: -5px;
}

.dropdown-item:not(:nth-last-child()) {
    border-bottom: 1px solid #efefef;
}

.dropdown-menu {
    padding-top: 0px;
    padding-bottom: 0px;
}

/*.childlink a:hover, .links a:hover, .childlink button:hover, .links button:hover {
    transform: none;
}*/

@media (min-width: 320px) and (max-width: 480px) {
    #map {
        height: 145px;
    }
    section .minheight, section .summaryminheight {
        min-height: 255px;
        width: 100%;
    }
    .item {
        width: 25%;
    }
    .hoodtable {
        max-height: 150px;
    }

    .collectorstable, .duckworktable, .sparktable {
        max-height: 200px;
    }

}

@media (min-width: 481px) and (max-width: 768px) {
    #map {
        height: 270px;
    }
    section .minheight, section .summaryminheight {
        min-height: 355px;
        width: 100%;
    }
    .item {
        width: 47%;
    }
    .hoodtable {
        max-height: 185px;
    }
    .collectorstable, .duckworktable, .sparktable {
        max-height: 250px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #map {
        height: 295px;
    }
    section .minheight, section .summaryminheight {
        min-height: 355px;
        width: 100%;
    }
    .item {
        width: 48%;
    }
    .hoodtable {
        max-height: 205px;
    }

    .collectorstable, .duckworktable, .sparktable {
        max-height: 270px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    #map {
        height: 350px;
    }
    section .minheight {
        min-height: 395px;
        width: 100%;
    }
    section .summaryminheight {
        min-height: 420px;
        width: 100%;
    }
    .item{
        width:49%;
    }
    .hoodtable {
        max-height: 265px;
    }

    .collectorstable, .duckworktable, .sparktable {
        max-height: 320px;
    }

}

@media (min-width: 1201px) {
    #map {
        height: 350px;
    }
    section .minheight {
        min-height: 395px;
        width: 100%;
    }
    section .summaryminheight {
        min-height: 420px;
        width: 100%;
    }

    .item {
        width: 49%;
    }
    .hoodtable {
        max-height: 265px;
    }
    .collectorstable, .duckworktable, .sparktable {
        max-height: 320px;
    }
}

.btn{
    line-height:1.25;
}

.btn-primary, .btn-primary:active, .btn-primary:hover {
    background-color: #233A75;
    border-color: #233A75;
    color: #fff !important;
}

.formtitle {
    color: #233A75;
    font-size:22px;
}
.form-label{
    font-size:15px;
}
.form-select{
    font-size:13px;
}
.btn-cancel, .btn-cancel:active, .btn-cancel:hover {
    background-color: #C41230;
    border-color: #C41230;
}

/*navigation css*/

section .minheight, section .summaryminheight {
    /* min-height: 380px;*/
    width: 100%;
    float: left;
    clear: both;
}

section .container .custom-input{
    height:45px;
}

.btn-success, .btn-success:hover {
    color: #fff;
    background-color: #233A75;
    border-color: #233A75;
}

.showcase-area .card {
   box-shadow:2px 3px 10px #233A75
}

.fa-chevron-circle-left, .fa-chevron-circle-right {
    color: #233A75 !important;
}

.btn-label-left, .btn-label-right {
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0,0,0,0.15);
    border-radius: 3px 0 0 3px;
}
.btn-label-right {
    left: 12px;
}
.btn-label-left {
    left: -12px;
}
.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
}

.btn {
    margin-bottom: 10px;
}
.btn-primary-np, .btn-primary-np:hover {
    background-color: #445a94;
    border-color: #445a94;
    color: #fff;
    font-size: inherit;
}

/*summary */
.custom-input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease;
}

    .custom-input:focus {
        border-color: #007bff;
        outline: none;
    }

.item {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0px 1px 2px #233A75;
    display: inline-block;
   /* width: 49%;*/
    float: left;
    vertical-align: top;
    box-sizing: border-box;
    position: relative;
    float: left;
}

    .item h3 {
        margin: 0;
        font-size: 18px;
    }

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-label {
    font-weight: bold;
    margin-right: 10px;
}

.modify-link {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
}

.summary {
   /* margin-top: 10px;*/
    border-top: 1px solid #ccc;
    padding-top: 5px;
    text-align: right;
    float: left
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.total {
    font-weight: bold;
    font-size: 18px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

    .header label {
        margin-right: 10px;
    }


/* Projrct Tab CSS*/
.containerA {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container {
    width: 500px;
    padding: 0px 30px 30px;
    /*  background-color: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
}

    .form-container h1 {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        color: #666;
    }

    .form-group input[type="text"],
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 4px;
        background-color: #f9f9f9;
        box-shadow: inset 0 0 0 1px #ccc;
    }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

.btn-start {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #233A75;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-start:hover {
        background-color: #1c5ea5;
    }

.spinner {
    position: absolute;
    z-index: 9999;
    width: 100px;
    height: 100px;
    display: grid;
    border: 4.5px solid #0000;
    border-radius: 50%;
    border-right-color: #005696;
    animation: spinner-a4dj62 1s infinite linear;
    top: 40%;
    left: 45%;
}

    .spinner::before,
    .spinner::after {
        content: "";
        grid-area: 1/1;
        margin: 2.2px;
        border: inherit;
        border-radius: 50%;
        animation: spinner-a4dj62 2s infinite;
    }

    .spinner::after {
        margin: 8.9px;
        animation-duration: 3s;
    }

@keyframes spinner-a4dj62 {
    100% {
        transform: rotate(1turn);
    }
}

#roboventToast {
    position: absolute;
    left: 0;
    bottom: 1%;
    z-index: 9999 !important;
}

.toast-header {
    display: flex;
    justify-content: space-between;
}

.tabtable {
    overflow-y: auto;
}