@font-face {
    font-family: Regular;
    src: url("../../fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: Bold;
    src: url("../../fonts/Roboto-Bold.ttf");
}

html,
body {
    height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
    font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif! important;
}
p {
  font-family: Helvetica;
}

* {
    font-family: Regular;
    box-sizing: border-box;
}

input,
select {
    padding: 10px;
    display: block;
    border: 1px solid rgba(6, 28, 28, .14);
    border-radius: 10px;
    outline: none;
    width: 100%;
}

.modal-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 500;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal {
    min-width: 300px;
    margin: 20px;
    background: #fff;
    border-radius: 5px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid grey;
}

.modal-body {
    padding: 15px;
}

.modal-close {
    cursor: pointer;
}

.form-input {
    margin-bottom: 10px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.modal-footer>*:nth-child(n + 2) {
    margin-left: 10px;
}

.button {
    border: none;
    text-align: center;
    padding: 5px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    width: 100%;
    font-size: 12px;
    line-height: 25px;
    transition: all .3s;
}

.button:hover {
    background: #00007a;
    color: #fff;
    border-color: transparent;
}

.button.grey {
    background: #999;
    color: #fff;
}

.button.blue {
    background: #00007a;
    color: #fff;
    border-color: transparent;
}

.button.blue:hover {
    color: #333;
    background: #fff;
    border: 1px solid #999;
}

.button:hover {
    opacity: .8;
}

.popup-bubble {
    /* Position the bubble centred-above its parent. */
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    /* Style the bubble. */
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    font-family: sans-serif;
    overflow-y: auto;
    max-height: 60px;
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
    /* Position the div a fixed distance above the tip. */
    position: absolute;
    width: 100%;
    bottom:
        /* TIP_HEIGHT= */
        8px;
    left: 0;
}

/* This element draws the tip. */
.popup-bubble-anchor::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* Center the tip horizontally. */
    transform: translate(-50%, 0);
    /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
    width: 0;
    height: 0;
    /* The tip is 8px high, and 12px wide. */
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top:
        /* TIP_HEIGHT= */
        8px solid white;
}

/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
    cursor: auto;
    height: 0;
    position: absolute;
    /* The max width of the info window. */
    width: 200px;
}
