.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.tablinks{
    background: #fff;
    border-top: 1px solid #E9F9F6;
    border-left: 1px solid #E9F9F6;
    border-right: 1px solid #E9F9F6;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    cursor: pointer;
}

.tablinks.active{
    background: #E9F9F6;
    border-top: 1px solid #E9F9F6;
    border-left: 1px solid #E9F9F6;
    border-right: 1px solid #E9F9F6;
    border-bottom: 0;
}


.tabcontent{
display: none;
    border: 1px solid #E9F9F6;
    background-color: #E9F9F6;
    padding: 1rem;
    border-radius: 10px;
}

.tabcontent__p {
    font-size: .9rem;
    margin: .5rem 0 1rem;
}

.soatForm{
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
justify-content: center;
}

.soatForm__div {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    max-width: 380px;
}


.soatForm__div input{
width: 100%;
max-width: 200px;
border: 1px solid #64D8C2;
}

.btnSoat{
color: #fff;
    background: #085445;
    border: 1px solid #085445;
    font-size: .9rem;
    border-radius: 5px;
cursor: pointer;
}

body.modal-open {
    overflow-x: hidden;
    overflow-y: hidden;
}


.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background: rgba(0, 0, 0, .3);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.fade {
    transition: opacity 0.15s linear;
}


.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.modal-title {
    margin: 0;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 500;
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.modal-dialog.modal-dialog-centered.modal-xl {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}