html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

a {
    color: #458ffb;
}

/**
 * ----------------------------------------
 * animation color-change-2x
 * ----------------------------------------
 */
@-webkit-keyframes chest-color-change-2x {
    0% {
        background: #5cb85c;
    }

    100% {
        background: #fff;
    }
}

@keyframes chest-color-change-2x {
    0% {
        background: #5cb85c;
    }

    100% {
        background: #fff;
    }
}

.chest-color-change-2x {
    -webkit-animation: chest-color-change-2x 1.5s alternate both;
    animation: chest-color-change-2x 1.5s alternate both;
}
/**
 * ----------------------------------------
 * animation color-change-2x
 * ----------------------------------------
 */
/**
 * ----------------------------------------
 * animation color-change-2x-transporent
 * ----------------------------------------
 */
@-webkit-keyframes chest-color-change-2x-transporent {
    0% {
        background: #5cb85c;
    }

    100% {
        background: rgba(255,255,255,0.5);
    }
}

@keyframes chest-color-change-2x-transporent {
    0% {
        background: #5cb85c;
    }

    100% {
        background: rgba(255,255,255,0.5);
    }
}

.chest-color-change-2x-transporent {
    -webkit-animation: chest-color-change-2x-transporent 1.5s alternate both;
    animation: chest-color-change-2x-transporent 1.5s alternate both;
}
/**
 * ----------------------------------------
 * animation color-change-2x-transporent
 * ----------------------------------------
 */


/**
 * ----------------------------------------
 * Shine text
 * ----------------------------------------
 */
.shine-mytext-now {
    background: linear-gradient(135deg, #ff1493, #FFD700, #ef06a7, #FFD700);
    background-size: 50%;
    animation: text-gradient 2s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

@keyframes text-gradient {
    0% {
        background-position: 100% 50%;
    }

    30% {
        background-position: 0% 50%;
    }

    70% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}