.head-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.head-menu > * {
    margin-left: 10px;
}
.alert {
    position: relative;
    padding: 8px 35px 8px 14px;
    margin-bottom: 20px;
    background-color: #9d9d9c;
    border: 1px solid #010101;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.alert-danger, .alert-error {
    color: #ffffff;
    background-color: #9b9b9b;
    border-color: #010101;
}
.close {
    position: absolute;
    top: 5px;
    right: 8px;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    color: #ffffff;
    opacity: .6;
    filter: alpha(opacity = 20);
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.close:hover, .close:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity = 40);
}
.modal {
    position: fixed;
    top: 10%;
    left: 50%;
    z-index: 1050;
    width: 560px;
    margin-left: -280px;
    background-color: #ffffff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
}
.hidden,
.hide {
    display: none !important;
}
.modal.fade {
    top: -250%;
    -webkit-transition: opacity .3s linear, top .3s ease-out;
    -moz-transition: opacity .3s linear, top .3s ease-out;
    -o-transition: opacity .3s linear, top .3s ease-out;
    transition: opacity .3s linear, top .3s ease-out;
}

div#privacyNotice_message:not(.hidden) {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    padding-top: 50px;
    width: 100%;
    min-height: 100vh;
    background-color: rgb(84 84 84 / 50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
div#privacyNotice_message .privacyNotice_container {
    background: rgb(255 255 255 / 85%);
    margin: 14px 10px;
    padding: 25px 30px;
    width: 80%;
    max-width: 1150px;
    border-radius: 40px;
}
div#privacyNotice_message .msg_container {
    padding: 10px 0;
    max-height: calc(100vh - 300px);
    overflow: scroll;
}
div#privacyNotice_message .privacyNotice_footer {
    width: 100%;
    padding: 10px 0 0;
    margin-bottom: -8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
a {
    cursor: pointer;
    padding: 6px 0;
    margin: -6px;
    text-decoration: none;
    position: relative;
}
.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}
.tooltip.in{opacity:.8;filter:alpha(opacity=80)}
.tooltip.top{padding:5px 0;margin-top:-3px}
.tooltip.right{padding:0 5px;margin-left:3px}
.tooltip.bottom{padding:5px 0;margin-top:3px}
.tooltip.left{padding:0 5px;margin-left:-3px}
.tooltip-inner{max-width:200px;padding:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#010101;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}
.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}
.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#010101;border-width:5px 5px 0}
.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#010101;border-width:5px 5px 5px 0}
.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#010101;border-width:5px 0 5px 5px}
.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#010101;border-width:0 5px 5px}
div.content-body {
    width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
form.form-horizontal {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}
.justified-text {
    text-align: justify;
}
.no-margin-center {
    margin: 0 auto;
}

/** Media query para únicamente móvil */
@media only screen and (max-width: 768px) {

}

/* Media query para tablets */
@media only screen and (min-width: 768px) {
    /* Estilos específicos para tablets */
    .container {
        width: 90%;
    }
    div#privacyNotice_message .msg_container {
        margin: 0 20px;
    }
    .head-menu > * {
        margin-left: 26px;
    }
}

/* Media query para desktops pequeños */
@media only screen and (min-width: 992px) {
    /* Estilos específicos para desktops pequeños */
}

/* Media query para desktops grandes */
@media only screen and (min-width: 1200px) {
    /* Estilos específicos para desktops grandes */
}