.wrap-content {
    width: 100%;
    max-width: 1200px;
    overflow-x: hidden;
    margin: auto;
}

.wrap-content img {
    display: block;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
}

.wrap-content h1, .wrap-content h2 {
    width: 100%;
}

.wrap-content figure {
    margin: auto;
    margin-bottom: 10px;
}

.wrap-content TABLE {
    max-width: 100%;
    border: 5px double;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 10px;
    border-collapse: collapse;
    display: inline-table;
}

.wrap-content TD, .wrap-content TH {
    padding: 5px;
    border: 1px solid;
    text-align: left;
    margin-bottom: 10px;

}

.wrap-content tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.wrap-content tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}

.wrap-content ol, .wrap-content ul {
    list-style: auto;
    margin-left: 18px;
    width: 100%;
    margin-bottom: 10px;
}

.wrap-content li {
    list-style: auto;
}

.wrap-content p {
    margin-bottom: 10px;
}

.wrap-content h1, .wrap-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}
.login-btn {
    --button-bg: linear-gradient(135deg, #2cab23 0%, #2cab23 100%);
    --button-hover-bg: #2cab23;
    --button-active-bg: #2cab23;
    background: linear-gradient(135deg, #2cab23 0%, #2cab23 100%);
}

.login-btn:hover {
    background: linear-gradient(135deg, #2cab23 0%, #2cab23 100%);
    color: hsla(0, 0%, 100%, 1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2), 0px 10px 40px rgba(0, 0, 0, 0.4)
}

.register-btn {
    --button-bg: linear-gradient(135deg, #1354d7 0%, #1354d7 100%);
    --button-hover-bg: #1354d7;
    --button-active-bg: #1354d7;
    background: linear-gradient(135deg, #1354d7 0%, #1354d7 100%);
}

.register-btn:hover {
    background: linear-gradient(135deg, #1354d7 0%, #1354d7 100%);
    color: hsla(0, 0%, 100%, 1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2), 0px 10px 40px rgba(0, 0, 0, 0.4)
}

.cardFooter.inputGroupAddon.progressCircle {
    padding-top: 52px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 3;
    transition: .3s ease-in-out;
}

.header.fixed {
    padding: 10px 0;
    background: #202b38;
    box-shadow: 0 0 10px 4px rgb(255, 255, 255, 0.05);
}

.header-inner {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* style for mobile */
@media (max-width: 768px) {

    .login-btn,
    .register-btn {
        padding-right: 10px;
        padding-left: 10px;
    }
}
.blob {
    width: 100%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

nav.scrollmenu {
    /*background-color: #333;*/
    overflow: auto;
    white-space: nowrap;
}

nav.scrollmenu a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

nav.scrollmenu a:hover {
    background-color: #777;
}

.promocode {
    border-style: dashed;
    font-size: 2em;
    margin: auto;
    width: 50%;
    padding: 10px;
    text-align: center;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #0077cc;
    color: white;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #005fa3;
    text-decoration: none;
}


@media (max-width: 767px) {
    .hide-on-mobile {
        display: none;
    }
}