@font-face {
    font-family: "Ubuntu";
    font-weight: 100 200;
    font-style: normal;
    src: url("/app/theme/assets/font/Ubuntu-Light.ttf") format("opentype");
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 100 200;
    font-style: italic;
    src: url("/app/theme/assets/font/Ubuntu-LightItalic.ttf") format("opentype");
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 300 400;
    font-style: normal;
    src: url("/app/theme/assets/font/Ubuntu-Regular.ttf") format("opentype");
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 300 400;
    font-style: italic;
    src: url("/app/theme/assets/font/Ubuntu-RegularItalic.ttf") format("opentype");
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 500 600;
    font-style: normal;
    src: url("/app/theme/assets/font/Ubuntu-Medium.ttf") format("opentype");
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 500 600;
    font-style: italic;
    src: url("/app/theme/assets/font/Ubuntu-MediumItalic.ttf") format("opentype");
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 700 800;
    font-style: normal;
    src: url("/app/theme/assets/font/Ubuntu-Bold.ttf") format("opentype");
}

@font-face {
    font-family: "Ubuntu";
    font-weight: 700 800;
    font-style: italic;
    src: url("/app/theme/assets/font/Ubuntu-BoldItalic.ttf") format("opentype");
}

h1 {
    margin: 0;
    font-size: 21pt;
    font-weight: 200;
}

body {
    background-color: rgb(211, 249, 239);
    font-family: 'Ubuntu';
    font-size: 11pt;
    font-weight: 200;
}

img {
    max-width: 100%;
    height: auto;
}

#cover {
    margin-top: 13px;
    border-radius: 8px;
    overflow: hidden;
}

#cover img {
    border-radius: 8px;
}

#form-wrapper {
    max-width: 90vw;
    width: 640px;
    margin: auto;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 0;
}

button {
    box-shadow: 0 2px 1px -1px rgba(0,0,0,0.2),0 1px 1px 0 rgba(0,0,0,0.141),0 1px 3px 0 rgba(0,0,0,0.122);
    background-color: #fff;
    color: #1a73e8;
    border: 0;
    margin-right: 14px;
    transition: background-color .2s .1s;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .25px;
    line-height: 36px;
    outline: none;
    padding: 0 24px;
    color: rgb(0, 162, 60);
}

.input-wrapper .label {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
}

input, select {
    border-radius: 4px;
    border: 1px solid #dadce0;
    outline: none;
    width: 100%;
    color: #444;
    font-size: 18px;
    font-weight: 400;
    padding: 8px 16px;
    transition: box-shadow 0.2s linear;
    background-color: #fff;
}
button:last-child {
    margin-right: 0;
}

button:hover {
    background-color: rgba(0, 162, 60, 0.04)
}

button:disabled {
    background-color: #d1d1d1;
    cursor: initial;
    /* color: white; */
}

.box {
    background-color: white;
    color: rgb(32,33,36);
    margin-top: 12px;
    border-radius: 8px;
}

.box-body {
    border: 1px solid rgb(218,220,224);
    padding: 22px 24px 24px 24px;
    border-radius: 8px;
}

.box.titled-box .box-body,
.box.hat-box .box-body {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.box.hat-box .box-body.with-footer {
    border-radius: 0;
    margin-bottom: -1px;
}

/* Hat box */

.hat {
    background-color: rgb(33, 224, 175);
    border-radius: 8px 8px 0 0;
    height: 10px;
}

/* Title box */

.titled-box .hat {
    height: initial;
    padding: 12px 24px;
    color: #000;
    font-size: 12pt;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: bold;
}

.input-wrapper {
    margin-bottom: 25px;
}

.input-wrapper .description {
    margin-bottom: 10px;
}

* {
    box-sizing: border-box;
}

input:focus,
select:focus {
    -webkit-box-shadow: 0px 0px 7px 5px #21E0AF;
    box-shadow: 0px 0px 7px 5px #21E0AF;
}

.ajax-search {
    position: relative;
}

.ajax-search input:focus + ul {
    -webkit-box-shadow: 0px 0px 7px 5px #21E0AF;
    box-shadow: 0px 0px 7px 5px #21E0AF;
}

.ajax-search ul {
    position: absolute;
    top: 100%;
    z-index: 99;
    background-color: white;
    width: 100%;
    border: 1px solid #dadce0;
    margin-top: -4px;
    padding: 0;
    clip-path: inset(0px -5px -5px -5px);
}

li {
    list-style: none;
    padding: 8px 16px;
}

.ajax-search li.selected, .ajax-search li:hover {
    background-color: #21e0af;
}

.ajax-search li {
    cursor: pointer;
}

.ajax-search ul:empty {
    display: none;
}

.content-box {
    border-radius: 8px;
}

input[type="radio"] {
    display: inline-block;
    width: auto;
    margin-right: 10px;
}

label {
    cursor: pointer;
}

.button-group {
    /* display: grid; */
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.button-group button {
    display: block;
    width: 100%;
}

.btn-w-description {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 15px;
    row-gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.button-group > button {
    /* display: inline-block; */
    width: auto;
    margin-bottom: 15px;
}