body {
    background-color: #090b0e;
    max-width: 100vw;
    overflow-x: hidden;
    background-image: url('/images/sysadmin-background-fill.svg');
    background-size: 1000px 700px;
}

h1,
h2,
h3,
h4 {
    color: #fff;
}

p {
    color: #fff;
}

.top-section {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    padding-top: 4rem;
    height: 100vh;
    font-family: 'ZohoPuvi', sans-serif;
}

.top-section .content-box {
    background-color: rgba(5, 6, 6, .7);
    max-width: 650px;
    text-align: center;
    border-radius: 10px;
    margin-top: -150px;
    z-index: 30;
    opacity: 0;
    transform: translateY(100px);
    -webkit-animation: slideUp 1s ease-out forwards;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 1750ms;
}

.top-section .content-box p {
    font-size: 1.2rem;
    color: #fff;
}

.top-section #celebration-heading {
    display: block;
    opacity: 0;
    -webkit-animation: fadeIn 2s linear forwards;
    animation: fadeIn 2s linear forwards;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: -90px;
    animation-delay: 1750ms;
}

.top-section #celebration {
    display: block;
    position: absolute;
    bottom: 50px;
    right: 60px;
    width: 500px;
    -webkit-animation: fadeIn 2s linear forwards;
    animation: fadeIn 2s linear forwards;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.top-section #shieldman {
    display: block;
    position: absolute;
    top: 30px;
    left: 15%;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-animation: fadeIn 3s linear forwards;
    animation: fadeIn 3s linear forwards;
    -webkit-animation-delay: 1750ms;
    animation-delay: 1750ms;
}

.top-section #supportman {
    display: block;
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 10%;
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-animation: fadeIn 2s linear forwards;
    animation: fadeIn 2s linear forwards;
    -webkit-animation-delay: 1750ms;
    animation-delay: 1750ms;
}

@media screen and (max-width: 1120px) {
    .top-section #celebration {
        bottom: 30px;
        right: 30px;
        width: 400px;
    }

    .top-section #supportman {
        bottom: 100px;
        left: 5%;
    }
}

@media screen and (max-width: 850px) {
    .top-section {
        box-sizing: border-box;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 20px;
        padding-top: 4rem;
        height: 100vh;
        font-family: 'ZohoPuvi', sans-serif;
    }

    .top-section .content-box {
        max-width: 650px;
        text-align: center;
        border-radius: 10px;
        margin-top: -60px;
        z-index: 30;
        opacity: 0;
        transform: translateY(100px);
        -webkit-animation: slideUp 1s ease-out forwards;
        animation: slideUp 1s ease-out forwards;
        animation-delay: 1750ms;
    }

    .top-section #celebration-heading {
        margin-top: 0;
    }

    .top-section #celebration {
        bottom: 30px;
        right: 30px;
        width: 200px;
    }

    .top-section #shieldman {
        display: none;
    }

    .top-section #supportman {
        display: none;
        bottom: 100px;
        left: 5%;
    }
}

.top-section h1 {
    font-family: 'Abril Fatface', sans-serif;
    font-weight: 400;
    font-size: 6rem;
    line-height: 4rem;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin: 0;
}

.top-section h1 span:nth-child(1) {
    font-size: 3rem;
    color: #fff;
    margin-left: 25px;
}

