/**
 * Contains the Footer Menu styles for Danube Stream.
 * 
 * @category    CodeIgniter
 * @package     Template
 * @subpackage  Stylesheet
 * @author      Karoly Ivan <karoly.ivan@rsoe.hu>
 * @copyright   (c) 2016, RSOE
 */ 

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

.site.footer .container-fluid {
    margin-bottom: 5px;
}

/* Footer Menu */
.footer-menu {
    position: relative;
    display: block;
    left: 0;
    bottom: 0;
    padding: 0;
    margin: 1px 0 0 0;
    text-align: center;
    background: #0c4490;
}

    /* Footer Menu - Dropdown menu */
    .footer-menu ul.dropdown-menu {
        position: absolute;
        bottom: 35px;
        background: #2F66B2 !important;
    }
        /* Footer Menu - Dropdown menu li */
        .footer-menu ul.dropdown-menu li {
            display: block;
        }

        .footer-menu ul.dropdown-menu li a .title{
            display: block !important;
        }

    /* Footer Menu - li element */
    .footer-menu li {
        position: relative;
        display: inline-block;
        margin: inherit;
        padding: inherit;
    }

        /* Footer Menu - a element */
        .footer-menu li a {
            position: inherit;
            display: block;
            margin: inherit;
            padding: 10px 7px 7px 7px;
        }

            /* Footer Menu - a hover, focus element */
            .footer-menu li a:hover,
            .footer-menu li a:focus,
            .footer-menu li a:active,
            .footer-menu li.open > a {
                background-color: #0c4490 !important;
            }

            /* Footer Menu - Rotate Action */
            .footer-menu li a .rotate {
                -webkit-transform: rotateY(0deg);
                transform: rotateY(0deg);
                transition: all 0.75s ease-in-out;
                -webkit-transition: all 0.75s ease-in-out;
                -moz-transition: all 0.75s ease-in-out;
                -o-transition: all 0.75s ease-in-out;
                -webkit-transition-delay: 0.5s;
                -moz-transition-delay: 0.5s;
                -o-transition-delay: 0.5s;
            }

                /* Footer Menu - Rotate Action on hover */
                .footer-menu li a:hover .rotate {
                    -webkit-transform: rotateY(360deg);
                    transform: rotateY(360deg);
                    transition: all 0.75s ease-in-out;
                    -webkit-transition: all 0.75s ease-in-out;
                    -moz-transition: all 0.75s ease-in-out;
                    -o-transition: all 0.75s ease-in-out;
                }

            /* Footer Menu - img element */
            .footer-menu li a img {
                position: inherit;
                display: inline-block;
                margin: 2px 5px 5px 0;
                padding: 1px;
                width: 16px;
                background: #fff;
                border-radius: 100px;
            }

            /* Footer Menu - icon element */
            .footer-menu li a .icon {
                position: inherit;
                display: inline-block;
                margin: 2px 5px 5px 0;
                padding: 0;
                font-size: 10px;
                text-align: center;
                width: 20px;
                height: 20px;
                border-radius: 100px;
                background: #fff;
                color: #2F66B2;
                vertical-align: middle;
                padding-top: 2px;
            }

                /* Footer Menu - icon element before part */
                .footer-menu li a .icon::before {
                    position: relative;
                    display: block;
                    top: 3px;
                    text-align: center;
                }

                /* Footer Menu - icon element on hover */
                .footer-menu li a:hover .icon {

                }

            /* Footer Menu - title element */
            .footer-menu li a .title {
                position: inherit;
                display: inline-block;
                margin: inherit;
                padding: 0;
                color: #fff;
            }
    

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {

    /* Auto open dropup for these menus. */
    .footer-menu .dropup:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        border-top: none;
    }

        /* Footer Menu - title element */
        .footer-menu .dropup.open .dropdown-menu .title,
        .footer-menu .dropup:hover .dropdown-menu .title {
            display: inline-block;
        }

    /* Footer Menu - title element */
    .footer-menu li a .title {

    }

}


/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
}


/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {    
    


}


/* Large devices (large desktops, 1366px and up) */
@media (min-width: 1366px) {
    /* Footer Menu - title element */
    .footer-menu li a .title {

    }
}