/* --------------------------------
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 {
    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;
    }
}



/* --------------------------------
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;
    }
}

/* 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: rgb(0 0 0 / 80%);
    z-index: 102;
    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: 100%;
        /* margin: 10px auto;
        transform: scale(0.9); */
    }
}

@media (inverted-colors) {
    :root {
        filter: invert(1);
    }
}




.strand {
    position: relative;
    width: 15px;
    height: 40px;
    animation: fadeIn 1s forwards;
    overflow: visible;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.top,
.bottom {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    width: 12px;
    border-radius: 100%;
    animation: 3s move infinite ease-in-out;
}

@keyframes move {
    0% {
        background-color: #164C01;
        top: 100%;
        z-index: -3;
    }

    25% {
        height: 8px;
        width: 8px;
        background-color: #164C01;
        z-index: -3;
    }

    50% {
        background-color: #29292D;
        top: 0%;
        z-index: -3;
    }

    75% {
        height: 12px;
        width: 12px;
        background-color: #D61400;
        z-index: 3;
    }

    100% {
        top: 100%;
        background-color: #D61400;
        z-index: 3;
    }
}


















.loaderContainer {
    animation: DNAFadeIn 1s forwards;
    background: rgb(255 255 255 / 80%);
}



#DNALoader {
    position: relative;
    margin: 0px auto;
    width: 230px;
    height: 83px;
    overflow: visible;
    display: none;
}

#DNALoader2 {
    position: relative;
    margin: 0px auto;
    width: 50px;
    overflow: visible;
}


@keyframes DNAFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.DNAStrand {
    position: relative;
    width: 15px;
    height: 40px;
    animation: DNAFadeIn 1s forwards;
    float: left;
    overflow: visible;
}

.DNATop,
.DNABottom {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    width: 12px;
    border-radius: 100%;
    animation: 3s DNAMove infinite ease-in-out;
}

@keyframes DNAMove {
    0% {
        background-color: #ffb050;
        top: 100%;
        z-index: -3;
    }

    25% {
        height: 8px;
        width: 8px;
        background-color: #ffb050;
        z-index: -3;
    }

    50% {
        background-color: #ffb050;
        top: 0%;
        z-index: -3;
    }

    75% {
        height: 12px;
        width: 12px;
        background-color: #ffffff;
        z-index: 3;
    }

    100% {
        top: 100%;
        background-color: #ffffff;
        z-index: 3;
    }
}

.container-popup-alerts {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgb(0, 0, 0, 0.2);
    right: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-alerts {
    background: white;
    padding: 20px !important;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
}

.header-popup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(220, 220, 220, 1);
    color: black;
    padding-bottom: 15px;
    width: 100%;
}

.header-popup h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}

.text-popup {
    text-align: center;
    color: black;
    max-width: 80%;
    font-size: 14px;
    line-height: 17px;
    margin: 30px auto;
}

.text-popup p {
    margin-bottom: 0;
}

.buttons-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.close-popup {
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.buttons-popup .button {
    margin: auto;
}

.justlazy-spinner {
    position: relative;
    border-top: 0.6em solid rgba(255, 255, 255, 0.2);
    border-right: 0.6em solid rgba(255, 255, 255, 0.2);
    border-bottom: 0.6em solid rgba(255, 255, 255, 0.2);
    border-left: 0.6em solid #878787;
    animation: rotate360 1s infinite linear;
    -webkit-animation: rotate360 1s infinite linear;
    -moz-animation: rotate360 1s infinite linear;
    -o-animation: rotate360 1s infinite linear;
}

.justlazy-spinner,
.justlazy-spinner:after {
    border-radius: 50%;
    width: 4em !important;
    height: 4em !important;
    left: calc(50% - 2em);
    margin-left: 0px;
    margin-top: calc(50% - 2em);
    margin-bottom: 40px;
}


@-webkit-keyframes rotate360 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.shareContainer {
    display: flex;
    align-items: center;
    gap: 5px;
}

.shareContainerBlogPost {
    width: 5%;
    height: 100%;
    position: sticky;
    top: 150px;
    overflow: visible;
}

@media screen and (max-width: 780px) {
    .shareContainerBlogPost {
        width: unset;
        height: 100%;
        position: unset;
        top: unset;
        overflow: visible;
        margin-bottom: 20px;
    }
}

.shareIconsBlogPost {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 16px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: visible;
}

@media screen and (max-width: 780px) {
    .shareIconsBlogPost {
        flex-direction: row;
    }
}

.shareIconsBlogPost img {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain !important;
    cursor: pointer;
    background: white;
    border-radius: var(--border-radius-two) !important;
    box-sizing: content-box;
    padding: 6px;
    overflow: visible;
    border: 1px solid var(--dark-color);
}

.shareIconsBlogPost img:hover {
    filter: invert();
}


.shareText {
    cursor: pointer;
    min-width: fit-content;
}

.shareIcons {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.shareIcons.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.shareIcons img {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain !important;
    cursor: pointer;
    background: white;
    border-radius: var(--border-radius-two) !important;
    box-sizing: content-box;
    padding: 6px;
    overflow: visible;
}

.shareIcons img:hover {
    filter: invert();
}

.buttonHoveOverlayBackground {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    align-items: self-end;
    padding-bottom: 43px;
    padding-left: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    border-radius: var(--border-radius-two);

}

figure:hover .buttonHoveOverlayBackground {
    visibility: visible;
    opacity: 1;
}

.buttonHoverOverlayContainer {
    height: fit-content;
    display: grid;
    grid-gap: 10px;
    z-index: 99999999999999;
    width: fit-content;
}

.openShareOption figure {
    margin-bottom: 0 !important;
}

.buttonHoverOverlay {
    display: flex;
    align-items: center;
    font-size: var(--generic-font-two);
    margin-bottom: 5px;
    width: fit-content;
}

.buttonHoverOverlay p {
    color: var(--light-color);
}

.buttonHoverOverlay figure {
    background: white;
    border-radius: 100px;
    margin-right: 10px;
    width: 30px;
    height: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttonHoverOverlay figure img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}


.buttonHoveOverlayBackground {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgb(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    align-items: self-end;
    padding-bottom: 43px;
    padding-left: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

figure:hover .buttonHoveOverlayBackground {
    visibility: visible;
    opacity: 1;
}

.crop-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: none;
}

.crop-icon {
    position: absolute;
    left: 3px;
    top: 3px;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
  <rect x='4' y='4' width='16' height='16' \
        fill='none' stroke='white' stroke-width='2' \
        stroke-dasharray='4 4' stroke-linecap='round'/>\
</svg>");
}