.top-section h1 span:nth-child(2) {
    display: block;
    color: #32D956;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes slideUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

h2 {
    font-size: 2.5rem;
}

.buttons {
    display: flex;
    flex-direction: row;
}

.buttons button {
    background: none;
    outline: none;
    border: none;
    margin-top: 20px;
    margin-right: 10px;
    padding: 10px 30px;
    font-family: 'ZohoPuviSemBd', sans-serif;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.2s all ease-in;
}

.buttons button:hover {
    cursor: pointer;
}

.buttons button.green {
    background-color: #32D956;
    border: 2px solid #32D956;
    color: #252B35;
}

.buttons button.cyan {
    background-color: #32a7d9;
    border: 2px solid #32a7d9;
    color: #252B35;
}

.buttons button.green.outline {
    background-color: transparent;
    border: 2px solid #32D956;
    color: #32D956;
}

.buttons button.green.outline:hover {
    cursor: pointer;
    background-color: #32D956;
    color: #252B35;
}

.buttons button.green:hover {
    cursor: pointer;
    border: 2px solid #24a23f;
    background-color: #23a43f;
    color: #fff;
}

.buttons button.cyan:hover {
    background-color: #45b2e0;
    border: 2px solid #45b2e0;
    color: #252B35;
}

.templates {
    width: 100vw;
    overflow-x: hidden;
}

.templates-wrapper {
    display: flex;
    width: 3000px;
    max-height: max-content;
    transform: translateX(-350px)
}

.template-card {
    position: relative;
    display: block;
    margin-right: 15px;
    border-radius: 10px;
    content: '';
    background-color: #171b21;
    width: 600px;
    overflow-y: hidden;
}

.template-card img {
    display: block;
    opacity: .3;
    width: 100%;
}

.template-card.active img {
    opacity: 1;
}

.card-wrapper {
    overflow: hidden;
    background: #2843ae;
    border-radius: 15px;
    transition: .2s all ease-out;
}

.card-wrapper .img-wrapper {
    position: relative;
    content: ' ';
    height: 200px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background: #2843ae;
    transition: .2s all ease-out;
    overflow: hidden;
}

.card-wrapper .img-wrapper img {
    z-index: 15;
    max-width: 80%;
    transition: .2s all ease-out;
}

.card-wrapper .img-wrapper::before {
    display: block;
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 0;
    z-index: 15;
    transform: rotate(180deg);
    border-radius: 100% 0% 0% 100% / 100% 0% 100% 0%;
    background-color: #2843ae;
    transition: .2s all ease-out;
}

.card-wrapper .img-wrapper::after {
    display: block;
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: 0;
    right: 0;
    z-index: 10;
    transform: rotate(180deg);
    background-color: #fff;
    transition: .2s all ease-out;
}

.card-wrapper .content-wrapper {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: #fff;
}

.game-card {
    transition: .2s all ease-in;
}

.game-card:hover {
    cursor: pointer;
    transform: translateY(-5px);
}

.game-card:hover .card-wrapper {
    background: #19296a;
}

.game-card .card-wrapper div img {
    transform-origin: center top;
    transition: .2s all ease-out;
}

.game-card:hover .card-wrapper div img {
    transform: scale(1.1);
}

.game-card:hover .card-wrapper .img-wrapper {
    background: #19296a;
}

.game-card:hover .card-wrapper .img-wrapper img {
    max-width: 90%;
}

.game-card:hover .card-wrapper .img-wrapper::before {
    background-color: #19296a;
}

.light-box {
    position: fixed;
    top: 0;
    z-index: 200;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
}

.light-box .content-box {
    background: #12161c;
    max-width: max-content;
    max-height: 100%;
    overflow-y: auto;
}

.greeting-box .greetings-wrapper {
    max-height: 170px;
    overflow-y: auto;
}

.preview-box img {
    animation: fadeIn .1s ease-out forwards;
}

.greeting-box .greetings-wrapper .img-wrapper img {
    max-width: 120px;
    filter: grayscale(.3);
    transition: .2s;
}

.greeting-box .greetings-wrapper .img-wrapper.active img {
    border: 1px solid #23ac23;
    filter: grayscale(0);
}

.greeting-box .greetings-wrapper img:hover {
    cursor: pointer;
    filter: grayscale(0);
}

.greeting-box .greetings-wrapper::-webkit-scrollbar {
    width: 20px;
}

.greeting-box .greetings-wrapper::-webkit-scrollbar-track {
    background-color: transparent;
}

.greeting-box .greetings-wrapper::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

.greeting-box .greetings-wrapper::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

.preview-box img {
    width: 100%;
    max-width: 500px;
}

.twitter iframe {
    transform: scale(1.2);
}

.footer-logo {
    max-width: 200px;
    display: block;
}

label {
    color: #fff;
}

.form-control {
    padding: 15px;
    background-color: #000;
    border: 1px solid #c0e2c7;
}

.form-control:focus {
    color: #6a99e5;
    background-color: #0c0c0c;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

.form-check-label {
    font-size: 1.1rem;
}

input[type='radio']:hover {
    cursor: pointer;
}

input[type='radio'] {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #c0e2c7;
    border-radius: 50%;
    outline: none;
    margin-right: 15px;
    background: #000000;
}

input[type='radio']:before {
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    margin: 30% auto;
    border-radius: 50%;
}

input[type='radio']:checked {
    background: #2e70b6;
}

input[type='radio']:checked:before {
    background: #132d47;
}

.close-modal {
    margin-left: auto;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background: none;
    outline: none;
    background-color: #282727;
    border: 1px solid #fff;
    color: #fff;
    transition: .2s all ease-in;
}

.close-modal:hover {
    cursor: pointer;
    color: #55c1e8;
    background-color: #000000;
    border: 1px solid #55c1e8;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next-icon {
    background: none;
    position: absolute;
    top: 50%;
    width: 3vmin;
    height: 3vmin;
    background: transparent;
    border-top: 1vmin solid white;
    border-right: 1vmin solid white;
    box-shadow: 0 0 0 lightgray;
    transition: all 200ms ease;
    right: 20px;
    opacity: .8;
    transform: translate3d(0, -50%, 0) rotate(45deg);
}

.carousel-control-prev-icon {
    background: none;
    position: absolute;
    top: 50%;
    width: 3vmin;
    height: 3vmin;
    background: transparent;
    border-top: 1vmin solid white;
    border-right: 1vmin solid white;
    box-shadow: 0 0 0 lightgray;
    transition: all 200ms ease;
    left: 20px;
    opacity: .8;
    transform: translate3d(0, -50%, 0) rotate(-135deg);
}

#pick-card {
    display: block;
    position: absolute;
    background: none;
    padding: 10px 15px;
    border: none;
    font-family: 'ZohoPuviSemBd', sans-serif;
    color: #000;
    background-color: #32D956;
    border-radius: 5px;
    bottom: 20px;
    left: 43.5%;
    z-index: 40;
    margin: 0 auto;
    animation: slidingUp .3s ease-out forwards;
    transition: .2s all ease-in;
}

#pick-card:hover {
    cursor: pointer;
    background-color: #23b56c;
}

