/* --------------------------------
POPUP
-------------------------------- */
.cd-nugget-info {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 50px;
    line-height: 50px;
    bottom: 0;
    left: 0;
}
.cd-nugget-info a {
    position: relative;
    font-size: 14px;
    color: #5e6e8d;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}
.no-touch .cd-nugget-info a:hover {
    opacity: .8;
}
.cd-nugget-info span {
    vertical-align: middle;
    display: inline-block;
}
.cd-nugget-info span svg {
    display: block;
}
.cd-nugget-info .cd-nugget-info-arrow {
    fill: #5e6e8d;
}

.cd-popup-trigger {
    display: block;
    width: 170px;
    height: 50px;
    line-height: 50px;
    margin: 3em auto;
    text-align: center;
    color: #FFF;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50em;
    background: #35a785;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.07);
}
@media only screen and (min-width: 1170px) {
    .cd-popup-trigger {
        margin: 6em auto;
    }
}

.cd-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(94, 110, 141, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 4em auto;
    background: #FFF;
    border-radius: .25em .25em .4em .4em;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.cd-popup-container p {
    padding: 0px;
    color: #343434;
    margin-bottom: 5px;
}
.cd-popup-container .cd-buttons:after {
    content: "";
    display: table;
    clear: both;
}
.cd-popup-container .cd-buttons li {
    float: left;
    width: 50%;
    list-style: none;
}
.cd-popup-container .cd-buttons a {
    display: block;
    height: 60px;
    line-height: 60px;
    text-transform: uppercase;
    color: #FFF;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.cd-popup-container .cd-buttons li:first-child a {
    background: #fc7169;
    border-radius: 0 0 0 .25em;
}
.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
    background-color: #fc8982;
}
.cd-popup-container .cd-buttons li:last-child a {
    background: #b6bece;
    border-radius: 0 0 .25em 0;
}
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
    background-color: #c5ccd8;
}
.cd-popup-container .cd-popup-close .cd-popup-close-qr{
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
}

.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
    content: '';
    position: absolute;
    top: 12px;
    width: 14px;
    height: 3px;
    background-color: #8f9cb5;
}
.cd-popup-container .cd-popup-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
}
.cd-popup-container .cd-popup-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
}
.is-visible .cd-popup-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
    .cd-popup-container {
        margin: 8em auto;
    }
}

label{
    font-size: 18px;
    color: #676767;
    margin-bottom: 5px;
    display: block;
}
input{
    background-color: #ebebeb;
    color: #8080B0;
    height: 53px;
    padding: 0 15px;
    width: calc(100% - 30px);
    font-size: 14px;
    border: none;
    margin: 0 auto;
    margin-bottom: 15px;
}

/* --------------------------------
LOADER
-------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* keyframes */
@keyframes eclipse {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(260px);
    }
}

@keyframes halo {
    from {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/*Loader 1 --CURRENT--*/
*, ::after, ::before { -webkit-box-sizing: border-box; box-sizing: border-box; }
html { width: 100%; height: 100%; font-size: 62.5%; }

/* Loader 1 */
.loader-1 {
    height: 32px;
    width: 32px;
    -webkit-animation: loader-1-1 4.8s linear infinite;
    animation: loader-1-1 4.8s linear infinite;
}
@-webkit-keyframes loader-1-1 {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes loader-1-1 {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader-1 span {
    display: block;
    position: absolute;
    top: 0; left: 0;
    bottom: 0; right: 0;
    margin: auto;
    height: 32px;
    width: 32px;
    clip: rect(0, 32px, 32px, 16px);
    -webkit-animation: loader-1-2 1.2s linear infinite;
    animation: loader-1-2 1.2s linear infinite;
}
@-webkit-keyframes loader-1-2 {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(220deg); }
}
@keyframes loader-1-2 {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(220deg); }
}
.loader-1 span::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    bottom: 0; right: 0;
    margin: auto;
    height: 32px;
    width: 32px;
    clip: rect(0, 32px, 32px, 16px);
    border: 3px solid #FFF;
    border-radius: 50%;
    -webkit-animation: loader-1-3 1.2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
    animation: loader-1-3 1.2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-1-3 {
    0%   { -webkit-transform: rotate(-140deg); }
    50%  { -webkit-transform: rotate(-160deg); }
    100% { -webkit-transform: rotate(140deg); }
}
@keyframes loader-1-3 {
    0%   { transform: rotate(-140deg); }
    50%  { transform: rotate(-160deg); }
    100% { transform: rotate(140deg); }
}



/* main */
:root {
    --bgColor: #000d1a;
    --moonColor: #c2c5cc;
}

.loaderContainer {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.16);
    z-index: 100;
    left: 0px;
    top: 0px;
}

.loaderMoon {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--moonColor);
}

