﻿
        .printDropDown {
            -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
            box-shadow: 0 6px 12px rgba(0,0,0,.175);
            padding: 0px;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            -o-transition: all 0.3s;
            transition: all 0.3s;
            /*max-height: 0;*/
            /*display: block;*/
            overflow: hidden;
            /*opacity: 0;*/
        }

            .printDropDown li a {
                padding: 10px;
                font-weight: bold;
                border-bottom: solid thin #e6e6e6;
                font-size: 13px;
                transition: 0.3s;
            }

        .dropdown.open .printDropDown {
            max-height: 200px;
            opacity: 1;
        }

        .printDropDown > li > a:hover {
            background-color: #414755;
            color: #fff;
        }
 