.btn {
    display: inline-block;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.65rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25;
    border-radius: 3px;
    transition: all 0.15s ease-in-out;
}
.btn:focus,
.btn:hover {
    text-decoration: none;
}
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(8, 102, 198, 0.25);
}
.btn:disabled {
    opacity: 0.65;
}
.btn:active {
    background-image: none;
}
.btn-primary {
    color: #fff;
    background-color: #0866c6;
    border-color: #0866c6;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0753a1;
    border-color: #064d95;
}
.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(8, 102, 198, 0.5);
}
.btn-primary:disabled {
    background-color: #0866c6;
    border-color: #0866c6;
}
.btn-primary:active {
    background-color: #0753a1;
    background-image: none;
    border-color: #064d95;
}
.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    box-shadow: inset 0 0 30px #fffb;
    background: rgb(255, 255, 255);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.2) 40%,
        rgba(255, 255, 255, 0) 100%
    );
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 3px;
}
.rounded {
    border-radius: 3px !important;
}

.btn {
    border-radius: 0;
}
.btn:active {
    box-shadow: none;
}
.card {
    border: 0;
    border-radius: 20px;
}

@media (min-width: 576px) {
    .sl-pagebody {
        padding: 25px;
    }
}

.btn-primary {
    background: transparent;
    border: 2px solid #1b365d;
    color: #1b365d;
    border-radius: 20px !important;
}
.sl-pagebody {
    display: flex;
    flex-direction: column;
}
.snr-top-icon {
    position: absolute;
    top: 0;
    left: 25%;
    translate: -50%;
    border-radius: 0 0 15px 15px;
    padding: 15px;
}
.snr-top-icon img {
    width: 200px;
}
.main-row {
    height: 100%;
    flex-grow: 1;
    align-content: center;
}
.left-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.left-h {
    font-size: 8rem;
    text-align: center;
}
@media (max-width: 900px) {
    .tx-24 {
        font-size: 16px !important;
    }
    .landing-header-text {
        text-align: center;
        font-size: 50px;
        margin-top: 100px;
    }
}
/*! CSS Used from: http://127.0.0.1:8000/css/animate.min.css */
.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}
@media (prefers-reduced-motion: reduce), print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}
.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
/*! CSS Used keyframes */
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    /* background-color: red; */
    /* color: white; */
    /* text-align: center; */
 }
