body {
    background: #0f0f47;
}
.navbar {
    background-color: #00003c;
    height: 70px;
}

.loading-wrapper {
    display: flex;
    align-items: center;
    height: 100vh;
    z-index: 999;
}

.loader {
    margin: auto;
    border: 10px solid #EAF0F6;
    border-radius: 50%;
    border-top: 10px solid lightgreen;
    width: 100px;
    height: 100px;
    animation: spinner 1s linear infinite; 
}
  
@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-select {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.pointer {
    cursor: pointer;
}

.hover-no-shadow:hover {
    box-shadow: none !important;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

.pricing-card, .pricing-card .card-footer {
    background-color: #f5f5f6;
    overflow: hidden;
}
.pricing-card:hover {
    background-color: #e1f9e2;
    box-shadow: 0 19px 38px #e8dfdf4d, 0 15px 12px #00000038;
}
.pricing-card:hover .greenSquare, .pricing-card:hover .greenSquare2 {
    /* right: -38px; */
    transform: rotate(135deg);
}

.greenSquare, .greenSquare2 {
    background-color: #0cc652;
    border-radius: 8px;
    content: "";
    height: 88px;
    opacity: .2;
    position: absolute;
    right: -35px;
    transform: rotate(45deg);
    width: 88px;
    z-index: 0;
    transition: transform .5s ease;
}
.greenSquare {
    top: 0px;
}
.greenSquare2 {
    top: 35px;
}


.card-button:hover {
    background-color: #e1f9e2;
    box-shadow: 0 19px 38px #e8dfdf4d, 0 15px 12px #00000038;
    text-decoration: underline;
}
.card-button:hover .greenSquare3 {
    right: -60px;
    bottom: -100px;
}
.card-button:hover .greenSquare4 {
    right: -55px;
    bottom: -30px;
}

.greenSquare3 {
    background-color: #0cc652;
    border-radius: 50%;
    content: "";
    height: 126px;
    opacity: .2;
    position: absolute;
    right: -90px;
    bottom: -40px;
    transform: rotate(45deg);
    width: 126px;
    z-index: 0;
    transition: all .5s ease;
}
.greenSquare4 {
    background-color: #0cc652;
    border-radius: 50%;
    content: "";
    height: 90px;
    opacity: .2;
    position: absolute;
    right: -40px;
    bottom: -55px;
    transform: rotate(45deg);
    width: 90px;
    z-index: 0;
    transition: all .5s ease;
}

.select2-container {
    width: 100% !important;
}