.carousel:hover {
    cursor: pointer;
}

.carousel:hover #pick-card {
    display: block !important;
}

@keyframes slidingUp {
    0% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.rule-box {
    max-width: 600px !important;
}

.zsiq_floatmain {
    display: none !important;
}

.rule-box {
    min-width: 300px;
    border-radius: 10px;
    position: relative;
}

.rule-box ul {
    max-width: 900px;
    padding-left: 20px;
    margin: 0;
}

.rule-box ul li {
    color: #fff;
    font-size: 1.1rem;
}

.rule-box ul li::marker {
    font-size: 1.6rem;
    color: #dbc836;
}

.rule-box .close-modal {
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 15px;
}

.email-preview {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

.email-preview-wrapper {
    width: 600px;
}

.email-preview a {
    text-decoration: none;
    color: #2E8FC3;
}

.email-preview a:hover {
    color: #145c83;
}

.email-preview p {
    color: #1C1C1C;
}

.email-preview p a {
    font-weight: 500;
}

.email-preview .news-cta {
    background-color: #80B541;
}

.email-preview .news-cta:hover {
    background-color: #6c9936;
}

.email-preview .col-cta {
    width: 95%;
    padding: 10px 15px;
}

.email-preview .col-cta-pad {
    padding: 10px 8px;
}

@media only screen and (max-width: 480px) {
    .email-preview {
        width: 100%;
        overflow-x: hidden;
    }

    .email-preview table[class='email-preview-wrapper'] {
        width: 100% !important;
    }

    .email-preview-wrapper {
        width: 100% !important;
    }

    .email-preview .col-cta {
        width: 95%;
        padding: 10px 10px;
    }
}

.email-preview-wrapper {
    width: 600px;
    position: relative;
    overflow-x: hidden;
    max-height: 80% !important;
}

.email-preview-wrapper .close-modal {
    position: fixed;
    z-index: 10;
    top: 30px;
    right: 25%;
}

@media only screen and (max-width: 480px) {
    .email-preview {
        max-width: 100%;
    }

    .email-preview-wrapper .close-modal {
        top: 30px;
        right: 48%;
    }

    .email-preview-wrapper .close-modal {
        position: fixed;
        z-index: 10;
        top: 20px;
        right: 48%;
    }
}

.terms-cta {
    color: #ebb41e;
    transition: .2s all ease-out;
}

.terms-cta:hover {
    color: #eb8d36
}