﻿

/* FreeSize Box */
.article13 {
    width: 100%;
    height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fixedNavbar {
    width: 100%;
    height: 100%;
    background-color: rgba(12, 92, 104, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixedNavbarHolder {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.fnContainer {
    background-color: rgba(50, 50, 50, 0.15);
    /*width: 100%;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.ncBox {
    height: 100%;
    /*width: 50px;*/
    padding: 0 10px;
    display: flex;
    justify-content: left;
    align-items: center;
    color: white;
    cursor: pointer;
    /*transition: all 1000ms;*/
}

    .ncBox:hover {
        /* color: rgba(0, 25, 35, 1);*/ /* Font Colors */
    }

    .ncBox > svg {
        color: rgba(255, 255, 255, 1); /* all SVG Colors */
    }

.fnContainer * {
    font-size: inherit !important;
    color: inherit !important
}


.leftNavContainer {
}

    .leftNavContainer > svg {
        width: 30px;
        height: 25px;
        color: rgba(255, 255, 255, 1); /* SVG Colors */
    }

    .leftNavContainer:hover > svg {
        transition: 1000ms;
        /*color: rgba(0, 25, 35, 1);*/ /* Font Colors */
    }

.rightNavContainer {
    cursor: default;
    direction: rtl;
}

    .rightNavContainer > svg {
        width: 17px;
        height: 17px;
        color: rgba(255, 255, 255, 1); /* SVG Colors */
    }

    .rightNavContainer:hover > svg {
        /*color: rgba(0, 25, 35, 1);*/ /* SVG Colors */
    }

.hiddenBox {
    width: 0;
    overflow: hidden;
    transition: all 500ms;
    text-wrap: nowrap;
}

/* fixed Navigation Container */
.ncBox:hover .hiddenBox {
    width: 100%;
    padding: 10px;
    color: rgba(255, 255, 255, 1);
    transition: all 1000ms;
}


.infoBox {

    transition: all 1000ms;
    padding: 0 10px 0 5px;
    font-size: 18px;
    font-weight: bold;
    text-wrap: nowrap;
}


.numericText {
    direction: ltr;
}

    .numericText > span {
        padding: 5px;
    }

.dropDownContainer {
    position: relative;
    height: 100%;
}

.dropDownList {
    position: absolute;
    display: none;
    flex-direction:column;
    top: 58px;
    right: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: start;
    background-color: rgba(12, 92, 104, 1);
    height: fit-content;
    overflow: hidden;
}

.dropDownContent {
    position:relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 220px;
    height: 50px;
    padding: 0 20px;
    text-wrap: nowrap;
    text-align: center;
}
    .dropDownContent:nth-of-type(even) {
        background-color: rgba(50, 50, 50, 0.15);
    }


.hourText {
    text-align: right;
    padding: 0 6px;
}

@media only screen and (max-width: 980px) {
    .article13 {
        display : none
    }
    .fixedNavbar, .fixedNavbar > * {
        display: none;
        transition: all 1000ms;
    }
}
