/************************** FONT FAMILY **************************/

* {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/************************** BOOTSTRAP **************************/

.bg-primary {
    background-color: #204490 !important;
}

.btn-primary {
    background-color: #204490 !important;
}

/************************** HTML BODY **************************/

html {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
}

/************************** BOOSTRAP MODAL **************************/

.modal-header {
    border-bottom: 0 none;
    font-size: 18px;
    font-weight: 500;
}

.modal-body {
    text-align: center;
    font-size: 18px;
    line-height: 25px;
    padding-left: 20px;
    padding-right: 20px;
}

.modal-footer {
    border-top: 0 none;
}

.modal-footer { 
    display: grid;
    justify-content: center;
}

.modal-footer button {
    padding: 5px 20px;
}

/************************** FORM **************************/

form .form-check-input,
form .form-check-label {
    cursor: pointer;
}

form .iti {
    width: 100%;
}

form .mobile-invalid-feedback {
    display: none;
    margin-top: 0.25rem;
    font-size: .875em;
    color: #dc3545;
}

/************************** BUTTON **************************/

button {
    text-transform: uppercase;
    font-weight: 600 !important;
    border: 0px !important;
    letter-spacing: 1px;
    font-size: 16px !important;
}

/************************** HEADER **************************/

#header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 25px;
    align-items: center;
    height: 60px;
    margin: 0px auto;
    max-width: 600px;
    padding: 0px 20px;
}

#header #header-menu {
    font-size: 23px;
    cursor: pointer;
}

#header #header-logo {
    display: grid;
    justify-content: center;
}

#header #header-logo img {
    width: 100px;
}

/************************** LANGUAGE **************************/

#language {
    display: grid;
    justify-content: flex-end;
    padding: 20px;
}

#language .header-dropdown-label {
    cursor: pointer;
    font-size: 15px;
}

#language .header-dropdown-label i {
    color: grey;
    padding-left: 5px;
}

#language .header-dropdown-item {
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
}

/************************** MENU **************************/

#menu-overlay {
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    transition: 0.5s;
    z-index: 199;
}

#menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 199;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    max-width: 400px;
    color: white;
    display: grid;
    grid-template-rows: 1fr auto;
}

#menu #menu-list {
    padding: 20px 40px;
}

#menu #menu-list ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

#menu #menu-list a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 10px 0px;
}

#menu #menu-list .icon-label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 20px;
    font-size: 20px;
    cursor: pointer;
}

#menu #menu-my-registration {
    display: none;
}

#menu #menu-logout {
    display: none;
    padding: 40px;
}

#menu #menu-logout .icon-label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 20px;
    font-size: 20px;
    cursor: pointer;
}

#modal-menu-logout-confirmation #menu-button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
}

/************************** BOX **************************/

#box-center {
    display: grid;
    justify-content: center;
}

@media only screen and (min-width: 600px) {
    #box {
        max-width: 600px;
        border: 1px solid lightgrey;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 60px;
    }
}

#box #banner img {
    width: 100%;
    display: block;
}

#box #box-padding {
    padding: 20px;
}

#box #title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

#box form button {
    margin-top: 60px;
    width: 100%;
}

#box form button #button {
    width: 100%;
}

#box form {
    margin-top: 30px;
    display: grid;
    row-gap: 15px;
}