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

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

/************************** BOOSTRAP **************************/

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

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

.text-primary {
    color: #2c0008 !important;
}

input[type="radio"]:checked {
    border: #2c0008;
    background-color: #2c0008 !important;
}

input[type="checkbox"]:checked {
    background-color: #2c0008 !important;
}

/************************** 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;
}

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

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

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

/************************** WRAPPER **************************/

.wrapper {
    margin: 0px auto;
}

@media only screen and (min-width: 600px) {
    .wrapper {
        max-width: 600px;
    }
}

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

header {
    background-color: white;
}

#header {
    height: 60px;
    display: grid;
    grid-template-columns: minmax(40px, auto) 1fr minmax(60px, auto);
    align-items: center;
    column-gap: 15px;
    padding: 0px 20px;
    box-sizing: border-box;
}

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

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

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

#header #header-id {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-weight: 600;
}

/************************** 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;
    background-color: #2c0008;
    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;
}

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

.form-check label {
    padding-left: 5px;
}

/************************** 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;
    }
}

#box .padding {
    padding: 20px;
}

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

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

#form .button {
    width: 100%;
    margin-top: 40px;
}

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


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

button {
    text-transform: uppercase;
    font-weight: 700 !important;
    border: 0px !important;
}

/************************** UPLOAD FILE **************************/
.two-col{
    display:grid;
    grid-template-columns: auto 1fr;
    column-gap:10px;
}

.three-col{
    display:grid;
    grid-template-columns: auto 1fr auto;
    column-gap:10px;
}

.two-col button, .three-col button{
    font-size:0.9rem !important;
}

.btn-grey {
    background-color: #efefef !important;
}