/*Copyright under GNU General Public License Version 3, 29 June 2007.  Dipayan Roy, ZED softs, 2020, see <https://www.gnu.org/licenses/>*/

@charset "utf-8";

.clearfix:before,
.clearfix:after {
    content: " ";

}

.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

.zedsidebar1container {
    position: relative;
    margin: 0px auto;
    clear: both;
}
@media only screen and (min-width: 1200px) {
    .zedsidebar1container {
        width: 350px;
    }
}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
    .zedsidebar1container {
        width: 320px;
    }
}

@media only screen and (max-width: 991px) {
    .zedsidebar1container {
        width: 100%;
        margin: 0 auto;
    }
}


  
.zedmcd-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #FFF;
  /* height: 100px; */
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  
  /* == */
  width: 350px;
  /* == */
}
.zedmcd-menu li {
  position: relative;
  /* float:left; */
}
.zedmcd-menu li a {
  display: block;
  text-decoration: none;
  padding: 6px 16px;
  color: #777;
  /*text-align: center;
  border-right: 1px solid #E7E7E7;*/  
  /* == */
  text-align: left;
  /* height: 80px; */
  position: relative;
  border-bottom: 1px solid #EEE;
  padding-bottom: 15px;
  padding-top: 15px;
  margin-bottom: 5px !important;
  line-height: 1.3;
  /* == */
}
.zedmcd-menu li a i {
  /*display: block;
  font-size: 30px;
  margin-bottom: 10px;*/  
  /* == */
  float: left;
  font-size: 30px;
  margin: 0 10px 10px 0;
  width: 40px;
  /* == */
}
/* == */
.zedmcd-menu li a p {
  padding: 0;
  float: left;
  margin: 0 ;
}
/* == */

.zedmcd-menu li a strong {
  display: block;
  text-transform: uppercase;
  margin:0px;
  padding: 0px;
}

.zedmcd-menu li a small {
  display: block;
  font-size: 14px;
  margin: 0px !important;
  padding:0px !important;
}

.zedmcd-menu li a i, .zedmcd-menu li a strong, .zedmcd-menu li a small {
  position: relative;  
  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
}
.zedmcd-menu li:hover > a i {
    opacity: 1;
    -webkit-animation: moveFromTop 300ms ease-in-out;
    -moz-animation: moveFromTop 300ms ease-in-out;
    -ms-animation: moveFromTop 300ms ease-in-out;
    -o-animation: moveFromTop 300ms ease-in-out;
    animation: moveFromTop 300ms ease-in-out;
}
.zedmcd-menu li:hover a strong {
    opacity: 1;
    -webkit-animation: moveFromLeft 300ms ease-in-out;
    -moz-animation: moveFromLeft 300ms ease-in-out;
    -ms-animation: moveFromLeft 300ms ease-in-out;
    -o-animation: moveFromLeft 300ms ease-in-out;
    animation: moveFromLeft 300ms ease-in-out;
}
.zedmcd-menu li:hover a small {
    opacity: 1;
    -webkit-animation: moveFromRight 300ms ease-in-out;
    -moz-animation: moveFromRight 300ms ease-in-out;
    -ms-animation: moveFromRight 300ms ease-in-out;
    -o-animation: moveFromRight 300ms ease-in-out;
    animation: moveFromRight 300ms ease-in-out;
}

.zedmcd-menu li:hover > a {
  color: #e67e22;
}
.zedmcd-menu li a.active {
  position: relative;
  color: #e67e22;
  border:0;
  /*border-top: 4px solid #e67e22;
  border-bottom: 4px solid #e67e22;
  margin-top: -4px;*/
  box-shadow: 0 0 5px #DDD;
  -moz-box-shadow: 0 0 5px #DDD;
  -webkit-box-shadow: 0 0 5px #DDD;
  
  /* == */
  border-left: 4px solid #e67e22;
  border-right: 4px solid #e67e22;
  margin: 0 -4px;
  /* == */
}
.zedmcd-menu li a.active:before {
  content: "";
  position: absolute;
  /*top: 0;
  left: 45%;
  border-top: 5px solid #e67e22;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/
  
  /* == */
  top: 42%;
  left: 0;
  border-left: 5px solid #e67e22;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  /* == */
}

/* == */
.zedmcd-menu li a.active:after {
  content: "";
  position: absolute;
  top: 42%;
  right: 0;
  border-right: 5px solid #e67e22;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
/* == */

@-webkit-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
        -moz-transform: translateY(200%);
        -ms-transform: translateY(200%);
        -o-transform: translateY(200%);
        transform: translateY(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@-webkit-keyframes moveFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@-webkit-keyframes moveFromRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(-200%);
        -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
        -o-transform: translateX(-200%);
        transform: translateX(-200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }
}



.zedmcd-menu li ul,
.zedmcd-menu li ul li ul {
  position: absolute;
  height: auto;
  min-width: 200px;
  padding: 0;
  margin: 0;
  background: #FFF;
  /*border-top: 4px solid #e67e22;*/
  opacity: 0;
  visibility: hidden;
  transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  /*top: 130px;*/
  z-index: 1000;
  
  /* == */
  left:280px;
  top: 0px;
  border-left: 4px solid #e67e22;
  /* == */
}
.zedmcd-menu li ul:before {
  content: "";
  position: absolute;
  /*top: -8px;
  left: 23%;
  border-bottom: 5px solid #e67e22;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;*/
  
  /* == */
  top: 25px;
  left: -9px;
  border-right: 5px solid #e67e22;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  /* == */
}
.zedmcd-menu li:hover > ul,
.zedmcd-menu li ul li:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  /*top: 100px;*/
  
  /* == */
  left:250px;
  /* == */
}
/*.zedmcd-menu li ul li {
  float: none;
}*/
.zedmcd-menu li ul li a {
  padding: 10px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #EEE;
  
  /* == */
  height: auto;
  /* == */
}
.zedmcd-menu li ul li a i {
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
}
.zedmcd-menu li ul li ul {
  left: 230px;
  top: 0;
  border: 0;
  border-left: 4px solid #e67e22;
}  
.zedmcd-menu li ul li ul:before {
  content: "";
  position: absolute;
  top: 15px;
  /*left: -14px;*/
  /* == */
  left: -9px;
  /* == */
  border-right: 5px solid #e67e22;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
}
.zedmcd-menu li ul li:hover > ul {
  top: 0px;
  left: 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .zedmcd-menu {
		margin-left:10px;
		width: 320px;
	}
}

@media only screen and (max-width: 991px) {
    .zedmcd-menu { 
		width: 100%;
		margin:auto;
		display: flex;
		flex-wrap: wrap;
	}
	
	.zedmcd-menu li a i {
		display: none;
	}
	.zedmcd-menu li a { 
		padding: 10px 10px;
	}
	
	.zedmcd-menu li a.active {
		position: relative;
		color: #e67e22;
		border: 0;
		border-left: 4px solid #e67e22;
		border-right: 4px solid #e67e22;
		margin: 0 -4px;
	}

	.zedmcd-menu li a strong {
		font-size: 12px;
	}
	.zedmcd-menu li a small {
		font-size: 10px;
	}	


	.zedmcd-menu li ul a {
		font-size:12px;
	}
	.zedmcd-menu li ul a i {
		font-size:14px;
	}	
}