/* Melange Maestro style */

/* --------Fonts-------- */
@font-face {
    font-family: "November Sky";
    font-weight: bold;
    src: url("fonts/3847C5_0_0.eot");
    src: 
        url("fonts/3847C5_0_0.woff2") format("woff2"),
        url("fonts/3847C5_0_0.woff") format("woff"),
        url("fonts/3847C5_0_0.ttf") format("truetype");
}

/* --------Main-------- */
body {
    color: white;
    margin: 0;
	padding: 0;
    font-family: helvetica, arial, sans-serif;
    font-weight: 200;
    background:
        url(images/tri-pattern.png),
        -webkit-linear-gradient(left, #495056 0%, #899198 25%, #747e88 50%,#899198 75%, #495056 100%),
        #495056;
    background:
        url(images/tri-pattern.png),
        -o-linear-gradient(left, #495056 0%, #899198 25%, #747e88 50%,#899198 75%, #495056 100%),
        #495056;
    background:
        url(images/tri-pattern.png),
        -ms-linear-gradient(left, #495056 0%, #899198 25%, #747e88 50%,#899198 75%, #495056 100%),
        #495056;
    background-size: 
        65px 56px,
        cover, 
        auto;
    background-position: 50% 50%;
}
a {
    color: white;
    text-decoration: none;
}
.centerbox {
    position: relative;
    width: 300px;
    height: 300px;
    margin: auto;
    top: 50%;
    -webkit-transform: translateY(-60%);
    -o-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
}
.centerbox p {
    text-align: center;
    font-weight: 100;
}
.appstore {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    display: block;
    width: 202px;
    height: 60px;
    background-image: url(images/AppStoreBadgeUS-UK135x40.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.logosmall {
    width: 110px;
    height: 110px;
    margin: auto;
    background-image: url(images/mmlogo-black.svg);
}

.writing {
    font-family: 'Yellowtail', cursive;
    font-size: 2em;
    line-height: 1.1em;
}

.mmfont {
    font-family: "November Sky";
    font-size: 2.5em;
    color: black;
    margin-top: 0.25em;
}
/* --------Long Copy-------- */
.tldr {
    margin: 15px 30px;
}
.tldr h2 {
    font-weight: 100;
    font-size: 2.2em;
}
.tldr h4 {
    font-size: 1.1em;
    padding-top: 2em;
    font-weight: 500;
}

.footer {
    position: absolute;
    width: 100%;
    bottom: 0px;
    text-align: center;
    margin-bottom: 30px;
}
.footer span, .diamond {
    padding: 0 10;
}

/* --------Feedback Form-------- */
.fullscreen {
    position: fixed;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
}
.modal {
    position: relative;
    margin: auto;
    background-color: rgba(21,21,21,0.9);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    width: 400px;
}
.xclose {
    position: absolute;
    width: 28px;
    height: 28px;
    padding: 8px;
    margin: 10px;
    right: 0;
}
.xclose::before, .xclose::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 22px;
    width: 1px;
    height: 32px;
    background-color: #aaa;
    transform: rotate(45deg);
}
.xclose::before {
    transform: rotate(-45deg);
}
.contactform {
    padding: 50px;
    padding-top: 44px;
    display: flex;
    flex-direction: column;
/*    overflow-y: scroll;*/
    font-family: "Avenir Next", AvenirNext, Helvetica Neue, helvetica, sans-serif;
}
.contactform input, .contactform textarea, .contactform button {
    font-size: 1em;
    line-height: 1.375;
    font-weight: 300;
}
.contactform input, .contactform textarea {
    box-sizing: border-box;
    color: white;
    background-color: rgba(0,0,0,0.3);
    margin: 20px 0;
    margin-top: 5px;
    margin-bottom: 0;
    padding: 10px 8px;
    min-width: 125px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 2px;
    transition: border-color .5s ease-out;
    
}
.contactform input::placeholder {
    color: rgba(255,255,255,0.2); 
}
.contactform input:required:focus:invalid {
    border-color: rgba(214,0,0,1.0);
}
.contactform input:invalid, .contactform textarea:invalid {
/*    border-color: rgba(214,36,98,1.0);*/
}
.contactform textarea {
    resize: vertical;
}
.contactform button {
    align-self: flex-end;
    width: 100px;
    background-color: #313436;
/*    background-color: #0091DE;*/
    border: none;
    padding: 8px;
    font-weight: 500;
}
.enabled {
    background-color: #82CC00 !important;
}
.formerror {
    background-color: rgba(214,0,0,1.0);
    margin-bottom: 20px;
    text-indent: 10px;
    border-radius: 0 0px 2px 2px;
/*    padding: 1px 10px;*/
    font-size: 0.8em;
    font-weight: 300;
}
#form-response {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 300px;
    transform: translate(-50%,-50%)
}