.header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0 50px;
}

.header div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lang-switch {
    width: 120px;
}

.lang-switch a {
    color: gray;
}

.logo {
    max-height: 70px;
    margin-top: 20px;
}

.back-button {
    font-weight: bold;
    color: black !important;
}

.copyright > p {
    color: gray;
}

.copyright > p > a {
    color: gray;
}

.separator {
    border-left: 1px solid gray;
    margin: 10px;
}

.separator:last-child {
    display: none;
}

.link {
    color: white;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}

img.link:hover {
    transition: opacity ease-out  0.5s;
    opacity: 0.5;
}

h5, strong {
    font-weight: bold;
}

p {
    font-weight: 300;
}

.radio-cont {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.toast {
    word-break: initial !important;
}

.toast .toast-action {
    margin-left: 0;
}

#toast-container {
    top: auto !important;
    bottom: 5%;
}

.text-justify {
    text-align: justify;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

@media only screen and (max-width : 600px) { 
    #toast-container {
        bottom: 0%;
    }
}

/* Formularios */

.active {
    color: rgb(36, 63, 150);    
}

/*rgb(36, 63, 150)*/
/* label focus color */
.input-field input[type=text]:focus + label,
.input-field input[type=tel]:focus + label,
.input-field input[type=email]:focus + label, 
.input-field input[type=search]:focus + label {
color: rgb(36, 63, 150) !important;
}
/* label underline focus color */
.input-field input[type=text]:focus,
.input-field input[type=tel]:focus,
.input-field input[type=email]:focus,
.input-field input[type=search]:focus {
border-bottom: 1px solid rgb(36, 63, 150) !important;
box-shadow: 0 1px 0 0 rgb(36, 63, 150) !important;
}


/* icon prefix focus color */
.input-field .prefix.active {
color: rgb(36, 63, 150) !important;
}