@font-face {
    font-family: 'Montserrat Light';
    src: url('../fonts/MontserratLight.eot'); /* IE9 Compat Modes */
    src: url('../fonts/MontserratLight.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/MontserratLight.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/MontserratLight.woff') format('woff'), /* Pretty Modern Browsers */ url('../fonts/MontserratLight.ttf') format('truetype'), /* Safari, Android, iOS */
}


/*
 * Common
 */

html, body {
    font-family: 'Montserrat Light', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow-wrap: break-word;
    overflow: hidden;
}

body {
    background: -o-repeating-linear-gradient(
            45deg,
            #fefefe,
            #fefefe 10px,
            #ffffff 10px,
            #ffffff 20px
    );
    background: repeating-linear-gradient(
            45deg,
            #fefefe,
            #fefefe 10px,
            #ffffff 10px,
            #ffffff 20px
    );
}

a {
    text-decoration: none;
    color: #333333;
    padding: 10px;
    border-bottom: 1px solid transparent;
}

a:hover {
    border-bottom: 1px solid #CC0033;
}

.hover-no-border:hover {
    border: 0;
}

.text-center {
    text-align: center;
}

/**
 * Navigation
 */

.nav {
    display: -ms-grid;
    display: grid;
    padding: 20px 0;
    color: #333333;
    -ms-grid-columns: 2fr 2fr 1fr 2fr 2fr;
    grid-template-columns: 2fr 2fr 1fr 2fr 2fr;
    justify-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #CC0033;
}

.nav a, .nav > div {
    text-align: center;
    cursor: pointer;
    font-size: 1.2em;
}

.mobile-menu-ham {
    display: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: 5px;
}

#mobile-menu-close {
    display: none;
}

.mobile-menu-ham > svg {
    width: 40px;
    height: 40px;
}

@media only screen and (max-width: 800px) {
    .nav {
        -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .logo {
        -ms-grid-row: 1;
        grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-column: 1 / 5;
    }
}

@media only screen and (max-width: 700px) {
    .nav {
        -ms-grid-columns: 1fr 100px;
        grid-template-columns: 1fr 100px;
        justify-items: normal;
    }

    .nav > a, .nav > div:not(.logo):not(.mobile-menu-ham) {
        display: none;
    }

    .mobile-menu-ham {
        display: block;
    }

    .logo {
        -ms-grid-row: 1;
        grid-row: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-column: 1 / 2;
    }
}

.responsive-menu {
    position: absolute;
    display: none;
    top: 150px;
    padding-top: 30px;
    height: -webkit-calc(100% - 180px);
    height: expression(100% - 180px);
    height: -o-calc(100% - 180px);
    height: calc(100% - 180px);
    width: 100%;
    background: -o-repeating-linear-gradient(
            45deg,
            #fefefe,
            #fefefe 10px,
            #ffffff 10px,
            #ffffff 20px
    );
    background: repeating-linear-gradient(
            45deg,
            #fefefe,
            #fefefe 10px,
            #ffffff 10px,
            #ffffff 20px
    );
    z-index: 20;
    color: #333333;
    overflow: auto;
}

.responsive-menu a, .responsive-menu > div {
    text-align: center;
    cursor: pointer;
    display: block;
    font-size: 1.8em;
    margin-top: 30px;
}

.responsive-menu > div a {
    display: none;
    font-size: 0.8em;
}

.responsive-menu > div:active a, .responsive-menu > div:focus a, .responsive-menu > div:hover a {
    display: block;
}

.responsive-menu > div > a {
    margin: 0 40px 0 40px;
    color: #CC0033;
}


.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    font-size: 0.8em;
    padding: 20px 0;
    margin-left: -40px;
    z-index: 1;
}

