@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500');

html, body {
    font-size: 0.875rem;
}
body {
    background-color: #2796e4;
    line-height: 1.3;
    padding: 0; margin: 0;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
h1, h2, h3, h4, h5 {
    font-weight: 300;
}
a, a:hover, a:focus {
    color: #ffffff;
    text-decoration: underline;
    font-style: italic;
    font-weight: 400;
}
div img {
    height: auto;
    max-width: 100%;
}
.content-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}
.header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
}
.content {
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.header .logo,
.content .logo {
    max-width: 450px;
}
.content-bottom {
    margin: 0 auto;
}
.social-icons {
    /*margin-top: 1.1rem !important;*/
}
.social-icon {
    display: inline-block;
    vertical-align: middle;
    width: 12%;
    height: auto;
}
.social-icon + .social-icon {
    margin-left: 10%;
}
.social-icon img {
    max-height: 28px;
    width: auto;
}
.content-footer {
    position: relative;
    width: 100%;
}
.copyright {
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
}


/* UTILITIES */

.text-center {
    text-align: center;
    margin: 0 auto;
}
.text-center img {
    display: inline-block;
}
.text-medium {
    font-size: 1.125rem;
}
.text-large {
    font-size: 1.3rem;
}
.text-larger {
    font-size: 1.5rem;
}
.error-item {
    font-size: 0.8rem;
    color: #ff9ed2;
    padding: 0.5rem 1.25rem 0;
}


/* FORM ELEMENTS */

.form-group {
    margin-bottom: 1rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}
.form-control {
    background-color: #32a0e7;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 2px;
    font-weight: 300;
    font-size: 1.25rem;
    padding: 0.875rem 1.25rem;
    height: auto;
}
.form-control:focus {
    background-color: #32a0e7;
    color: #ffffff;
    border-color: #fff;
    box-shadow: 0 0 0 .2rem rgba(255, 255, 255, 0.25);
}
.form-control::placeholder {
    color: #ffffff;
    font-weight: 300;
}
.custom-control {
    padding-left: 2.5rem;
}
.custom-control-label {
    vertical-align: center;
    padding-top: 3px;
    font-size: 1.25rem;
}
.custom-control-label::before {
    background-color: #32a0e7;
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 2px !important;
    width: 1.5rem;
    height: 1.5rem;
    left: -2.5rem;
}
.custom-control-label::after {
    width: 1.5rem;
    height: 1.5rem;
    left: -2.5rem;
}
.custom-control-input {
    width: 1.5rem;
    height: 1.75rem;
}
.btn {
    border-radius: 1.4rem;
    padding: .3rem 3rem;
    font-size: 1.25rem;
}
.btn-light {
    color: #2796e4;
    font-weight: 500;
}

iframe#iframe-id {
    display: inherit;
    height: 0; width: 0;
    margin: 0; padding: 0;
    border: 0;
}


/* TERMS & CONDITIONS MODAL */

#legalModal .modal-dialog {
    max-width: 800px;
}
#legalModal .modal-content {
    box-shadow: 0 11px 12px #00000042;
}
#legalModal .modal-dialog .modal-body {
    padding: 0 2.5rem 1.25rem;
}
#legalModal .modal-dialog .modal-header {
    border-bottom: none;
}
#legalModal .modal-dialog .modal-header h3 {
    color: #37474F;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}
#termsAccordion .card {
    border: none;
    border-top: 1px solid #b1c0c7;
    border-bottom: 1px solid #b1c0c7;
    border-radius: 0;
}
#termsAccordion .card + .card {
    border-top: none;
}
#termsAccordion .card-body {
    padding: 0 0 1.25rem 0;
}
#termsAccordion .card-header {
    padding:  1.25rem 0;
    position: relative;
    background-color: transparent;
    border-bottom: none;
}
#termsAccordion .card-header button .down-arrow:before {
    content: '\2023';
    width: 10px;
    height: 10px;
}
#termsAccordion .card-header button .down-arrow {
    position: absolute;
    top: 15px;
    right: 20px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    color: #777777;
    font-size: 1.6rem;
}
#termsAccordion .card-header button.collapsed .down-arrow {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

#termsAccordion .card-header button {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 0;
    font-size: 1.375rem;
}
#termsAccordion .card-header button:focus {
    box-shadow: none;
    text-decoration: none;
}
#termsAccordion .card-header button:hover {
    text-decoration: none;
}
#termsAccordion .card-header button,
#termsAccordion .card-body {
    color: #37474F;
}


/* MEDIA QUERIES */

@media (min-width: 768px) {
    html, body {
        font-size: 0.9375rem;
    }
    .header {
        padding-top: 75px;
    }
    .content {
        /*padding-top: 75px;*/
    }
}
@media (min-width: 1024px) {
    html, body {
        font-size: 1rem;
    }
    .copyright {
        text-align: right;
        padding-right: 35px;
    }
}
@media (min-width: 1025px) {
    .header {
        padding-top: 75px;
    }
    .content {
        width: 80%;
        /*padding-top: 75px;*/
    }
}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
    .header {
        height: 25vh;
    }
    .content-wrapper {
        height: 70vh;
    }
    .content {
        width: 100%;
        margin: 0 auto;
        position: absolute;
        top: 40%; left: 50%;
        transform: translate(-50%, -50%);
    }
    .content-bottom {
        margin: 0 auto;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    .content-footer {
        height: 5vh;
    }
    .copyright {
        margin: 0 auto;
        position: absolute;
        bottom: 20px;
        right: 35px;
        padding: 0 !important;
    }
}
@media (min-width: 1440px)
and  (min-height: 875px) {
    .header {
        height: 25vh;
    }
    .content-wrapper {
        height: 70vh;
    }
    .content {
        width: 80%;
        margin: 0 auto;
        position: absolute;
        top: 40%; left: 50%;
        transform: translate(-50%, -50%);
    }
    .content-bottom {
        margin: 0 auto;
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    .content-footer {
        height: 5vh;
    }
    .copyright {
        margin: 0 auto;
        position: absolute;
        bottom: 20px;
        right: 35px;
        padding: 0 !important;
    }
}