/* halo */
.loaderMoon::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0px 0px 50px var(--moonColor);
    opacity: 0;
    animation-name: halo;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

/* eclipse */
.loaderMoon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -140px;
    width: 110px;
    height: 110px;
    background-color: black;
    border-radius: 50%;
    animation-name: eclipse;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

.loaderMoonCrater {
    position: absolute;
    border-radius: 50%;
    background-color: grey;
}

.loaderMoonCrater:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 20px;
    left: 50px;
}

.loaderMoonCrater:nth-child(2) {
    width: 10px;
    height: 10px;
    top: 40px;
    left: 70px;
}

.loaderMoonCrater:nth-child(3) {
    width: 15px;
    height: 15px;
    top: 50px;
    left: 50px;
}

/* media queries */
@media screen and (max-width: 600px) {
    .loaderContainer {
        /*width: 98%;*/
        /*margin: 10px auto;*/
        /*transform: scale(0.9);*/
        width: 100%;
    }
}

@media (inverted-colors) {
    :root {
        filter: invert(1);
    }
}



/* --------------------------------
NUEVO POPUP
-------------------------------- */

#messagePopupContainer {
    display: none;
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0px;
    height: 100%;
    z-index: 999999;
}
#messagePopupContainerBackground {
    width: 100%;
    left: 0px;
    top: 0px;
    height: 100%;
    position: absolute;
    background-color: black;
    opacity: 0.3;
}
#messagePopup {
    margin: 0px auto;
    max-width: 650px;
    background-color: white;
    width: 90%;
    margin-top: 180px;
    border-radius: 15px;
    height: auto;
    overflow: hidden;
    position: relative;
}
#messagePopupSafeZone {
    width: calc(100% - 60px);
    margin-left: 30px;
    height: auto;
    overflow: hidden;
}
#messagePopupHeader {
    margin-top: 24px;
    height: auto;
    overflow: hidden;
}
#messagePopupTitle {
    font-weight: bold;
    font-size: 15px;
    width: calc(100% - 50px);
    margin-top: 10px;
    float: left;
    color: grey;
}

#messagePopupCloseButton {
    width: 30px;
    float: right;
    cursor: pointer;
}
#messagePopupSeparator {
    height: 1px;
    background-color: #ebebeb;
    margin-top: 20px;
    margin-bottom: 30px;
}
#messagePopupDescription {
    margin-top: 35px;
    text-align: center;
    color: grey;
    font-size: 13px;
    line-height: 19px;
}
#messagePopupLeftButton {
    float: left;
    padding-left: 45px;
    padding-right: 45px;
    font-weight: bold;
    width: auto;
    height: 40px;
    border-radius: 60px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    border: 1px solid grey;
    color: grey;
}

#messagePopupRightButton {
    float: right;
    padding-left: 45px;
    padding-right: 45px;
    background-color: green;
    font-weight: bold;
    width: auto;
    height: 40px;
    border-radius: 60px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
}

#messagePopupButtons{
    margin-top: 30px;
    margin-bottom: 30px;
    height: auto;
    overflow: hidden;
}
.messagePopupButtonText {
    font-size: 10px;
    text-align: center;
    margin-top: 14px;
    width: auto;
}

/* POPUP Error */
.not-available-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.not-available-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 80%;
    width: 330px;
    height: auto;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.lock-icon {
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 20px;
}

.lock-icon img {
    width: 78px;
    height: 61px;
}

.not-available-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.not-available-content p {
    font-size: 16px;
    /*color: #666;*/
}

.error-popup-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}

.error-popup-accept {
    background-color: #4caf50;
    color: white;
    margin-top: 40px;
}
/* END POP UP Error */



/* SUCESS POPUP */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.success-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 80%;
    width: 330px;
    height: 330px;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.success-icon {
    background: #ffffff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.success-icon img {
    width: 50px;
    height: 50px;
}

.success-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.success-content p {
    font-size: 16px;
    /*color: #666;*/
}

.success-popup-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
}

.success-popup-accept {
    background-color: #4caf50;
    color: white;
    margin-top: 20px;
}
/* END SUCESS POPUP */