#timingMenu .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 36px;
}
#timingMenu .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
#timingMenu .slider1 {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  -webkit-transition: .4s;
  transition: .4s;
}
#timingMenu .slider1:before {
  position: absolute;
  content: " ";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;top:3px;
  top:5px;
}
#timingMenu input:checked + .slider1 {
  background-color: #03b903;
}
#timingMenu input:focus + .slider1 {
  box-shadow: 0 0 1px #2196F3;
}
#timingMenu input:checked + .slider1:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  content: " ";
}

/* Rounded sliders */
#timingMenu .slider1.round {
  border-radius: 34px; 
}
#timingMenu .slider1.round:before {
  border-radius: 50%;
  content: "Off"; font-size:12px;line-height: 30px;
  text-align: center;font-weight:bold;color:#666
}

    /*Comments*/
    
    .holder_default {
        width:500px; 
        height:150px; 
        border: 3px dashed #ccc;
    }
    
    #holder.hover { 
        width:400px; 
        height:150px; 
        border: 3px dashed #0c0 !important; 
    }
    .droped-image {
        height: 33px;
        width: 66px;
        box-shadow: 0px 0px 4px 0px;
        margin: 7px 6px 3px 8px;
        float: left
    }
    .image-row
    {
        text-align: left;
        background-color: #fff;
        margin: 4px 0;
        position: relative;
        direction: ltr;
        display: inline-block;
        min-height: 47px;
        width: 100%;
    }
    .image-row>div{
        display:inline-block;
        width:100%;
    }
    .image-row input{
        display:none;
        visibility: hidden;
    }
    .droped-image-name
    {
        line-height: 43px;
        float: left;
    }
    .remove-image-button{
        background-color: red;
        padding: 5px;
        color: #fff;
        position: absolute;
        right: 7px;
        font-weight: bold;
        top: 11px;
        cursor: pointer;
        line-height: 13px;
        border-radius: 3px;
    }
    #image-select-button
    {
       display: inline-block;
       background-color: #3d89a2;
       padding: 8px;
       border-radius: 4px;
       border: 1px solid black;
       margin: 10px;
       cursor: pointer;color: #fff;
    }
    .hidden {
        visibility: hidden;
    }
    
    .visible {
        visibility: visible;
    }
    
    .comment-like-wrapper{
    	color: #2c2d2d;display: inline-flex;width: 100%;font-size: 30px;float:left;margin-top: 10px;
    }
    .comment-like-icon{
    	margin: 0px 6px 0px 9px;
    	cursor: pointer;
    	transition: all 0.5s;
    }
    .comment-like-tooltip{
    	display: inline-block;
    	border: 1px solid #2c2d2d;
    	border-radius: 5px;
    	padding: 0 5px;
    	font-size: 15px;
    	background-color: #2c2d2d;
    	color: #fff;
    	margin-left: 10px;
    	margin-bottom: 8px;
    	position: relative;
    	line-height: 30px;
    }
    .comment-like-tooltip span{
    	position: absolute;
    	display: inline-block;
    	border-right: 10px solid #2c2d2d;
    	left: -19px;
    	top: 8px;
    	border-bottom: 7px solid transparent;
    	border-top: 7px solid transparent;
    	border-left: 10px solid transparent;
    }
    
