*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}
/* HTML y BODY hacen que 10px == 1rem */
body{
    font-size: 1.6rem;
}
.container #containerForm input,
.container #containerForm select,
.container #containerForm textarea {
    font-size: 1.6rem;
    width: 100%;
}
.banner img{
    width: 100%;
}
.hidden {
    display: none;
}
.nav-link {
    padding: 1.5rem 3.2rem;
}
.nav {
    border: 2px;
    padding: 0px;
    --bs-nav-link-color: #fff;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-item .nav-link.active,
.nav-item .show>.nav-link {
    color: #fff;
    background-color: #50bded;
    border-radius: 2px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.nav-link:hover {
    background: #50bded;
    color: white;
    border-radius: 2px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.background-color {
    background-color: #001a7b;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
.nav > div {
    padding-right: 3px;
}
.refresh {
    position: fixed;
    top: 20rem;
    z-index: 100;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4.5rem; 
    color: #fff;
    background: #ebc000;
    padding: 1rem 1.5rem;
    transition: all 500ms ease;
}
.refresh:hover {
    cursor: pointer;
    padding: 1rem 3rem;
}
.rotate {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ebc000;
    width: 2rem;
    height: 2rem;
    border-radius: 1rem;
    transition: transform 500ms ease;
}
.sub-title {
    background-color: #001a7b;
    border-radius: 4.5rem;
    margin-top: 1rem;
    padding: 5px;
}
.sub-title label {
    color: white;
}
.form-floating>label {
    left: 6px;
    top: -4px;
}
.btn-primary {
    background-color: #d4d800;
    color: #FFF;
}
.btn-template {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
}
.input-group-sm>.btn, 
.input-group-sm>.form-control, 
.input-group-sm>.form-select, 
.input-group-sm>.input-group-text, 
#buttonCopy {
    font-size: 1.6rem;
}

.toast,
.toast-body,
.toast-header{
    font-size: 1.3rem;
    text-align: center;
    width: 35rem;
}
.toast-body {
    font-size: 1.5rem;
}
.action-success{
    background-color: #a3cfbb8f;
    color: #0a3622;
}
.action-notSuccess{
    background-color: #cfa3a38f;
    color: #360b0a;
}
#containerForm {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}