body {
    font-family: "Trebuchet MS", sans-serif;
}

nav {
    /* Background image */
    background-image:url("/images/Middleware_Sync_Nav.png");
    background-repeat:no-repeat;
    background-position:center;

    height: 50px;
}

nav a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#responsiveMenuButton {
    border: none;
}

#footer {
    background-color: #00AFEF;
    color: white;
}

#rightsReserved {
    height: 50px;
    line-height: 50px;
    padding: 0;
}

#rightsReserved p {
    left: 50%;
    transform: translate(-50%);
    height: inherit;
    line-height: inherit;
    text-align: center;
}

#footerList {
    position: relative;
    height: 50px;
    line-height: 50px;
    text-align: center;
    list-style-type: none;
    display: inline-block;
    left: 50%;
    transform: translate(-50%);
    padding: 0;
}

#footerList li {
    height: inherit;
    line-height: inherit;
    text-align: center;
    display: inline-block;
}

#footerList li span:hover {
    text-decoration: underline;
    cursor: pointer;
}

#frameContainer {
    display: none;
    position: fixed;
    bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    width: 100%;
    height: 640px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0);
}

#closeModalBtn {
    background-color: black;
    color: white;
    font-weight: bold;
    font-size: 20px;
    width: 60px;
    line-height: 30px;
    height: 30px;
    padding: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-left: solid white 1px;
    border-top: solid white 1px;
    border-right: solid white 1px;
    margin: 0;
    text-align: center;
}

#frame {
    width: 100%;
    height: 610px;
    background-color: rgba(255, 255, 255, 0);
}

#detailedListDiv {
    display: inline-block;
    text-align: right;
}

.infoIcon {
    color: #5b5b5b;
    position: relative;
    display: inline-block;
}

.infoText {
    top: -5px;
    right: 60%;
    visibility: hidden;
    width: 150px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    font-size: 14px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.infoText::after {
    content: " ";
    position: absolute;
    top: 10%;
    left: 100%; /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}

.infoIcon:hover + .infoText, .infoText:hover {
    visibility: visible;
}

.syncOptionProducts, .syncOptionInvoices {
    text-align: center;
}

.syncOptionProducts {
    background-size: 200% 100%;
    background-position: right bottom;
    background-image: linear-gradient(to right, #0396cd 50%, #fcfcfc 50%);
    transition: all ease 0.5s;
}

.syncOptionInvoices {
    background-size: 200% 100%;
    background-position: right bottom;
    background-image: linear-gradient(to right, #a45690 50%, #f9f9f9 50%);
    transition: all ease 0.5s;
}

.syncOptionProducts:hover, .syncOptionInvoices:hover {
    background-position:left bottom;
    cursor: pointer;

    color: white;
    font-weight: bold;
}

.syncOptionDescription {
    display: none;

    margin-bottom: 10px;
    font-size: 22px;
}

#productsTitle, #invoicesTitle {
    text-align: center;
    text-decoration: underline;
}

#productsImages, #invoicesImages {
    display: inline-block;
    text-align: center;
}

#productsImages img, #invoicesImages img {
    transform: scale(0.6);
}

#footer ul #signalLi {
    display: none;
}

#signalNoScriptLi {
    display: inline-block;
}

#signalNoScriptLi a {
    color: white;
}