/*Case-study modal*/
.add-product {
    transition: all 0.3s ease;
    background-color: #ffc145;
    height: 144px;
    width: 144px;
    border-radius: 72px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .07);
    cursor: pointer;
}
.add-product.open {
    background-color: #fafafa;
    padding: 18px 32px;
    border-radius: 5px;
    width: 420px;
    height: 398px;
    cursor: default;
}
.add-product.open form {
    opacity: 1;
    transition: opacity 0.1s ease;
    transition-delay: 0.3s;
    height: auto;
}
.add-product .button-copy {
    text-align: center;
    line-height: 144px;
    text-transform: uppercase;
    font-weight: bold;
    color: #f7f7f7;
}
.add-product form {
    transition: none;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.add-product .cancel {
    font-size: 12px;
    text-align: center;
    margin-top: 1em;
}
.add-product .cancel span {
    cursor: pointer;
}
.add-product .cancel span:hover {
    text-decoration: underline;
}
.submit-button {
    display: block;
    background-color: #3498db;
    height: 40px;
    border-radius: 20px;
    line-height: 36px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.875em;
    border: none;
    font-weight: 700;
    padding: 0 34px;
    margin: 0 auto;
}
.submit-button img {
    position: relative;
    top: 3px;
    right: 6px;
}
.submit-button:hover {
    background-color: #217dbb;
    cursor: pointer;
}
.featured-note {
    color: #949494;
    font-size: 12px;
    margin: 4px 0px;
    line-height: 18px;
    font-style: italic;
}
form * {
    outline: none;
}
label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    user-select: none;
}
label.emoji input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 21px;
    margin: 0;
    display: none;
}
label.emoji input + span:after {
    content: "😶";
    font-size: 18px;
    top: 2px;
    left: 2px;
    position: relative;
    height: 18px;
    display: inline-block;
}
label.emoji input:checked + span:after {
    content: "😀";
}
.form--field {
    width: 420px;
    margin: 10px 0;
}
.form--field.-short {
    width: 120px;
}
.form--price {
    position: absolute;
    line-height: 38px;
    width: 16px;
    color: #c7c7c7;
    text-align: center;
}
.form--price + input {
    padding-left: 14px;
}
.form--container {
    width: 420px;
}
.form--container.-inline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: -12px;
}
.form--element {
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 3px;
    font-size: 14px;
    line-height: 28px;
    padding: 0 4px;
    color: #3d3d3d;
    width: 100%;
    margin: 4px 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
.form--element:focus {
    border: 1px solid #ffc145;
    border-radius: 2px;
}
.form--element:not(.texteare) {
    height: 30px;
}
.form--element.textarea {
    height: 80px;
    resize: none;
}
html, body {
    height: 100%;
    margin: 0;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background-color: #f3f4f5;
    cursor: default;
}
a {
    text-decoration: none;
    cursor: pointer;
}
::selection {
    background-color: #f5617a;
    color: #fff;
}
::-moz-selection {
    background-color: #f5617a;
    color: #fff;
}