.dropdown-content a {
    color: #333333;
    margin-top: 10px;
    background: #ffffff;
    background: -o-linear-gradient(45deg, transparent 0%, transparent 17%, #ffffff 17%, #ffffff 83%, transparent 83%, transparent 100%);
    background: linear-gradient(45deg, transparent 0%, transparent 17%, #ffffff 17%, #ffffff 83%, transparent 83%, transparent 100%);
    padding: 12px 60px;
    text-decoration: none;
    border: none;
    display: block;
    text-align: center;
}

.dropdown-content a:hover {
    background: -o-linear-gradient(45deg, transparent 0%, transparent 17%, #333333 17%, #333333 83%, transparent 83%, transparent 100%);
    background: linear-gradient(45deg, transparent 0%, transparent 17%, #333333 17%, #333333 83%, transparent 83%, transparent 100%);
    color: #ffffff;
}

@media only screen and (max-width: 700px) {
    .dropdown-content {
        width: 100vw;
        padding: 20px 0;
        margin-left: 0px;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .dropdown-content a {
        background: #333333;
        color: #ffffff;
        width: 100%;
        padding: 20px;
    }

    .dropdown-content a:hover {
        background: #ffffff;
        color: #333333;
    }
}

.dropdown:hover .dropdown-content {
    display: block;
}

.logo, .logo img {
    height: 100%;
    max-height: 80px;
    text-align: center;
}

/**
 * Body
 */

.container {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 150px 1fr 80px;
    grid-template-rows: 150px 1fr 80px;
    justify-items: center;
    height: 100%;
    background-attachment: fixed;
    overflow: hidden;
}

@media only screen and (max-width: 700px) {
    .container {
        -ms-grid-rows: 150px 1fr 80px;
        grid-template-rows: 150px 1fr 80px;
    }
}


.container.container-blue {
    background: -o-repeating-linear-gradient(
            45deg,
            #90caf9,
            #90caf9 10px,
            #90c9f6 10px,
            #90c9f6 20px
    ) scroll;
    background: repeating-linear-gradient(
            45deg,
            #90caf9,
            #90caf9 10px,
            #90c9f6 10px,
            #90c9f6 20px
    ) scroll;
    color: #333333;
}

.container.container-green {
    background: -o-repeating-linear-gradient(
            45deg,
            #c8e6c9,
            #c8e6c9 10px,
            #c6e7c7 10px,
            #c6e7c7 20px
    ) fixed;
    background: repeating-linear-gradient(
            45deg,
            #c8e6c9,
            #c8e6c9 10px,
            #c6e7c7 10px,
            #c6e7c7 20px
    ) fixed;
    color: #333333;
}

.presentation-box {
    width: 100%;
    height: 100%;
    margin: 30px 0;
    overflow: auto;
}

/**
 * Home page
 */

.starting-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
}

.starting-box.no-center {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.intro-text {
    margin-left: 50px;
}

.intro-text.bottom-box {
    margin-bottom: 100px;
}

.intro-text h1 {
    font-size: 3.5em;
    font-weight: 200;
}

.intro-text h1 b {
    font-weight: 700;
}

.intro-text span {
    font-size: 1.5em;
}

@media only screen and (max-width: 1050px) {
    .intro-text h1 {
        font-size: 2.5em;
    }

    .intro-text span {
        font-size: 1em;
    }
}

@media only screen and (max-width: 700px) {
    .starting-image {
        -ms-grid-column-span: 2;
        grid-column: span 2;
        display: none;
    }

    .intro-text {
        -ms-grid-column-span: 2;
        grid-column: span 2;
        margin-left: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .starting-box {
        min-height: 0;
        height: auto;
    }

    .starting-box > .responsive {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }

}

.starting-image {
    max-width: 80%;
    max-height: 600px;
    margin-left: 10%;
}

@media only screen and (max-width: 750px) {
    .intro-text h1 {
        font-size: 2em;
    }

    .intro-text span {
        font-size: 0.9em;
    }
}

.advantage-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: separate;
    border-spacing: 0 20px;
}

.advantage-table td:last-child {
    padding: 20px;
}

.advantage-table td svg {
    fill: #333333;
    width: 60px;
    height: 60px;
}

.advantage-table td h2 {
    color: #CC0033;
    font-size: 1.2rem;
}


/**
 * Service page
 */

.service-overview {
    margin: 0 auto 100px auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    max-width: 1200px;
    width: 100%;
    -ms-grid-column-span: 2;
    grid-column: span 2;
    grid-row-gap: 20px;
}

.service-image {
    max-width: 100%;
    max-height: 300px;
    margin: auto;
}

.service-box:nth-of-type(2n) .service-image {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    grid-row: 1;
}

.service-box:nth-of-type(2n) .service-box-content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    grid-row: 1;
}

.service-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.service-box-content {
    padding: 15px;
    margin: auto;
}

@media only screen and (max-width: 700px) {
    .service-overview {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .service-box {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .service-box:nth-of-type(2n) .service-image {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .service-box:nth-of-type(2n) .service-box-content {
        -ms-grid-column: 1;
        grid-column: 1;
        -ms-grid-row: 2;
        grid-row: 2;
    }
}

/**
 * Contact page
 */

.contact-table {
    max-width: 600px;
    text-align: left;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed;
}

.contact-table td {
    padding: 20px 0;
}

.contact-table td svg {
    fill: #CC0033;
    width: 30px;
    height: 30px;
}

.contact-column {
    padding: 10px;
}

/**
 * 404 - page not found
 */

.hole-wrapper {
    overflow: hidden;
    position: relative;
    height: 180px;
    margin: 0 auto;
    width: 160px;
}

.hole-wrapper .hole {
    left: 0;
    bottom: 0;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    position: absolute;
    width: 160px;
    height: 40px;
    border-radius: 200%;
    background: #333333;
    -webkit-box-shadow: inset 0 10px 0 #c0c0c0;
    box-shadow: inset 0 10px 0 #c0c0c0;
    -webkit-animation: showHole .5s both;
    animation: showHole .5s both;
}

.hole-wrapper .hole .arm {
    position: absolute;
    bottom: 0px;
    width: 30px;
    height: 45px;
    -webkit-transform: translate(-40%, 0);
    -ms-transform: translate(-40%, 0);
    transform: translate(-40%, 0);
    left: 50%;
    background: #f5b078;
    -webkit-animation: showArm .5s both;
    animation: showArm .5s both;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-clip-path: polygon(0 0, 75% 0, 100% 100%, 3% 100%);
    clip-path: polygon(0 0, 75% 0, 100% 100%, 3% 100%);
}

.hole-wrapper .hole .hand {
    position: absolute;
    top: -30px;
    left: 60px;
    -webkit-animation: showArm .5s both;
    animation: showArm .5s both;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.hole-wrapper .hole .hand:after {
    content: '';
    display: block;
    background: #f5b078;
    position: absolute;
    width: 36px;
    height: 40px;
    top: 0;
    border-radius: 50px 25px / 52% 84%;
    z-index: 0;
}

.hole-wrapper .hole .hand .finger-up {
    z-index: 2;
    position: absolute;
    top: -20px;
    right: -8px;
    width: 12px;
    display: block;
    border-radius: 20px;
    background: #f5b078;
    height: 36px;
    -webkit-clip-path: polygon(21% 0, 57% 0, 84% 51%, 100% 100%, 24% 100%, 21% 50%);
    clip-path: polygon(21% 0, 57% 0, 84% 51%, 100% 100%, 24% 100%, 21% 50%);
}

.hole-wrapper .hole .hand .finger {
    z-index: 2;
    position: relative;
    width: 25px;
    display: block;
    border-radius: 20px;
    background: #f5b078;
    height: 10px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.hole-wrapper .hole .hand .finger:nth-child(3) {
    width: 23px;
}

.hole-wrapper .hole .hand .finger:nth-child(4) {
    width: 23px;
    height: 9px;
}

.hole-wrapper .hole .hand .finger:nth-child(5) {
    height: 8px;
    width: 23px;
}

.hole-wrapper .hole .wood {
    height: 155px;
    width: 14px;
    position: absolute;
    z-index: 1;
    bottom: 25px;
    left: 70px;
    background: #bc6043;
    border-radius: 10px;
    -webkit-animation: showArm .5s both;
    animation: showArm .5s both;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.hole-wrapper .hole .wood:before {
    font-family: "Montserrat", sans-serif;
    content: 'Fehler!';
    font-weight: bold;
    display: block;
    background: white;
    width: 125px;
    position: absolute;
    height: 60px;
    left: -58px;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
}

.hole-wrapper .hole .wood.err-04:before {
    content: '404!';
}

.hole-wrapper .hole .wood.maintenance:before {
    content: 'Wartung!';
}

.hole-wrapper .hole .wood.wip:before {
    content: 'in Arbeit!';
}

@-webkit-keyframes showHole {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes showHole {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes showArm {
    0% {
        -webkit-transform: translate(-40%, 200px);
        transform: translate(-40%, 200px);
    }
    100% {
        -webkit-transform: translatey(-40%);
        transform: translatey(-40%);
    }
}

@keyframes showArm {
    0% {
        -webkit-transform: translate(-40%, 200px);
        transform: translate(-40%, 200px);
    }
    100% {
        -webkit-transform: translatey(-40%);
        transform: translatey(-40%);
    }
}

/**
 * Support page
 */

.support-box {
    height: 100%;
}

.tabs {
    --background: #FFFFFF;
    --grey: #C9CBD5;
    --primary: #C9CBD5;
    --primary-light: #CC0033;
    --secondary: #C9CBD5;
    --width: 300px;
    --height: 75px;
    --border-radius: var(--height);
    background: var(--background);
    width: var(--width);
    height: var(--height);
    padding: 0;
    margin: auto;
    position: relative;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-light);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.tabs a {
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
}

.tabs a:hover {
    border: 1px solid #CC0033;
}

.tabs a::before {
    content: "";
    height: 4px;
    width: 4px;
    border-radius: 0% 100% 50% 50% / 0% 50% 50% 100%;
    -webkit-transform: scale(1, 1) rotate(45deg);
    -ms-transform: scale(1, 1) rotate(45deg);
    transform: scale(1, 1) rotate(45deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: var(--primary-light);
    display: block;
    position: absolute;
    top: -30px;
}

.tabs a {
    position: relative;
    display: inline-block;
    color: #333333;
}

.tabs a svg {
    width: 100%;
    height: 100%;
    position: relative;
}

.tabs a svg .icon {
    fill: var(--primary-light);
}

.tabs input {
    display: none;
}

.tab-content:target + a::before {
    -webkit-animation: drop-animation .35s ease-in both;
    animation: drop-animation .35s ease-in both;
}

.tab-content:target + a svg {
    -webkit-animation: stretch-animation .5s ease-out .3s;
    animation: stretch-animation .5s ease-out .3s;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] {
    font: 400 12px/16px "Open Sans", Helvetica, Arial, sans-serif;
}

#contact {
    padding: 25px;
    margin: 0 auto;
    text-align: center;
    max-width: 600px;
}

#contact h3 {
    color: #CC0033;
    display: block;
    font-size: 30px;
    font-weight: 400;
}

#contact h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 13px;
}

fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #333333;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px 0;
    font-size: 1.1em;
    font-family: 'Montserrat Light', sans-serif;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
}

#contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

#contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: -o-repeating-linear-gradient(
            45deg,
            #ff8585,
            #ff8585 10px,
            #ff8383 10px,
            #ff8383 20px
    );
    background: repeating-linear-gradient(
            45deg,
            #ff8585,
            #ff8585 10px,
            #ff8383 10px,
            #ff8383 20px
    );
    color: #000000;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

#contact button[type="submit"]:hover {
    background: -o-repeating-linear-gradient(
            45deg,
            #fd7c7c,
            #fd7c7c 10px,
            #fc7979 10px,
            #fc7979 20px
    );
    background: repeating-linear-gradient(
            45deg,
            #fd7c7c,
            #fd7c7c 10px,
            #fc7979 10px,
            #fc7979 20px
    );
    color: #333333;
    -webkit-transition: background 0.3s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus, #contact textarea:focus {
    outline: 0;
    border-bottom: 1px solid #CC0033;
}

#contact input:focus::-webkit-input-placeholder {
    color: #CC0033;
}

#contact input:focus:-moz-placeholder {
    color: #CC0033;
}

#contact input:focus::-moz-placeholder {
    color: #CC0033;
}

#contact input:focus:-ms-input-placeholder {
    color: #CC0033;
}

.tab-content {
    padding: 25px;
    text-align: center;
    display: none;
}

.tab-content:target,
.tab-content:last-child:not(:target) ~ .tab-content:first-child {
    display: block;
}

.chat-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 25px;
    --background-color: #a5bfd4;
    --header-color: #6a96d8;
    --send-color: #e6edf6;
    --received-color: #f2f2f2;
    --blocked-color: #ffc1c1;
    --light-gray: #dfdfdf;
    --dark-gray: #858a91;
}

.chat-container > h3 {
    color: #CC0033;
    display: block;
    font-size: 30px;
    font-weight: 400;
}

.message-container {
    max-height: 400px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
    padding: 25px 25px 0 25px;
}

.chat-container .chat-not-available {
    display: none;
}

.chat-container.inactive .chat-not-available {
    display: block;
}

.chat-container.inactive .input-container {
    display: none;
}

.message-container h3 {
    color: var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
    line-height: 0.1rem;
    margin: 10px 0 30px;
    text-transform: uppercase;
    font-size: 1rem;
}

.message-container h3 span {
    padding: 0 15px;
    background-color: #fff;
}

.message-container div.sent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.message-container div:not(.sent) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.message-container div:last-child {
    border-bottom: 1px solid var(--light-gray);
}

.message-container .hour {
    color: var(--dark-gray);
}

.message-container p {
    position: relative;
}

.sent p:before {
    content: "";
    position: absolute;
    top: 0;
    left: -6px;
    width: 0px;
    height: 0px;
    border-top: 0px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 10px solid var(--send-color);
}

.received p:before {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 0px;
    height: 0px;
    border-top: 0px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 10px solid var(--received-color);
}

.sent-bubble {
    background-color: var(--send-color);
}

.received-bubble {
    background-color: var(--received-color);
}

.blocked-bubble {
    background-color: var(--blocked-color);
}

.sent-bubble,
.received-bubble,
.blocked-bubble {
    max-width: 70%;
    padding: 10px;
    margin: 10px 0 20px;
    text-align: left;
}

.sent-bubble {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.received-bubble {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-left-radius: 3px;
}

.blocked-bubble {
    border-radius: 3px;
}

.input-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px;
}

.input-container input {
    width: 100%;
    outline: none;
    border: none;
    font-size: 1rem;
}

.input-container a {
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    color: var(--header-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 20px;
}

.configurator-box {
    padding: 0;
    width: 100%;
    margin: 0 auto 100px;
    text-align: center;
    max-width: 600px;
}

.configurator-box h3 {
    color: #CC0033;
    display: block;
    font-size: 30px;
    font-weight: 400;
}

.configurator-box h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: 13px;
}

.configurator-box hr {
    margin: 20px 0;
}

.configurator-box fieldset {
    border: medium none !important;
    margin: 0 auto 10px;
    min-width: 90%;
    padding: 0;
    width: 90%;
    text-align: left;
}

.configurator-box input, .configurator-box textarea, .configurator-box select, .configurator-box svg {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #333333;
    background: #FFF;
    margin: 5px 0;
    padding: 10px 0;
    font-size: 1.1em;
    font-family: 'Montserrat Light', sans-serif;
}

.configurator-box input[type="checkbox"] {
    width: auto;
    margin-right: 30px;
    float: left;
    transform: scale(2);
}

.configurator-box svg {
    width: 26px;
    height: 26px;
    float: left;
    margin-right: 30px;
    border: 0;
    margin-left: -5px;
    margin-top: -13px;
    color: #80e27e;
    fill: #80e27e;
}

.configurator-box input:hover, .configurator-box textarea:hover, .configurator-box select:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -o-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
}

.configurator-box textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

.configurator-box button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: -o-repeating-linear-gradient(
            45deg,
            #ff8585,
            #ff8585 10px,
            #ff8383 10px,
            #ff8383 20px
    );
    background: repeating-linear-gradient(
            45deg,
            #ff8585,
            #ff8585 10px,
            #ff8383 10px,
            #ff8383 20px
    );
    color: #000000;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

.configurator-box button[type="submit"]:hover {
    background: -o-repeating-linear-gradient(
            45deg,
            #fd7c7c,
            #fd7c7c 10px,
            #fc7979 10px,
            #fc7979 20px
    );
    background: repeating-linear-gradient(
            45deg,
            #fd7c7c,
            #fd7c7c 10px,
            #fc7979 10px,
            #fc7979 20px
    );
    color: #333333;
    -webkit-transition: background 0.3s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.configurator-box button[type="submit"]:active {
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.configurator-box input:focus, .configurator-box textarea:focus,  .configurator-box select:focus {
    outline: 0;
    border-bottom: 1px solid #CC0033;
}

.configurator-box input:focus::-webkit-input-placeholder {
    color: #CC0033;
}

.configurator-box input:focus:-moz-placeholder {
    color: #CC0033;
}

.configurator-box input:focus::-moz-placeholder {
    color: #CC0033;
}

.configurator-box input:focus:-ms-input-placeholder {
    color: #CC0033;
}

.configurator-box-config {
    display: none;
}

#personal-info {
    display: none;
}

.configurator-price-box {
    position: absolute;
    top: 180px;
    right: 40px;
    padding: 0 50px;
    font-size: 2.5em;
    display: none;
    text-align: center;
}

.configurator-price-box table {
    margin: 20px auto 0;
    width: 100%;
}

.configurator-price-box tr {
    text-align: left;
    font-size: 1.1em;
}

.configurator-price-box tr hr{
    border-top: 1px solid #CC0033;
}

.configurator-price-box tr td:nth-child(odd) {
    width: 150px;
}

@media only screen and (max-width: 1400px) {
    .configurator-price-box {
        position: static;
    }
}

.footer {
    width: 100%;
    background: -o-repeating-linear-gradient(
            45deg,
            #fefefe,
            #fefefe 10px,
            #ffffff 10px,
            #ffffff 20px
    );
    background: repeating-linear-gradient(
            45deg,
            #fefefe,
            #fefefe 10px,
            #ffffff 10px,
            #ffffff 20px
    );
    position: absolute;
    bottom: 0;
    z-index: 1;
    text-align: center;
}

@media only screen and (max-width: 700px) {
    .footer {
        position: absolute;
    }
}

.page-display-container {
    width: 95%;
    max-width: 800px;
    margin: auto;
}

.grecaptcha-badge {
    z-index: 2;
}