html {
  font-size: 14px;
}

.dt-paging-button.active .page-link {
    background-color: #0e828e !important;
    color: white !important;
    outline: none !important;
}

.dt-paging-button .page-link {
    color: #0e828e !important;
    outline: none !important;
}

/* Center the form horizontally */
.centered-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Style your form container */
.form-container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}

div.dt-buttons.dt-button {
    min-width: 280px !important;
    width: auto !important;
    display: inline-block !important;
    margin-right: 20px !important;
    text-align: left !important;
    background-color: #0e828e !important;
    color: #fff !important;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    border: #0e828e !important;
    background: #0e828e !important;
    font-weight: bold !important;
    color: #ffffff !important;
} 

@media (max-width: 576px) {
    #myTab .nav-link {
        display: block;
        padding: 10px 0px;
        font-size: 0.8em;
        color: lightgray;
        text-decoration: none;
        border: none;
        border-radius: 0px;
    }

    .nav-text {
        font-size: 0.7em;
    }

    #myNav {
        background-color: #0e828e;
    }
    
    #myNav ul {
        justify-content: center;
    }

    #myNav li {
        margin-bottom: 0px;
    }

    #myNav li:first-child {
        padding-left: 0px;
    }

    .nav {
        list-style: none;
        padding: 0px;
        border-bottom: 0px solid #ccc;
    }

    #myTab .nav-link.active {
        color: white;
        background-color: #0e828e;
        border-bottom: solid;
        border-bottom-width: 0.4em;
    }
}

@media (min-width: 576px) {
    #myNav {
        position: static;
    }

    #myTab .nav-link {
        display: block;
        padding: 20px 40px;
        font-size: 1.2em;
        color: #0e828e;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: none;
        border-radius: 0px;
    }

    #myTab .nav-item {
        margin-bottom: 0;
    }

    .nav-item:last-child {
        margin-bottom: 0 !important;
    }

    .nav {
        list-style: none;
        padding: 0;
        border-bottom: 1px solid #ccc;
        margin-bottom: 0;
    }

    #myTab .nav-link:hover {
        background-color: #0e828e;
        color: white;
    }

    #myTab .nav-link.active {
        background-color: #F9F9F9;
        color: #0e828e;
        border-radius: 0px;
        border-bottom: none;
    }
}

html {
    position: relative;
    min-height: 100%;
    background-color: #0e828e;
}

body {
    margin-bottom: 60px;
    background-color: #F9F9F9;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.step-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.step-circle {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 50%;
    border: 3px solid #0e828e;
}


#step-circle-1 {
    background-color: white;
    border: 10px solid #0e828e;
}

.step-line {
    position: absolute;
    top: 16px;
    left: 50px;
    width: calc(100% - 100px);
    height: 2px;
    background-color: #0e828e;
    z-index: -1;
}

#multi-step-form {
    overflow-x: hidden;
}
.progress {
    height: 6px;
    position: absolute;
    /*top: 25%;*/
    /*transform: translateY(-50%);*/
    z-index: 1;
    margin-top: 21px;
    min-width: 5%
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}