/************************** FONT FACE **************************/

@font-face {
    font-family: 'montserrat-regular';
    src: url('../assets/fonts/montserrat-regular.ttf'); 
}

@font-face {
    font-family: 'montserrat-bold';
    src: url('../assets/fonts/montserrat-bold.ttf'); 
}

* {
    font-family: 'montserrat-regular'
}

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

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

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

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

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

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

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

input[type="checkbox"]:checked {
    background-color: #d6ae59 !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;
}

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

.wrapper {
    width: 100%;
    margin: 0px auto;
}

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

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

header {
    height: 50px;
    margin-top: 10px;
}

header #header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 15px;
    width: 100%;
}

header .header-block {
    display: grid;
    align-items: center;
}

header #header-menu {
    padding: 0px 20px;
}

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

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

header #header-agent-code {
    padding: 0px 20px;
}

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

/************************** 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: white;
    overflow-x: hidden;
    transition: 0.5s;
    max-width: 400px;
    color: white;
}

#menu #menu-grid {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
    color: white;
}

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

#menu #menu-list #menu-ticket {
    display: none;
}

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

#menu #menu-list a {
    font-size: 19px;
    text-decoration: none;
    color: white;
    display: block;
    padding: 15px 40px;
    cursor: pointer;
}

#menu #menu-list .icon-label {
    display: grid;
    grid-template-columns: 50px 1fr;
}

#menu #menu-list i {
    padding-right: 20px;
}

#menu #logout {
    padding: 40px;
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-start;
    font-size: 18px;
}

#menu #logout #icon-label {
    display: grid;
    grid-auto-flow: column;
    column-gap: 15px;
    align-items: center;
    cursor: pointer;
}


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

#box-center {
    display: block;
}

@media only screen and (min-width: 650px) {
    #box-center {
        display: grid;
        justify-content: center;
    }
}

#box {
    overflow: hidden;
    background-color: white;
    max-width: 650px;
}

@media only screen and (min-width: 650px) {
    #box {
        width: 600px !important;
        border: 1px solid lightgrey;
        border-radius: 10px;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    }
}

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

#box-padding {
    padding: 20px;
}

#box>.block {
    margin: 0px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

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

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