@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap');
* {
    box-sizing: border-box;
    /* padding: 1px; */
    font-size: 14px;
}

.block-container {
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background-color: white;
    padding: 10px;
    max-width: 100%;
}

.title-background {
    width: auto;
    height: auto;
    background: #003399;
}

.title-sub {
    color: white;
    text-align: start;
    padding-left: 5px;
    font-size: 14px;
    padding-right: 5px;
    padding-bottom: 5px;
}

.text-bold {
    font-weight: bold;
}

.button {
    /* border: 2px solid #f7f7f7; */
    border: 2px solid #003399;
    background-color: white;
    /* text-transform: uppercase; */
    position: relative;
    transition: 0.3s;
    text-align: center;
    display: block;
    width: auto;
    height: auto;
    border-radius: 10px;
    margin-top: 10px;
    /* border: 2px solid #73AD21; */
}

.button:after {
    position: absolute;
    transition: 0.3s;
    content: "";
    width: 0;
    left: 50%;
    bottom: 0;
    height: 2px;
    background: #003399;
}

.button:hover {
    box-shadow: inset 0px 0px 0px 2px #003399;
}

.button:hover:after {
    width: 0%;
}

.paragraph {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.proceed-button {
    background-color: #003399;
    color: #fff;
    display: block;
    border-radius: 4px;
    border: 1px solid;
    width: 100%;
    margin-top: 10px;
}

.title {
    text-align: center;
}

.word-left {
    text-align: left;
}

.word-center {
    text-align: center;
}

.word-right {
    text-align: right;
}

.form-floating>.form-select {
    padding-top: 1.625rem;
    padding-bottom: .300rem;
}

.topmenu a {
    text-decoration: none !important;
    box-sizing: unset !important;
    padding: 0px !important;
    font-family: Arial, Helvetica !important;
    font-size: 9pt !important;
    color: white !important;
}

.topmenu a:hover {
    color: yellow !important;
}

.topmenu table {
    padding: 0px;
}

.body-content-general {
    padding-top: 15px;
    padding-bottom: 15px;
}

.tab {
    overflow: hidden;
    border: 1px solid #ccc;
   /*  background-color: #f1f1f1; */
}

.tab button {
    /* background-color: inherit; */
    float: left;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
    margin-right: 20px;
    border: 1px;
}

.tab button.active {
    background-color: #003399;
    font-weight: bold;
    font-color: white;
    color: #fff;
}
/* Style for the accordion rows */
 .table-accordion-row {
   cursor: pointer;
   background-color: #ddd;
 }

 /* Style for the content within the accordion rows */
 .table-accordion-content {
   display: none;
   padding: 10px;
   background-color: #f1f1f1;
 }
