/* Fuentes */
@font-face {
    font-family: 'dosa_light';
    src: url('futura_l.ttf');
}

@font-face {
    font-family: 'dosa_regular';
    src: url('futura.ttf');
    color: rgb(249, 228, 126)
}

/* OBJETOS */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 12px;
    letter-spacing: 0.2px;
    color: #000;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    /*margin-left: -490px;
    left:50%;
    position: absolute;*/
}

.general_text {
    font-family: 'Helvetica Neue', Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 10px;
    letter-spacing: 0px;
    display: inline-block;
    margin-left: 10px;
    line-height: 10px;
}

a {
    color: inherit;
    text-decoration: inherit;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

p {
    padding: 4px;
    text-align: justify;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 35rem;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* CABECERA */

.header {
    padding-bottom: 20px;
    padding-top: 26px;
    height: 24px;
    border-bottom: 1px solid #000;
    width: 1150px;
    text-align: left;
    background-color: #fff;
    visibility: hidden;
}

.logo {
    font-family: 'dosa_regular', Arial, "Lucida Grande", sans-serif;
    font-size: 20px;
    letter-spacing: 8px;
    cursor: pointer;
    text-decoration: none !important;

    -webkit-transition: -webkit-transform .1s ease;
    -moz-transition: -moz-transform .1s ease;
    -o-transition: -o-transform .1s ease;
    -ms-transition: -ms-transform .1s ease;
    transition: transform .1s ease;

    transform: scale(0.9);
}


.logo_category {
    font-family: 'dosa_light', Arial, "Lucida Grande", sans-serif;
    font-size: 20px;
    letter-spacing: 6px;
    cursor: pointer;
    text-decoration: none !important;
    visibility: hidden;
    margin-left: -10px;
    -webkit-transition: margin .1s ease-out, opacity .1s ease-out;
    -moz-transition: margin .1s ease-out, opacity .1s ease-out;
    -o-transition: margin .1s ease-out, opacity .1s ease-out;
    -ms-transition: margin .1s ease-out, opacity .1s ease-out;
    transition: margin .1s ease-out, opacity .1s ease-out;
    opacity: 0;
}

.title_font {
    font-family: 'dosa_light', Arial, "Lucida Grande", sans-serif;
}

.logo_category_animated {
    opacity: 1;
    margin-left: 0px;
}

.logo_category:before {
    content: url('category.svg');
    width: 26px;
    height: 16px;
}

.login_state {
    float: right;
    text-align: right;
    margin-top: 18px;
}

/* TABLAS */
table {
    font-size: 13px;
    display: inline-block;
    vertical-align: top;
}

th {
    text-align: center;
    border-bottom: 1px solid #00000075;
    background-color: transparent;
}

table tr:nth-child(odd) td {
    background-color: #E3E5E8;
}

table tr:nth-child(even) td {
    background-color: #ffffff;
}

.clear_table tr:nth-child(odd) td {
    background-color: inherit;
}

.clear_table tr:nth-child(even) td {
    background-color: inherit;
}

.micro_text {
    font-weight: normal;
    font-size: 10px;
}

.a_tables {
    text-decoration: none;
}

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

/* CUERPO */
.body_div_small {
    margin-top: 10px;
    width: 1150px;
}

.body_div {
    margin-top: 40px;
    width: 1200px;
}

.subtitle {
    font-family: 'dosa_light', Arial, "Lucida Grande", sans-serif;
    font-size: 20px;
    letter-spacing: 6px;
    margin-top: 30px;
}

.lateral_panel {
    margin-left: 20px;
    width: 332px;
    display: inline-block;
    vertical-align: top;
}

.lateral_panel_header {
    padding: 4px;
    border-bottom: 1px solid #00000075;
    font-weight: bold;
    font-size: 13px;
}

.main_panel {
    width: 800px;
    display: inline-block;
    vertical-align: top;
}

.hr {
    height: 1px;
    margin-bottom: 14px;
    margin-top: 14px;
    width: 100%;
    border-bottom: 1px solid #00000075;
}


/* STAGES */

.stage {
    display: inline-block;
    text-align: left;
    font-weight: bold;
    padding: 10px;
    padding-top: 4px;
    margin-top: 4px;

    -webkit-transition: background .2s ease, opacity .2s ease;
    -moz-transition: background .2s ease, opacity .2s ease;
    -o-transition: background .2s ease, opacity .2s ease;
    -ms-transition: background .2s ease, opacity .2s ease;
    transition: background .2s ease, opacity .2s ease;
}

.stage_clustered {
    width: 100%;
    box-sizing: border-box;
}

.stage_short {
    background: url("./stages/line_short.svg") no-repeat;
}

.stage_long {
    background: url("./stages/line_long.svg") no-repeat;
}

.stage_short_black {
    background: url("./stages/line_short_black.svg") no-repeat;
}

.stage_long_black {
    background: url("./stages/line_long_black.svg") no-repeat;
}

.stage_disabled {
    opacity: 0.4;
}


.stage:hover {
    background: #E3E5E8;
    opacity: 1;
}

.line_edge_1 {
    background: url("./stages/line_edge_1.svg") no-repeat;
}

.line_edge_2 {
    background: url("./stages/line_edge_2.svg") no-repeat;
}

.line_edge_3 {
    background: url("./stages/line_edge_3.svg") no-repeat;
}

.line_edge_1_black {
    background: url("./stages/line_edge_1_black.svg") no-repeat;
}

.line_edge_2_black {
    background: url("./stages/line_edge_2_black.svg") no-repeat;
}

.line_edge_3_black {
    background: url("./stages/line_edge_3_black.svg") no-repeat;
}

.r_line_edge_1 {
    background: url("./stages/r_line_edge_1.svg") no-repeat;
}

.r_line_edge_2 {
    background: url("./stages/r_line_edge_2.svg") no-repeat;
}

.r_line_edge_3 {
    background: url("./stages/r_line_edge_3.svg") no-repeat;
}

.line_edge {
    width: 68px;
}

.cluster_disabled {
    opacity: 0.4;
}

/* LINK IMAGE & VIDEO */

.img_link_cont {
    -webkit-transition: background .2s ease;
    -moz-transition: background .2s ease;
    -o-transition: background .2s ease;
    -ms-transition: background .2s ease;
    transition: background .2s ease;
    width: 332px;
    height: 76px;
}

.img_link_cont:hover {
    background-color: #E3E5E8;
}

.img_link_text {
    float: right;
    text-align: left;
    font-weight: bold;
    padding-left: 6px;
    padding-top: 8px;
    width: 206px;
    height: 48px;
}

.img_link_text_light {
    font-weight: normal;
}

.img_link_img {
    float: left;
    width: 120px;
    height: 76px;
}

.w3-panel {
    padding: 0.01em 16px
}

.w3-panel {
    margin-top: 16px;
    margin-bottom: 16px
}

.w3-panel:after, .w3-panel:before {
    content: "";
    display: table;
    clear: both;
}

.w3-card, .w3-card-2 {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
}

.w3-yellow, .w3-hover-yellow:hover {
    color: #000 !important;
    background-color: #ffeb3b !important
}


/* BOTONES */


.big_button {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    padding-top: 4px;
    margin-top: 4px;

    -webkit-transition: background .2s ease, -webkit-transform .1s ease;
    -moz-transition: background .2s ease, -moz-transform .1s ease;
    -o-transition: background .2s ease, -o-transform .1s ease;
    -ms-transition: background .2s ease, -ms-transform .1s ease;
    transition: background .2s ease, transform .1s ease;
}

.big_button:hover, .img_link_cont:hover {
    background-color: #E3E5E8;
}

.big_button:active, .next_button:active, .logo:active {
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}

.big_button_sub {
    font-weight: normal;
    font-size: 10px;
}

.big_button_a {
    display: inline-block;
    vertical-align: top;
}

.big_button_a_clustered {
    width: 100%;
}

.bb_fixed {
    width: 102px;
    padding: 4px;
    padding-bottom: 10px;
}

.next_button {
    outline: 0;

    background-color: transparent;
    border: 0;
    /*border:1px solid #fff;*/
    text-decoration: none !important;
    display: inline-block;
    font-weight: bold;
    padding: 6px;
    -webkit-transition: background .2s ease, -webkit-transform .1s ease;
    -moz-transition: background .2s ease, -moz-transform .1s ease;
    -o-transition: background .2s ease, -o-transform .1s ease;
    -ms-transition: background .2s ease, -ms-transform .1s ease;
    transition: background .2s ease, transform .1s ease;
    cursor: pointer;

}

.nb_margins {
    margin: 0;
    margin-top: 4px;

}

.next_button:hover, .calendar_button:hover {
    background-color: #ddd;
}

.red {
    color: #C82505;
}

.green {
    color: #00882B;
}

.red_border {
    border: 1px solid #C82505 !important;
}

.yellow {
    color: #F5D328;
}

/* INPUTS */


input[type=text], input[type=password], textarea, .rich_textarea {
    outline: 0;
    display: inline-block;
    height: 28px;
    width: 200px;

    margin: 4px;
    margin-right: 0;
    padding: 1px;
    padding-left: 6px;

    -webkit-transition: border .2s ease;
    -moz-transition: border .2s ease;
    -o-transition: border .2s ease;
    -ms-transition: border .2s ease;
    transition: border .2s ease;

    background-color: #E3E5E8;
    border: 1px solid #fff;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus, .rich_textarea:focus {
    border: 1px solid #000;
}

textarea {
    height: 40px;
    min-height: 40px;

}

select {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    display: inline-block;
    height: 28px;

    margin: 4px;
    margin-right: 0;
    padding: 1px;
    padding-left: 6px;

    -webkit-transition: border .2s ease;
    -moz-transition: border .2s ease;
    -o-transition: border .2s ease;
    -ms-transition: border .2s ease;
    transition: border .2s ease;

    border: 1px solid #fff;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;

    padding-right: 24px;

    cursor: pointer;
    background: #E3E5E8 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><polyline points='6 9 12 15 18 9' fill='none' stroke='black' stroke-width='1' stroke-linecap='square'/></svg>") no-repeat right;


}

select:focus {
    border: 1px solid #000;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label {
    display: inherit;
    background-color: #ccc;
    border-radius: 3px;
    padding: 3px 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    margin-right: 4px;
    margin-bottom: 4px;
}

input[type="checkbox"]:checked + label {
    background-color: transparent !important;
}

td label {
    display: block;
}

.input_button {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    display: inline-block;
    height: 28px;

    margin: 4px;
    margin-right: 0;
    padding: 1px 6px;

    -webkit-transition: border .2s ease;
    -moz-transition: border .2s ease;
    -o-transition: border .2s ease;
    -ms-transition: border .2s ease;
    transition: border .2s ease;

    border: 1px solid #fff;
    border-radius: 4px;
    font-family: inherit;
    font-size: inherit;

    cursor: pointer;
    background: #E3E5E8;
    min-width: 28px;
}

/* MULTIPLE INPUT */

.go_background_criteria {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    -webkit-transition: background .4s ease-in-out;
    -moz-transition: background .4s ease-in-out;
    -o-transition: background .4s ease-in-out;
    -ms-transition: background .4s ease-in-out;
    transition: background .4s ease-in-out;
    z-index: 6;
}

.go_background_criteria_white {
    background-color: rgba(255, 255, 255, .8);
}

.multiple_criteria {
    margin-right: 4px;
    margin-top: 4px;
    padding: 6px;
    float: left;
    background-color: #E3E5E8;
    /*height: 15px;*/
}

.multiple_criteria_delete {
    margin-left: 6px;
    display: inline-block;
    cursor: pointer;
    width: 10px;
    height: 10px;
    background: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" width="10" height="10" viewBox="0, 0, 10, 10"><g id="Capa_1"><path d="M1.5,1.5 L9.5,9.5" fill-opacity="0" stroke="#000000" stroke-width="1"/><path d="M1.5,9.5 L9.5,1.5" fill-opacity="0" stroke="#000000" stroke-width="1"/></g></svg>');
}

.multiple_criteria_frame {
    position: absolute;
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.3);

    -webkit-transition: -webkit-transform, opacity .2s ease-in-out;
    -moz-transition: -moz-transform .2s ease-in-out, opacity .2s ease-in-out;
    -o-transition: -o-transform .2s ease-in-out, opacity .2s ease-in-out;
    -ms-transition: -ms-transform .2s ease-in-out, opacity .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;

    -webkit-transform: scaleY(0.2);
    -moz-transform: scaleY(0.2);
    -o-transform: scaleY(0.2);
    -ms-transform: scaleY(0.2);
    transform: scaleY(0.2);

    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -o-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;

    width: 200px;
    height: auto;
    visibility: hidden;

    opacity: 0;
    z-index: 7;
}

.mc_frame_off {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -o-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
}

.mc_search_results {
    max-height: 190px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.mc_selected_row {
    background-color: #E3E5E8;
}

/* IMÁGENES */

.small_cicle_pre_photo {
    font-family: 'dosa_light', Arial, "Lucida Grande", sans-serif;
    font-size: 16px;
    line-height: 34px;

    border-radius: 15px;
    background-color: #444;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
}

.cicle_photo {
    margin-top: -70px;
    border-radius: 30px;
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-bottom: -22px;
    margin-right: 14px;
}

/*LOGIN*/

.login_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    visibility: hidden;
    z-index: 9;
}

.header_vertical {
    height: 60px;
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-right: 1px solid #000;
    background-color: #fff;
    display: inline-block;
    vertical-align: top;
}

.login_vertical {
    padding-left: 20px;
    background-color: #fff;
    display: inline-block;
    vertical-align: top;
    text-align: right;
}

.login_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -230px;
}

