body {
    margin: 0;
    position: relative;
    background: #ffffff;
    font-family: 'Raleway', sans-serif;
}

header {
    -webkit-text-size-adjust: 100%;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.375rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    box-sizing: border-box;
    display: block;
    margin-top: 0;
    transition: background-color 400ms ease, box-shadow 200ms ease;
    position: relative;
    border-bottom: 1px solid transparent;
    background-color: #404040;
    z-index: 301;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content {
    position: relative;
    padding: 2rem;
    display: flex;
    gap: 2rem;
}

.header-logo {
    padding: 1rem;
}

.logo {
    width: 280px;
    height: auto;
}

.heading {
    text-align: center;
    padding-top: 2rem;
}

.mysr-form {
    margin: 2rem 0;
    padding: 0.8rem;
    width: 100%;
}

.checkout .button {
    padding: 0.8rem 4rem;
}

.button {
    cursor: pointer;
    margin-top: 1rem;
    transition: all 200ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    border-radius: 100px;
    font-size: 1em;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    text-decoration: none;
    background-color: #f3b842;
    color: #fff;
    border: none;
}

.loader {
    display: none;
    margin-left: 0.4rem;
    border: 2px solid #ffffff;
    border-top: 2px solid #404040;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

.error {
    display: block;
    color: #ff0000;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tabby {
    align-self: center;
    margin: 2rem 0;
}

.tabby-logo {
    width: 90px;
}

.tabby-info {
    margin-top: 20px;
}

.tabby-fancy {
    display: inline-block;
    font-size: 40px;
    font-weight: 700;
    line-height: 42px;
    padding-bottom: 4px;
    background: linear-gradient(270deg, #00eba9 0%, #6bf 47.92%, #9450ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tabby-sub {
    font-size: 16px;
    font-weight: 400;
    margin: 12px 0;
    color: #292929;
}

.wrapper {
    position: relative;
}

.line {
    position: absolute;
    left: 49%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #0b0b0b;
    z-index: 1;
}

.wordwrapper {
    text-align: center;
    height: 12px;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -12px;
    z-index: 2;
}

.word {
    color: #1e1e1e;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px;
    font: bold 12px arial, sans-serif;
    background: #fff;
}

@media screen and (min-width: 768px) {
    .mysr-form {
        padding: 2rem;
        box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
        background-color: #ffce491f;
        max-width: 400px;
    }
}

@media screen and (max-width: 900px) {
    .content {
        flex-direction: column;
    }

    .wrapper {
        display: none;
    }
}

footer {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 400;
    padding: 2rem 0 1rem;
    background-color: #404040;
    color: #fff;
    width: 100%;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}