html, body {
    font-family: confortaa;
    overflow: auto;
    width: 100%;
    font-size: 12pt;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    padding: 0 !important;
}
body::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}
@media only screen and (min-width: 1050px) {
    body::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
}
@media only screen and (min-width: 1050px) {
    body[data-hijacking="on"] {
        overflow: hidden;
    }
}
@font-face {
    font-family: confortaa;
    src: url('../font/confortaa/Comfortaa-Regular.ttf');
}
.wrap {
    min-height: 100%;
    height: auto;
    /*margin: 0 auto -60px;*/
    padding: 0 0 60px;
    font-size: 11pt;
}
.wrap>.container {
    padding: 30px 15px 20px;
}
.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.jumbotron {
    text-align: center;
    background-color: transparent;
}
.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}
.not-set {
    color: #c55;
    font-style: italic;
}
/* add sorting icons to gridview sort links */

a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}
a.asc:after {
    content:
    /*"\e113"*/
    "\e151";
}
a.desc:after {
    content:
    /*"\e114"*/
    "\e152";
}
.sort-numerical a.asc:after {
    content: "\e153";
}
.sort-numerical a.desc:after {
    content: "\e154";
}
.sort-ordinal a.asc:after {
    content: "\e155";
}
.sort-ordinal a.desc:after {
    content: "\e156";
}
.grid-view th {
    white-space: nowrap;
}
.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}
.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}
/* align the logout "link" (button in form) of the navbar */

.navbar {
    margin-bottom: unset;
    background-color: white;
    transition: top 0.5s ease;
}
.navbar-hide {
    top: -80px;
}
.nav li>form>button.logout {
    padding: 15px;
    border: none;
}
@media(max-width:767px) {
    .nav li>form>button.logout {
        display: block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }
}
.nav>li>form>button.logout:focus, .nav>li>form>button.logout:hover {
    text-decoration: none;
}
.nav>li>form>button.logout:focus {
    outline: none;
}
/************************************* site css***********/

.lang {
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    float: left;
    margin-right: 5px;
    cursor: pointer;
}
.lang.es {
    background-image: url('../img/spain.png');
    cursor: pointer;
}
.lang.en {
    background-image: url('../img/eng.png');
    cursor: pointer;
}
#en, #es {
    cursor: pointer;
}
#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(255 255 255 / 40%);
    z-index: 9999;
    display: none;
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
#cover-spin::after {
    content: '';
    display: block;
    position: absolute;
    left: 48%;
    top: 40%;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: black;
    border-top-color: transparent;
    border-width: 4px;
    border-radius: 50%;
    -webkit-animation: spin .8s linear infinite;
    animation: spin .8s linear infinite;
}
.boxes .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}
/* Creating the dots */

.boxes span {
    height: 25px;
    width: 25px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #dae34e;
    animation: loading 1s linear infinite;
}
/* Creating the loading animation*/

@keyframes loading {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(20px);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0);
    }
}
.boxes span:nth-child(1) {
    animation-delay: 0.1s;
}
.boxes span:nth-child(2) {
    animation-delay: 0.2s;
}
.boxes span:nth-child(3) {
    animation-delay: 0.3s;
}
.boxes span:nth-child(4) {
    animation-delay: 0.4s;
}
.boxes span:nth-child(5) {
    animation-delay: 0.5s;
}