@charset "UTF-8";

html {
    height: 100%;
}

body {
    height: 100%;
}

.navbar {
    margin-bottom: 0;
}

main {
    height: 85%;
    width: 100%;
    background-repeat:  no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    background: #40A0E050;
}
main .container {
    height: 100%;
    padding-top: 0;
    padding-bottom: 100px;
}

main .panel {
    top: 10.0em;
    position: relative;
    -webkit-border-radius: 10px;
}
@media (min-width: 1200px) {
    .container {
        width: 1170px !important;
    }
}
.panel-custom {
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 0 !important;
}
.panel-body-custom {
    padding: 10px;
}
.form-control-custom {
    height: 40px;
    border-radius: 0;
    border: none;
}
.label-custom {
    font-size: 15px;
    color: #003366;
    font-weight: bold !important;
}
.center-custom {
    width: 100%;
    text-align: center;
}
.button-custom {
    font-weight: 600;
    width: 100%;
}
.login-button {
    font-size: 15px;
    border-radius: 0;
    height: 40px;
    color: #ffffff;
    background-color: #3399FF;
}
.login-button:hover {
    color: #ffffff;
    background-color: #3399FF;
    opacity: 0.7;
}
.guest-button {
    font-size: 15px;
    border-radius: 0;
    height: 40px;
    color: #ffffff;
    background-color: #003366;
}
.guest-button:hover {
    color: #ffffff;
    background-color: #003366;
    opacity: 0.7;
}
.sign-up-button {
    font-size: 15px;
    border-radius: 0;
    height: 40px;
    color: #ffffff;
    background-color: #cc0066;
}
.sign-up-button:hover {
    color: #ffffff;
    background-color: #cc0066;
    opacity: 0.7;
}
.checkmark {
    position: absolute;
    top: 12px;
    left: 0;
    height: 13px;
    width: 13px;
    background-color: #003366;
}
.checkbox-custom:hover input ~ .checkmark {
    background-color: #003366;
}
  
.checkbox-custom input:checked ~ .checkmark {
    background-color: #003366;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-custom input:checked ~ .checkmark:after {
    display: block;
}
.checkbox-custom .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}