:root {
    --bs-body-font-family: 'Lato', sans-serif;
    /*--bs-body-font-size: 18px;*/
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 1.75rem;
    }
}

body {
    background-color: #192F3D;
    padding: 0;
    margin: 0;
    font-size: 18px;
    color: #fff;
    background-size: cover;
}

.modal {
    --bs-modal-bg: #16609d;
    /*--bs-modal-border-color: blue;*/
    color: #fff;
}

.page-container {
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    min-height: 100vh;
}

@media (max-width: 1499px) {
    .page-container {
        width: 100%;
    }
}

@media (max-width: 980px) {
    .page-container {
        display: block;
    }
}

header {
    width: 70%;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 980px) {
    header {
        display: block;
        width: 100%;
    }
}

@media (max-width: 1199px) {
    header {
        width: 90%;
    }
}

.logo {
    display: block;
    margin: 0 20px;
    flex: 0 0 50%;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 980px) {
    .logo {
        margin: 0 auto 1rem;
    }
}

.logo img {
    max-width: 100%;
}

@media (min-width: 500px) and (max-width: 980px) {
    .logo img {
        max-width: 50%;
    }
}

.slogan {
    padding: 0 2rem;
    flex: 1 1 auto;
}

.slogan h2,
.slogan h3 {
    text-align: center;
    width: 100%;
    font-weight: bold;
}

.slogan h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.intro {
    width: 100%;
    padding: 0 8%;
    font-size: 1.25rem;
    box-sizing: border-box;
}

@media (max-width: 980px) {
    .intro {
        padding: 0 2em;
    }
}

.intro p {
    padding: 1rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin: 0 auto;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.buttons .button {
    flex: 0 0 40%;
}

@media (max-width: 980px) {
    .buttons .button {
        flex: 0 0 100%;
    }
}

.buttons .main a {
    color: #1a72ba;
    border-color: #1a72ba;
    display: block;
    transition: all ease .5s;
}

.buttons .button.main a, .buttons .tracking.button .tab > label {
    font-size: 1.5rem;
    line-height: 1.2em;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: .25em .5em;
    border: 2px solid #1a72ba;
    transition: all ease .5s;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

@media (max-width: 1499px) {
    .buttons .button.main a, .buttons .tracking.button .tab > label {
        font-size: 1.25rem;
    }
}

.tab {
    position: relative;
    margin-bottom: 1px;
    width: 100%;
    color: blue;
    overflow: hidden;
}

input#tab-one {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.button.tracking .tab input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.button.tracking .tab input[type="checkbox"]:checked + label::after {
    transform: rotate(315deg);
}

.button.tracking .tab > label {
    position: relative;
    display: block;
    cursor: pointer;
    line-height: 1.2em;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: .25em .5em;
    border: 2px solid #ea222d;
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: 1.25rem;
    color: #ea222d;
    transition: all ease .5s;
}

.button.tracking .tab input[type="checkbox"] + label::after {
    content: "+";
}

.button.tracking .tab > label::after {
    position: absolute;
    right: 0.2em;
    top: 0.2em;
    display: block;
    width: 1.2em;
    height: 1.2em;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    transform-origin: center;
    text-align: center;
}

.buttons .main a:hover {
    transition: all ease .5s;
    color: #fff;
    background-color: #1a72ba;
}

.buttons .tracking.button .tab > label {
    color: #ea222d;
    border-color: #ea222d;
    transition: all ease .5s;
}

.buttons .tracking.button .tab > label:hover {
    transition: all ease .5s;
    color: #fff;
    background-color: #ea222d;
}

.buttons .tracking.button .tabblue > label:hover {
    color: #fff !important;
    transition: all ease .5s;
    background-color: #1a72ba !important;
}

.tab-content {
    max-height: 0;
    overflow: hidden;
    background: #ea222d;
    -webkit-transition: max-height .35s;
    -o-transition: max-height .35s;
    transition: max-height .35s;
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 1rem;
}

input:checked ~ .tab-content {
    max-height: 100em;
}

.tab-content #loggy label {
    position: relative;
    padding: 0.5rem 0 0 1em;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    line-height: 1.2em;
    text-align: center;
    display: inline-block;
}

.tab-content input {
    display: block;
    width: 80%;
    margin: 9px auto;
    font-size: 1rem;
    padding: 3px;
}

.tab-content .help {
    font-size: 1rem;
    line-height: 1.2em;
    color: #fff;
    text-align: center;
}

.tab-content button {
    display: block;
    font-size: 1.25rem;
    margin: .25em auto;
    color: #ea222d;
    background-color: #fff;
    border: 1px solid #ea222d;
    text-transform: uppercase;
    padding: .25em .5em;
    transition: all ease .5s;
    cursor: pointer;
}

#rma_portal:hover {
    color: #ea222d !important;
    background-color: #1a72ba;
    transition: all ease .5s;
}

.btn-close {
    background: #f2f2f200 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

.btn.btn-outline-light.login {
    --bs-btn-color: #ea222d;
    --bs-btn-border-color: #ea222d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #ea222d;
    --bs-btn-hover-border-color: #ea222d;
}

.error {
    background: #ea222d;
    padding: 10px;
    border-radius: 5px;
    width: 80%;
    margin: 5px auto;
    text-align: center;
}