body {
    /* 
        Update for smplr embed
    */
    margin: 15px;
}

main,
.nonexistent {
    font-family: sans-serif;
    /*background: linear-gradient(45deg, #d4f2ff 50%, #bd9ccf);*/
    /*height: 100%; 
  width: 100%;*/
}

.page-header {
    padding: 3em 0;
}

.page-header h1 {
    font-weight: 300;
    text-align: center;
}

.custom-header .content {
    margin-bottom: -300px;
}

.custom-header .inner-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: linear-gradient(45deg, rgba(189, 156, 207, 0) 50%, rgba(189, 156, 207, 1));
}

.custom-header .inner-content .max-width-container {
    position: relative;
    z-index: 1;
}

.custom-header .inner-content .grid-row {
    display: block;
}

.custom-header .inner-content .grid-row h1 {
    text-align: center;
    animation: 1s fade-in-up 0s ease both;
}

.slices-container .html {
    display: none;
}

.editor {
    --spacing: 40px;
    --color: #28bbbb;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 50px;
    /*border: 1px #ccc solid;*/
    border-radius: var(--spacing, 40px);
    padding: var(--spacing, 40px);
    animation: 1s fade-in-up .15s ease both;

    /* 
        Box Shadow update for smplr embed
    */
    box-shadow: 0px 0px 11px var(--color);
    /*background: #28bbbb;*/
}

.editor>div {
    margin: 10px 0;
}

.editor>div label {
    font-size: 14px;
    color: #4c4d4f;
    display: inline-block;
    min-width: 95px;
    text-align: right;
}

.editor>div input {
    border: none;
    border-radius: 3px;
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #4c4d4f;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.05);
}

.editor>div input[type="text"] {
    width: calc(50% - 150px);
}

.editor .note {
    color: #666;
    font-size: 12px;
}

.editor .note::before {
    content: "i";
    border: 1px solid #888;
    color: #888;
    border-radius: 1em;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    text-align: center;
    line-height: 1.33;
    margin-right: 5px;
}

.editor .logoheader {
    color: #4c4d4f;
    text-align: center;
    font-size: 14px;
    margin-top: 1.5em;
}

.editor .logoselector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
}

.editor .logoselector img {
    max-width: calc(25% - 20px);
    transition: 0.3s ease all;
    opacity: 0.35;
    cursor: pointer;
}

.editor .logoselector img:hover {
    opacity: 0.65;
}

.editor .logoselector img.selected {
    opacity: 1;
}

h2 {
    max-width: 700px;
    margin: 0 auto;
    color: #4c4d4f;
    animation: 1s fade-in-up .3s ease both;
}

#meltwater-email {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
    background: #fff;
    animation: 1s fade-in-up .45s ease both;
}

#hide {
    display: none;
}

.copy {
    text-align: center;
    margin-top: 50px;
    animation: 1s fade-in-up .6s ease both;
}

.copy button {
    font-size: 16px;
    color: #4c4d4f;
    padding: 10px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translate(0, 30px);
    }
}