body,
html {
    margin: 0;
    padding: 0;
}

body {
    background: #1c74bc;
    background-image: url('../images/Background_large.jpg');
    background-size: cover;
    background-position: top;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px);
    padding: 30px;
    line-height: 1.75;
    font-size: 1rem;
}

.container {
    max-width: 1100px;
    margin: auto;
    width: 100vw;
    overflow-x: hidden;
}

h2 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
}

p {
    font-size: 22px;
    line-height: 30px;
}

#symptom_text {
    background: none;
    font-size: 3rem;
    color: white;
    border: 0;
    outline: 0;
    border-bottom: 2px solid #f2652a;
}

#symptom_text::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.MSExpressLogo {
    width: 80%;
    max-width: 500px;
}

#symptoEntry {
    position: relative;
    width: auto;
    margin: auto;
    font-size: 4rem;
    margin-top: 40px;
}

.input_holder {
    position: relative;
    display: inline-block;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background: #f26529;
    color: white;
    outline: none;
    border: none;
}

.ui-menu {
    max-width: 250px !important;
    width: 250px !important;
}


.underline {
    position: absolute;
    right: 10px;
    bottom: -10px;
    max-height: 5px;
}

select:invalid { opacity: 0.5; }

#symptom_tiles {
    display: flex;
    margin: 0;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    overflow-y: visible;
}

.tile {
    min-width: 160px;
    margin: 5px;
    align-items: end;
    justify-content: center;
    flex-grow: 1;
    width: 100%;
    cursor: pointer;
    padding: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    font-family: KarbonBold;
    position: relative;
    overflow: visible;
}

.tile::before{
    content:'';
    display:block;
    padding-bottom:200%;
}

.tile p {
    font-family: KarbonBold;
    margin-top: 20px;
}

.tile:hover,
.tile.selected {
    transition: 0.5s;
    outline: none;
    color: #f26529;
    transform: translateY(-20px);
}

.tile_container {
    height: 20%;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#carousel-wrapper {
    display: none;
}

#carousel {
    display: none;
    margin: 40px 0;
}

#carousel .slick-list {
    margin: 0 60px;
}

#carousel  .slick-track {
    display: flex;
    align-items: center;
    justify-content: center;
}

#carousel.slick-track .slick-slide {
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
}

.slider-btn {
    height: 50px;
    width: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-left {
    left: 20px;
    background-image: url("../images/left.svg");
}

.slider-right {
    right: 20px;
    background-image: url("../images/right.svg");
}

.slider-left:hover {
    left: 20px;
    background-image: url("../images/left-orange.svg");
}

.slider-right:hover {
    right: 20px;
    background-image: url("../images/right-orange.svg");
}

#width_tmp_select{
    display : none;
    font-size: 3rem;
    min-width: 150px;
}

.ui-autocomplete {
    max-height: 150px;
    max-width: 100% !important;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    text-align: left;
}

#empty-message {
    margin-top: 20px;
    display: none;
}

#languageSwitcher {
    background-color: #1c74bc;
    color: white;
    border: 2px solid #f26529;
    box-shadow: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    margin-left: 20px;
    font-family: KarbonBold;
}


button, .btn {
    background-color: transparent;
    color: white;
    border: 2px solid #f26529;
    box-shadow: none;
    padding: 0px 25px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    margin: 10px;
    line-height: 40px;
    font-family: KarbonBold;
    display: inline-block;
    vertical-align: top;
}

button:hover {
    background-color: #f26529;
}


button#go.disabled {
    opacity: 0.5;
    background: none;
    color: white;
    border: 2px solid white;
}

button#copy {
    margin-top: 20px;
}

button#clear,
button.secondary {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.hidden {
    display: none;
}

.social-share {
    display: inline-block;
    height: 40px;
    width: 40px;
    cursor: pointer;
    margin: 10px;
    vertical-align: top;
    position: relative;
}

.social-share svg {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    fill: white;
}

.social-share svg:hover {
    fill: #f26529;
    transition: 0.5s;
}

@media only screen and (max-width: 800px) {

    #carousel {
        display: none;
        margin: 10px 0;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .tile .tile_container {
        height: auto;
        min-height: 20%;
    }

    .tile p {
        margin: 0;
    }
}