﻿/*.div-giro-main {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.div-giro-main div {
  animation: div-giro-main 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}
.div-giro-main div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 24, 113, 1);
  margin: -3px 0 0 -3px;
}
.div-giro-main div:nth-child(1) {
  animation-delay: -0.036s;
}
.div-giro-main div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.div-giro-main div:nth-child(2) {
  animation-delay: -0.072s;
}
.div-giro-main div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.div-giro-main div:nth-child(3) {
  animation-delay: -0.108s;
}
.div-giro-main div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.div-giro-main div:nth-child(4) {
  animation-delay: -0.144s;
}
.div-giro-main div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.div-giro-main div:nth-child(5) {
  animation-delay: -0.18s;
}
.div-giro-main div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.div-giro-main div:nth-child(6) {
  animation-delay: -0.216s;
}
.div-giro-main div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.div-giro-main div:nth-child(7) {
  animation-delay: -0.252s;
}
.div-giro-main div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.div-giro-main div:nth-child(8) {
  animation-delay: -0.288s;
}
.div-giro-main div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes div-giro-main {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lds-text{
position:absolute;
display:table;
line-height: 64px;*/       /*altura del Div*/
/*}
.lds-text.centered {*/
    /*display:table-cell;
    vertical-align:middle;
    text-align:center;*/
/*}*/


body .vertical-centered-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    text-align: center;
    background-color: #f0f8ff99;
    z-index: 2147483647;
}

#div-carga-nuevo {
    display: none;
}

/*            body .vertical-centered-box::after {
                content: '';
                display: inline-block;
                height: 100%;
                vertical-align: middle;
                margin-right: -0.25em;
            }*/

body .vertical-centered-box .content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: fadein 1s linear forwards;
    -moz-animation: fadein 1s linear forwards;
    -o-animation: fadein 1s linear forwards;
    animation: fadein 1s linear forwards;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
    opacity: 0;
}

body {
    background: #2D2D2C;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    overflow: hidden;
    -webkit-transform-origin: 50px 50px;
    -moz-transform-origin: 50px 50px;
    -ms-transform-origin: 50px 50px;
    -o-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    mix-blend-mode: hard-light;
    opacity: 0.8;
}

    .loader-line-mask .loader-line {
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

    .loader-line-mask.one {
        -webkit-animation: rotate 2s infinite linear;
        -moz-animation: rotate 2s infinite linear;
        -o-animation: rotate 2s infinite linear;
        animation: rotate 2s infinite linear;
    }

        .loader-line-mask.one .loader-line {
            box-shadow: inset 0 0 0 8px #00AEC7;
        }

    .loader-line-mask.two {
        -webkit-animation: rotate 2s -1s infinite linear;
        -moz-animation: rotate 2s -1s infinite linear;
        -o-animation: rotate 2s -1s infinite linear;
        animation: rotate 2s -1s infinite linear;
    }

        .loader-line-mask.two .loader-line {
            box-shadow: inset 0 0 0 8px #001871;
        }

lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        -o-transform: rotate(0deg);
    }

    100% {
        -o-transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

[not-existing] {
    zoom: 1;
}

lesshat-selector {
    -lh-property: 0;
}

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

[not-existing] {
    zoom: 1;
}