label[for="CATEGORY-CONT$DISPO-F_NONDISPO"] {
    transform: scale(2);
}

.select2-highlighted {
    color: rgba(0,0,0,0.8) !important;
    background-color: #0000001f
}

button[data-msg="addCase"] {
    display: none;
}

.bling-bling {
    color: #FF3366;
    font-weight: bold;
}

.whereisit {
    display: none;
    width: 2em;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    font-size: 80%;
    color: white;
    border-radius: 100px;
    margin-left: .5em;
}

a.whereisit, a.whereisit:hover {
    color: white !important;
}

.required {
    font-weight: bold;
    color: #FF3366;
}

select[multiple] {
    height: 100%;
}

input[name="CATEGORY-CONT$INSTITUTION-F_CONT_INST_SECTOR"],
input[name="CATEGORY-CONT$INSTITUTION-F_CONT_INST_LESSONS"] { 
    display: none; 
}
input[name="CATEGORY-CONT$INSTITUTION-F_CONT_INST_EVALUATION"] {
    min-height: 60px !important;
}
.fuckingSize { font-size: .6em; margin-bottom: 0px; }

/**
*** Table availabilities
**/

.desktop-visibility { display: inline-block; }
.mobile-visibility { display: none; }

table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    table-layout: fixed;
    width: 90%;
    margin-bottom: 2em;
}

table tr {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: .35em;
}

table th,
table td {
    padding: .625em;
    text-align: center;
}

table td {
    height: 40px !important;
    text-align: center;
}

.callout {
    background-color: #7b96ec;
    width: 60%;
    border-radius: 3px;
    border: 1px solid #3398ff;
}

.large {
    padding: 25px;
}

#alert-box {
    margin: 0 auto;
    margin-bottom: 2em;
}

table caption {
    margin-bottom: 1.5em;
}

@media screen and (max-width: 640px) {
    table,
    .callout {
        width: 100%;
    }

    .large {
        padding: 20px;
    }

    .mobile-visibility { display: inline-block; }
    .desktop-visibility { display: none; }
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}