/************************** FONT **************************/

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Light.ttf');
    font-display: block;
    font-weight: 300;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Regular.ttf');
    font-display: block;
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-SemiBold.ttf');
    font-display: block;
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-Bold.ttf');
    font-display: block;
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/assets/fonts/Montserrat-ExtraBold.ttf');
    font-display: block;
    font-weight: 700;
}

* {
    font-family: 'Montserrat';
    box-sizing: border-box;
    line-height: 1.5;
    font-weight: 400;
}

/************************** ROOT **************************/

:root {
    --primary-color: #D32F6F;
}

/************************** HTML **************************/

html {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
}

/************************** PAGE **************************/

#page-title {
    padding-bottom: 30px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

/************************** IMG **************************/

img {
    display: block;
}

/************************** BLUE HIGHLIGHT **************************/

input,
textarea,
button,
select,
a,
img,
div
{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  outline: none;
}

/************************** HREF **************************/

.href {
    color: #0000EE;
    cursor: pointer;
}

.href:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.href:active {
    opacity: 1;
}

/************************** WRAPPER **************************/

.wrapper {
    margin: 0px auto;
}

@media only screen and (min-width: 600px) {
    .wrapper {
        max-width: 600px;
    }
}

/************************** BOX **************************/

#box-center {
    width: 100%;
}

@media only screen and (min-width: 600px) {
    #box-center {
        display: grid;
        justify-content: center;
    }
}

#box {
    width: 100%;
    margin-bottom: 80px;
}

#box.no-tab {
    margin-bottom: 0px;
}

@media only screen and (min-width: 600px) {
    #box {
        max-width: 600px;
        min-width: 600px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
        border: 1px solid lightgrey;
    }
}

#box #banner img {
    width: 100%;
}

/************************** AGENT INFO **************************/

.agent-info {
    display: grid;
    grid-template-columns: auto auto 1fr;
    column-gap: 15px;
    row-gap: 10px;
}

.agent-info .value.email {
    word-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
}