/*
 *	Plugin Name: WP Tiles WUD
*/

/* Admin Settings - Options */
.wud-admin-table{
	background: #fff;
	padding: 20px;
	margin-top: 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #dadada;
	max-width: 720px;
	min-width: 360px;
	display: block;
}

.wud-admin-h2{
	margin: 0 0 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}

.wud-admin-title{
	display: block;
}

.wud-wrap{
	display: block;
	width:44%; 
	float:left;
	padding: 2%;
	background: rgb(239, 239, 239);
	box-shadow: 5px 5px 5px #888888;
}

.wud-wrap-2{
	display: block;
	width:44%; 
	float:right;
	padding: 2%;
	background: rgb(239, 239, 239);
	box-shadow: 5px 5px 5px #888888;
}

#rate-it{
	float:right;
	padding-right:50px;
}

#wud-adm-subm{
	float:right;
}

#wud-adm-wud{
	background: #279048; 
	background-color: #279048; 
	border-color: #279048; 
	box-shadow: 0 1px 0 #279048; 
	text-shadow: 0 -1px 1px #279048,1px 0 1px #279048,0 1px 1px #279048,-1px 0 1px #279048;
} 

#wud-adm-wud:hover{
	background: #1CC150; 
	background-color: #1CC150; 
} 

@media screen and (max-width: 580px) {
.wud-wrap{
	float: none;
	width:88%;
}
.wud-wrap-2{
	float: none;
	width:88%;
}	
#rate-it{
	display:none;
}
#wud-adm-subm{
	margin-right: 8%;
}
}

.wp-picker-container{
	float:right !important;
}
#wud-right{
	float:right !important;
}

#wud-tip {
    position: relative;
    width: 100%;
}

#wud-tip > .tooltip{
    position: absolute;
    display: none;
    background-color: red;     
    width: 200px;    
    left: 50px;
    top: 40px; 
    border-radius: 10px;
    padding: 10px;
    color: white;
}

#wud-tip > .tooltip:before {
    position: absolute;
    content: '';
    border-width: 10px;
    border-style: solid;
    border-color: rgba(255,255,255,0) rgba(255,255,255,0) red rgba(255,255,255,0);
    top: -20px; 
    left: 90px;    
}

#wud-tip > .trigger:hover + .tooltip {
    display: block;
}