body {
    margin: 0;
    background: #EEEEEE;
}

:root {
    --primary-color: #FD9333;
    --text-color: #333333;

    --xs-device-max: 768px;
    --sm-device-max: 992px;
    --md-device-max: 1200px;
    --lg-device-max: 9000px;

}

a,
p {
    margin: 0 0 25px 0;
    line-height: 1.2em;
    font-size: 16px;
}

.no-padding {
    padding: 0 !important;
}


p > span {
    color: #B2B2B2;
}


h1, h2, h3, h4, h5, h6 {
    color: #000;
}

a:hover, a:visited, a:link, a:active {
    text-decoration: none;
}

/*.row {*/
/*    display: -webkit-box;*/
/*    display: -webkit-flex;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/

.no-padding-top {
    padding-top: 0;
}

.section-white {
    background: #FFF;
}

.section-grey {
    background: #EBEBEB;
}

footer {
    width: 100%;
}

footer ul {
    list-style-type: none;
}

.header-container {
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .configurator-homepage {
        position: absolute;
        top: -30px;
        z-index: 100;
        background: #FFF;
    }
}

section.landscape {
    padding: 0 !important;
}


span.button {
    background-color: var(--primary-color);
    padding: 10px 50px;
    color: #FFF;
    border-radius: 5px;
    text-align: center;
    display: block;
    margin-top: 25px;
}

#repair-price {
    color: #333;
}

#repairs-selected {
    margin-left: 20px;
}


.contact-options {
    border-radius: 5px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.contact-options strong {
    word-break: break-all;
}

/* p */
p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
}

p.bold {
    font-weight: 700;
}

p.center {
    text-align: center;
}

p.primary {
    color: var(--primary-color)
}

/* a */
a {
    text-decoration: none;
    color: #333;
}

.bold {
    font-weight: bold;
}

h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .configurator-small {
        box-shadow: none;
    }

    .configurator-small select.select-css {
        margin-bottom: 10px;
    }
}

.header-container > .animation {
    display: inline-table;
    width: 100vw;
}

.header-container > .header-text {
    margin: 0 auto;
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
}

.header-container > .header-text > div {
    display: flex;
    align-items: center;
    height: inherit;
    margin: 0 auto;
}

.header-container > .header-text > div > div {
    text-align: center;
    display: block;
    margin: 0 auto;
}

.header-container > .header-text > div > div > p {
    color: #FFF;
}

.no-padding-bottom {
    padding-bottom: 0;
}

.content-margin {
    margin-top: 25px;
}

section {
    padding: 50px 0;
    position: relative;
    width: 100%;
}

section.grey {
    background-color: #EEEEEE;
}

footer a {
    color: #707070 !important;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/*a {*/
/*    color: var(--primary-color) !important;*/
/*}*/

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
    background-color: #FFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px -10px rgba(0, 0, 0, .35);
}

#logo {
    display: block;
    padding: 0 30px;
    float: left;
}

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    display: block;
    padding: 20px;
    font-size: 17px;
    text-decoration: none;
    margin-bottom: 0;
}


nav ul li ul li:hover {
    background: var(--primary-color);
}

/* Background color change on Hover */
nav a:hover {
    background-color: var(--primary-color);
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 60px;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    background: #FFF;
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 170px;
    float: none;
    display: list-item;
    position: relative;
}

/* Second, Third and more Tiers
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
    position: relative;
    top: -60px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li > a:after {
    content: ' +';
}

li > a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */
.toggle > .hamburger {
    display: none;
}

@media all and (max-width: 768px) {
    .toggle > .hamburger {
        display: block;
        float: right;
    }

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        padding: 14px 20px;
        font-size: 17px;
        text-decoration: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }

    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }

    nav ul ul ul a {
        padding: 0 80px;
    }

    nav a:hover,
    nav ul ul ul a {
        background-color: #000000;
    }

    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }


    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #212121;
    }

    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }

    /* Hide menus on hover */
    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: none;
    }

    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }

    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */

    }

}

@media all and (max-width: 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}


.section-triangle {
    background: linear-gradient(to bottom right, #fff 0%, #fff 70%, #ff9800 50%, #ff9800 100%);
}

.devices-repaired > img {
    width: 30%;
    margin: 0 auto;
}

.devices-repaired > p {
    text-align: center;
    margin-top: 20px;
}

.devices-repaired > p > span {
    color: #ff9800
}


blockquote {
    padding: 2.5em 10px !important;
    position: relative !important;
    margin: 0 !important;
    z-index: 0 !important;
}

blockquote:before {
    color: #ccc;
    content: "“";
    font-family: 'Salsa', cursive;
    position: absolute;
    font-size: 6em;
    z-index: -1;
    left: 10px;
    top: 0em;
}

blockquote::after {
    color: #ccc;
    content: "”";
    font-family: 'Salsa', cursive;
    position: absolute;
    font-size: 6em;
    right: 10px;
    z-index: -1;
    bottom: -0.7em;
}

blockquote p {
    z-index: 5;
    font-size: 1em;
}


.review-card {
    background-color: #eee;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: 30px;
}

.review-card__avatar {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, 0%);
}

.review-card__avatar > img {
    border-radius: 50%;
    width: 60px;
    border: 5px solid var(--primary-color);
}

.swiper-container {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
}

.swiper-wrapper {
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: auto !important;
}


.store-usp > div > img {
    display: block;
    margin: 0 auto;
}

.store-usp > p,
.store-usp > div > h3 {
    text-align: center;
    margin-bottom: 0;
}

.popular-model {
    height: 100%;
    border: 2px solid #EEE;
    border-radius: 5px;
    padding: 5px 25px;
    display: flex;
    align-items: center;
}

.popular-model > div {
    margin: 0 auto;
}

.popular-model img {
    width: 100%;
    margin: 0 auto;
    display: block;
}


.flex-on-desk {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .flex-on-desk {
        display: block;
    }
}