<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes shine {
    0% {
      background-position: -100px;
    }
    40%, 100% {
      background-position: 600px;
    }
}


.ndgit-calc-container {
    position: relative;
    padding: 0 !important;
}

.ndgit-calc-rate,
.ndgit-calc-rate-skelaton {
    box-sizing: border-box;

    border-radius: 15px;
    padding: 15px 15px;

    width: 100%;
}

.ndgit-calc-rate {
    border: 1px solid #1a79c3;
    color: #1a79c3;
    cursor: pointer;
    transition: all .3s ease-in-out;

    margin-top: 20px;
    margin-bottom: 30px;

    /* display: none; */
    visibility: hidden;
    opacity: 0;
}

.ndgit-calc-rate-skelaton {
    display: none;
}

.ndgit-calc-rate-skelaton.loading {
    position: absolute;
    top: 0;
    display: block;
    height: 52px;
    animation: shine 1.6s infinite linear;
    background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 40px, #ddd 80px);
    background-size: 600px;
}


.ndgit-calc-rate.show {
    /* display: block; */
    visibility: visible;
    opacity: 1;

    transition: all .5s ease-in-out;
}

.ndgit-calc-rate:hover {
    box-shadow: 0 0 6px rgba(0,0,0,0.16),
        0 0 6px rgba(0,0,0,0.23);
    border: 1px solid #004d88;
    color: #004d88;
}

.ndgit-calc-modal {
    position: fixed;
    top: -1500px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;

    display: none;
    /* display: flex; */
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0.522);
}

@keyframes slide {
    100% { top: 0; }
}

.ndgit-calc-modal.show {
    display: flex;
    animation: slide 0.5s forwards;
    animation-delay: 0s;
}

#akv_iframe_host {
    max-width: 400px;
    width: 80vw;

    padding: 25px !important;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.06), 0px 0px 4px rgba(0, 0, 0, 0.04);

    background-color: #f4f4f4;
}

#akv_iframe_host_outer {
    position: relative;
}

.ndgit-calc-modal .close {
    position: relative;
    left: 100%;
    top: -32px;
    width: 32px;
    height: 32px;
    opacity: 0.5;
}

@media only screen and (max-width: 639px) {
    .ndgit-calc-modal .close {
        left: calc(100% - 32px);
    }
}

.ndgit-calc-modal .close:hover {
    opacity: 1;
}
.ndgit-calc-modal .close:before, .ndgit-calc-modal .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: #fff;
}
.ndgit-calc-modal .close:before {
    transform: rotate(45deg);
}
.ndgit-calc-modal .close:after {
    transform: rotate(-45deg);
}

.ndgit-spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;

    display: none;
    /* display: flex; */
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0.522);
}

.ndgit-spinner.show {
    display: flex;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }
</pre></body></html>