/* LOADER */
.loader_bar_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 50px;
    margin-left: -100px;
    background-color: #ddd;
    width: 200px;
    height: 2px;
    opacity: 0;
}

.loader_text {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 30px;
    margin-left: -100px;
    width: 200px;
    height: 20px;
}

.loader_bar {
    background-color: #000;
    width: 2px;
    height: 2px;

}

.loader {
    position: absolute;
    top: 50%;
    margin-top: -17px;
    margin-left: -17px;
    left: 50%;
}

.go_background_clear {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    z-index: 10;
}

.go_background_clear_on {
    opacity: 1;
}

/* EMAIL VIEW */
.email_frame {
    font-size: 13px;
    position: absolute;
    bottom: 0;
    padding: 40px;
    padding-bottom: 0;
    left: calc(50% - 390px);
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);

    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    transition: all .4s ease-out;

    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -o-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);

    box-sizing: border-box;
    width: 780px;
    height: 94%;
    visibility: hidden;
}

.email_frame_off {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.email_header {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.email_body {
    padding-top: 20px;
    overflow: scroll;
    height: calc(100% - 130px);
    box-sizing: border-box;
}

.email_buttons {
    padding-top: 10px;
    border-top: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

/* NOTIFICATIONS */

.notification_frame {
    position: absolute;
    top: 0;
    padding: 10px;
    left: calc(50% - 240px);
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    transition: all .2s ease-out;

    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);

    box-sizing: border-box;
    width: 480px;
    height: 80px;
    visibility: hidden;
    opacity: 0;
}

.notification_frame_off {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.notification_text_container {
    font-size: 13px;
    position: absolute;
    top: 22px;
    left: 80px;
    width: 300px;
}

.notification_buttons {
    position: absolute;
    top: 22px;
    right: 30px;
    width: 100px;
}

.notification_title {
    font-weight: bold;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification_body {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* POPUP */
.go_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(220, 220, 220, 0.5);
    -webkit-transition: opacity .2s ease;
    -moz-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    -ms-transition: opacity .2s ease;
    transition: opacity .2s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 8;
}

.go_background_off {
    opacity: 1;
}

.popup_frame {
    position: absolute;
    top: 50%;
    margin-top: -120px;
    margin-left: -240px;
    padding: 40px;
    left: 50%;
    background-color: #fff;
    -webkit-box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.3);

    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    transition: all .2s ease-out;

    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -o-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);

    width: 400px;
    height: 160px;
    visibility: hidden;
}

.popup_frame_off {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@keyframes popup_alt {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    20% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -o-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

/* The element to apply the animation to */
.popup_frame_alert {
    animation-name: popup_alt;
    animation-duration: 0.4s;
}

.popup_buttons {
    position: absolute;
    bottom: 30px;
    right: 36px;
}


.colour_text {
    border-radius: 3px;
    padding: 3px 5px;
}

.comments-style {
    background: #E3E5E8;
    margin-top: 15px;
}


/* Calendar */
.calendar_input {
    position: relative;
}

.calendar_days {
    text-align: center;
    font-size: 10px;
    color: #aaa;
}

.calendar_button {
    outline: 0;
    border: 0;
    background-color: #fff;
    text-decoration: none !important;
    display: inline-block;
    -webkit-transition: background .2s ease;
    -moz-transition: background .2s ease;
    -o-transition: background .2s ease;
    -ms-transition: background .2s ease;
    transition: background .2s ease;
    cursor: pointer;
    width: 100%;
}

.cb_holiday {
    background-color: #fffcb0 !important;
}

.cb_holiday:hover {
    background-color: #ebe8a2 !important;
}

.smallButtonClusterContainer {
    width: 1px;
    height: 28px;
    position: relative;
    white-space: nowrap;
    float: right;
    background-color: inherit;

}

.smallButtonClusterContent {
    height: 28px;
    width: auto;
    position: absolute;
    top: 0;
    right: 0;
    white-space: nowrap;
    padding-left: 20px;
    background-color: inherit;
    -webkit-transition: -webkit-transform, opacity .2s ease-in-out;
    -moz-transition: -moz-transform .2s ease-in-out, opacity .2s ease-in-out;
    -o-transition: -o-transform .2s ease-in-out, opacity .2s ease-in-out;
    -ms-transition: -ms-transform .2s ease-in-out, opacity .2s ease-in-out;
    transition: transform .2s ease-in-out, opacity .2s ease-in-out;
    -webkit-transform: scaleX(0.01);
    -moz-transform: scaleX(0.01);
    -ms-transform: scaleX(0.01);
    -o-transform: scaleX(0.01);
    transform: scaleX(0.01);

    -webkit-transform-origin: right;
    -moz-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    transform-origin: right;
    visibility: hidden;
}

.smallButtonClusterContent.open {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.wrapper {
    display: grid;
    grid-template-columns: 192px 192px 192px 192px;
    grid-gap: 10px;
    background-color: #fff;
    color: #f6f6f6;
    text-align: center;
}

.box {
    background-color: #f6f6f6;
    color: #585858;
    border-radius: 5px;
    padding: 10px 5px 5px;
    font-size: 150%;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery img {
    width: 352px;
    height: 198px;
    margin: 10px;
    cursor: pointer;
    object-fit: cover;
}

/* Estilo para la imagen de pantalla completa */
.fullscreen-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 9999;
    cursor: zoom-out;
}


.menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 17px 7px;
    width: 80px;
    height: 6px;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    white-space: nowrap;
    color: #464448;
    overflow: hidden;
    background: #F5D328;
    border-radius: 14px;
    box-shadow: 0 3px 10px -2px rgba(0, 0, 0, 0.25);
    transition: 0.2s;
}

.menu.open {
    background: white;
    border: 1px solid #ccc;
    width: auto;
    height: auto;
    border-radius: 2px;
}

.menu.open .menu__button {
    color: #999;
    transform: rotate(45deg);
    height: auto;
    position: initial;
    float: right;
}

.menu.open .menu__content {
    opacity: 1;
    visibility: visible;
}

.menu.open .menu__button {
    /* visibility: hidden;*/
}


.menu__button {
    font-weight: 400;
    margin-inline: auto;
    margin-top: -17px;
    border: 0;
    background: none;
    color: black;
    position: initial;
    top: 18px;
    right: 15px;
    font-size: 34px;
    padding: 0;
    /*width: 30px;
    height: 30px;*/
    line-height: inherit;
    transition: 0.2s;
    user-select: none;
    cursor: pointer;
    text-align: center;
}

.menu__title {
    font-size: 12px;
    margin: 0 0 13px 0;
}

.menu__content {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.menu__content__list {
    list-style: none;
}

.menu__content__list li {
    margin: 0 0 3px 0;
    transform: translateX(20px);
    transition: 0.2s;
}

.menu__content__list li:nth-child(1) {
    transition-delay: 0.08s;
}

.menu__content__list li:nth-child(1) svg {
    fill: #42A5F5;
}

.menu__content__list li:nth-child(2) {
    transition-delay: 0.12s;
}

.menu__content__list li:nth-child(2) svg {
    fill: #66BB6A;
}

.menu__content__list li:nth-child(3) {
    transition-delay: 0.16s;
}

.menu__content__list li:nth-child(3) svg {
    fill: #FF8F00;
}

.menu.open .menu__content__list li {
    transform: translateX(0);
}

.menu__content__list svg {
    vertical-align: middle;
    position: relative;
    top: -1px;
}


.imgLink {
    border: none;
    background: none;
}

.imgLink img {
    height: 4rem;
    filter: blur(2px);
}

.imgLink:active img, .imgLink:focus img {
    height: 16rem;
    filter: blur(0);
}