
	/******************************** SMART ********************************/
	
	.gdymc_rel {
		position: relative;
	}

	.gdymc_left {
		float: left;
	}
	
	.gdymc_right {
		float: right;
	}
	
	.gdymc_fix::after {
		content: '';
		display: block;
		clear: both;
		float: none;
	}
	
	.gdymc_button {
		border: none;
		height: 40px;
		line-height: 40px;
		color: #fff;
		padding: 0px 2.5em;
		border-radius: 4px;
		display: inline-block;
		background: #2ea2cc;
		cursor: pointer;
		outline: none;
		position: relative;

		transition: all 0.03s ease-in-out;
	}
	
	.gdymc_button:hover {
		background: #1e8cbe;
	}
	
	.gdymc_button_delete {
		height: 36px;
		line-height: 36px;
		color: #bc0b0b;
		display: inline-block;
		cursor: pointer;
		outline: none;
		position: relative;
		padding-left: 1.5em;
		top: 1px;
	}
	
	.gdymc_button_delete::before {
		position: absolute;
		top: 0em;
		left: 0em;
		font-family: 'Dashicons';
		content: "\f182";
		font-size: 1.3em;
	}
	
	.gdymc_button_delete:hover {
		color: #8b1010;
	}

	.gdymc_button_check {
		height: 36px;
		line-height: 36px;
		cursor: pointer;
		position: relative;
		padding-left: 2em;
		color: #555;
	}

	.gdymc_button_check::before {
		position: absolute;
		top: 0.5em;
		left: 0em;
		font-family: 'Dashicons';
		content: "\f147";
		display: inline-block;
		border: solid 1px #ddd;
		width: 17px;
		height: 17px;
		line-height: 17px;
		background: #fff;
		text-align: center;
		text-indent: -0.05em;
		font-size: 1.5em;
		color: #eee;
	}

	.gdymc_button_check.gdymc_active::before {
		color: #2ea2cc;
	}
	
	.gdymc_error {
		padding: 35px 30px 30px 30px;
		text-align: center;
		background: #ffba00;
		display: none;
		color: #fff;
		font-weight: bold;
	}

	.gdymc_edit .gdymc_error {
		display: block;
	}
	
	.gdymc_error .dashicons {
		position: relative;
		top: -3px;
		margin-right: 5px;
	}

	.gdymc_noentries {
		font-size: 30px;
		text-align: center;
		color: #ddd;
		position: absolute;
		top: 50%;
		left: 0px;
		width: 100%;
		margin-top: -0.3em;
	}
	
	

	/******************************** SAVE BUTTON ********************************/

	.gdymc_save {
		position: relative;
		padding-left: 45px !important;
	}

	.gdymc_save::before {
		font-family: 'Dashicons';
		content: "\f147";
		border: none;
		background: rgba(255,255,255,0.4);
		color: #2ea2cc;
		width: 18px;
		height: 18px;
		border-radius: 30px;
		display: inline-block;
		vertical-align: middle;
		margin-right: 8px;
		position: relative;
		top: -2px;
		font-size: 20px;
		line-height: 18px;
		text-align: center;
		text-indent: -1.5px;
		position: absolute;
		top: 50%;
		margin-top: -9px;
		left: 15px;
		z-index: 1;

		transition: all 0.2s ease-out;
	}

	.gdymc_save:hover::before, #gdymc_save::before {
		color: #1e8cbe;
	}
	
	.gdymc_save.gdymc_unsaved::before {
		content: "\f335";
		text-indent: -1px;
	}

	.gdymc_save.gdymc_unsaved::after, .gdymc_save.gdymc_saving::after {
		content: '';
		display: block;
		position: absolute;
		width: 16px;	
		height: 16px;
		top: 50%;
		left: 14px;
		margin-top: -10px;
		border-radius: 50px;
		border: solid 2px rgba(255,255,255,0.4);

		-webkit-animation: gdymc_save 1.5s ease-out infinite;
		-moz-animation: gdymc_save 1.5s ease-out infinite;
		animation: gdymc_save 1.5s ease-out infinite;
	}

	@keyframes gdymc_save { 
		0% { 
			transform: scale(1.1);
		}
		40% {
			transform: scale(1.6);
			opacity: 0.0;
		}
		100% {
			transform: scale(1.6);
			opacity: 0.0;
		}

	}

	@-moz-keyframes gdymc_save { 
		0% { 
			transform: scale(1.1);
		}
		40% {
			transform: scale(1.6);
			opacity: 0.0;
		}
		100% {
			transform: scale(1.6);
			opacity: 0.0;
		}

	}

	@-webkit-keyframes gdymc_save { 
		0% { 
			transform: scale(1.1);
		}
		40% {
			transform: scale(1.6);
			opacity: 0.0;
		}
		100% {
			transform: scale(1.6);
			opacity: 0.0;
		}

	}

	.gdymc_save.gdymc_saving::before {
		opacity: 0.0;
		transform: scale(1.5);
	}

	.gdymc_save.gdymc_saving::after {
		width: 12px;	
		height: 12px;
		left: 15px;
		margin-top: -9px;
		border: solid 3px transparent;
		border-left: solid 3px rgba(255,255,255,0.5);
		border-top: solid 3px rgba(255,255,255,0.5);

		-webkit-animation: gdymcspin 1s linear infinite;
		-moz-animation: gdymcspin 1s linear infinite;
		animation: gdymcspin 1s linear infinite;
	}

	@-moz-keyframes gdymcspin { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(360deg); } }
	@-webkit-keyframes gdymcspin { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } }
	@keyframes gdymcspin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
	


	
	/******************************** ADMINBAR ********************************/
	
	#gdymc_noarea {
		padding-left: 20px;
		line-height: 40px;
		color: #ffba00;
	}

	#gdymc_module_batch {
		position: relative;
		width: auto !important;
		padding: 0px 15px 0px 13px;
		cursor: pointer;
	}

	#gdymc_module_batch_number {
		display: inline-block;
		margin-left: 3px;
	}

	#gdymc_module_batch_slash {
		margin: 0px 2px;
		opacity: 0.5;
	}

	.gdymc_module.gdymc_invisible {
		display: none;
	}

	.gdymc_module.gdymc_active .gdymc_mark_module {
		background: #1e8cbe;
		color: #fff;
		color: rgba(255,255,255,0.6);
	}

	.gdymc_module.gdymc_active .gdymc_mark_module:hover {
		color: rgba(255,255,255,0.7);
	}

	.gdymc_module.gdymc_invisible .gdymc_moduleinner {
		opacity: 0.5;
	}

	.gdymc_edit .gdymc_module.gdymc_invisible {
		display: block;
	}

	#gdymc_adminbar, .gdymc_modulebar {
		height: 40px;
		background: #222;
		display: block;
		position: relative;
		z-index: 10;
	}
	
	#gdymc_adminbar .dashicons, .gdymc_modulebar .dashicons {
		line-height: 40px;
	}

	#gdymc_adminbar {
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		z-index: 9999999;
		overflow: hidden;
	}
	
	.gdymc_preview .gdymc_modulebar {
		display: none;
	}
	
	#gdymc_adminbar button, .gdymc_modulebar button {
		border: none;
		background: none;
		height: 40px;
		color: #888;
		display: inline-block;
		min-width: 50px;
		text-align: center;
		outline: none;
		cursor: pointer;
		font: 400 13px/40px "Open Sans",sans-serif;
		position: relative;
	}
	
	#gdymc_adminbar #gdymc_save {
		background: #1e8cbe;
		padding: 0px 20px;
		color: #fff;
	}
	
	#gdymc_adminbar button:hover, .gdymc_modulebar button:hover {
		color: #bbb;
		background: #1b1b1b;
	}
	
	#gdymc_adminbar button.active, .gdymc_modulebar button.active {
		background: #2ea2cc;
		color: rgba(255,255,255,0.6);
	}
	
	#gdymc_togglepreview .dashicons {
		position: relative;
	}
	
	.gdymc_edit #gdymc_togglepreview .dashicons::after {
		content: '';
		display: block;
		position: absolute;
		width: 75%;
		height: 2px;
		left: 0.15em;
		bottom: -0.4em;
		background: #999;
		opacity: 0.4;
		z-index: 0;
	}

	#gdymc_Dashboard > .dashicons {
		font-size: 16px;
	}
	
	#gdymc_wpmenu {
		display: none;
		position: fixed;
		top: 40px;
		right: 0px;
		background: #333;
		width: 180px;
		padding-bottom: 20px;
		z-index: 99999999;
	}
	
	#gdymc_wpmenu a {
		background: #333;
		padding: 13px 20px;
		display: block;
		text-decoration: none;
		color: #fff;
	}

	#gdymc_wpmenu a:first-child {
		background: #2ea2cc;
		padding: 20px 20px;
		margin-bottom: 20px;
	}

	#gdymc_wpmenu a .dashicons {
		opacity: 0.4;
		margin-right: 6px;
		position: relative;
		top: -4px;
		margin-bottom: -6px;
	}

	#gdymc_wpmenu a:hover .dashicons {
		opacity: 0.6;
	}

	.gdymc_format_subscript .dashicons::after,
	.gdymc_format_supscript .dashicons::after {
		content: '2';
		font-weight: bold;
		font-size: 0.5em;
		position: relative;
		top: -0.2em;
		left: -0.2em;
		opacity: 0.7;
		font-family: sans-serif;
	}

	.gdymc_format_subscript .dashicons::after {
		top: -1.1em;
	}

	
	
	/******************************** TOOLTIPS ********************************/
	
	#gdymc_tooltip {
		position: absolute;
		padding: 10px 15px;
		background: #111;
		color: #fff;
		margin-top: -25px;
		z-index: 999999999;
		white-space: nowrap;
	}
	
	#gdymc_tooltip_arrow {
		position: absolute;
		width: 30px;
		height: 10px;
		top: -10px;
		overflow: hidden;
	}

	.gdymc_tooltip_left #gdymc_tooltip_arrow {
		left: 10px;
	}

	.gdymc_tooltip_right #gdymc_tooltip_arrow {
		right: 10px;
	}
	
	#gdymc_tooltip_arrow::after {
		content: '';
		width: 40px;
		height: 40px;
		top: 10px;
		left: -5px;
		position: absolute;
		background: #111;
		
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	
	/******************************** MODULES ********************************/
	
	#gdymc_modules {
		background: #363636;
		position: fixed;
		top: 40px;
		left: 0px;
		width: 100%;
		display: none;
		z-index: 9999999;
	}
	
	#gdymc_modules_search {
		border: none;
		outline: none;
		background: #2ea2cc;
		width: 100%;
		text-align: center;
		height: 60px;
		line-height: 60px;
		color: #fff;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		transition: all 0.07s ease-in-out;
	}
	
	#gdymc_modules_search:focus {
		height: 80px;
		line-height: 80px;
		font-size: 1.2em;
		letter-spacing: 0.4em;
	}
	
	#gdymc_modules_search::-webkit-input-placeholder {
		color: rgba(255,255,255,0.5);
	}
	
	#gdymc_modules_search:-moz-placeholder { /* Firefox 18- */
		color: rgba(255,255,255,0.5);
	}
	
	#gdymc_modules_search::-moz-placeholder {  /* Firefox 19+ */
		color: rgba(255,255,255,0.5);
	}
	
	#gdymc_modules_search:-ms-input-placeholder {  
		color: rgba(255,255,255,0.5);
	}
	
	#gdymc_modules_inner {
		white-space: nowrap;
		position: relative;
		width: 100%;
		overflow: hidden;
		text-align: center;
	}
	
	.gdymc_modules_add_container {
		display: inline-block;
		position: relative;
		cursor: move;
		vertical-align: middle;
	}
	
	.gdymc_modules_add_container:first-child {
		margin-left: 20px;
	}
	
	.gdymc_modules_add_container:last-child {
		margin-right: 20px;
	}
	
	.gdymc_modules_add_image {
		outline: none;
		background: #4b4b4b;
		border: none;
		margin: 30px 10px 45px 10px;
		width: 120px;
		height: 80px;
		color: #fff;
		cursor: pointer;
		text-transform: uppercase;
		background-image: url(../images/thumb.svg);
		background-size: 120px 80px;
		background-position: center center;
		outline: solid 0px #222;
	}
	
	.gdymc_modules_add_label {
		position: absolute;
		bottom: 20px;
		left: 10px;
		width: 120px;
		text-align: center;
		text-transform: uppercase;
		font-weight: bold;
		font-size: 10px;
		color: #999;
		z-index: 5;
		overflow: hidden;
		text-overflow: ellipsis;
		cursor: move;
	}

	.gdymc_tabs_content .gdymc_MoveUp,
	.gdymc_tabs_content .gdymc_MoveTop,
	.gdymc_tabs_content .gdymc_MoveBottom,
	.gdymc_tabs_content .gdymc_MoveDown {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}
	

	/******************************** MODULE POSITION ********************************/

	.gdymc_moduleposition {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
	}

	.gdymc_moduleposition_area {
		position: absolute;
		top: 0px;
		left: 10%;
		width: 74%;
		height: 100%;
		padding: 0px 3%;
		box-shadow: inset 3px 0px 0px rgba(0,0,0,0.02), inset -3px 0px 0px rgba(0,0,0,0.02);
	}

	.gdymc_moduleposition_dummy {
		position: relative;
		height: 25%;
		background: url(../images/stripe.png);
	}

	.gdymc_moduleposition_module {
		position: relative;
		height: 50%;
		background: #DE7053;
	}
	
	.gdymc_moduleposition .gdymc_moduleposition_moveup,
	.gdymc_moduleposition .gdymc_moduleposition_movedown,
	.gdymc_moduleposition .gdymc_moduleposition_movebottom,
	.gdymc_moduleposition .gdymc_moduleposition_movetop {
		width: 100%;
		cursor: pointer;
		z-index: 2;
		background: rgba(0,0,0,0.0);
		position: relative;
	}

	.gdymc_moduleposition .gdymc_moduleposition_moveup:hover,
	.gdymc_moduleposition .gdymc_moduleposition_movedown:hover,
	.gdymc_moduleposition .gdymc_moduleposition_movebottom:hover,
	.gdymc_moduleposition .gdymc_moduleposition_movetop:hover {
		background: rgba(0,0,0,0.1);
	}

	.gdymc_moduleposition .gdymc_moduleposition_moveup::after,
	.gdymc_moduleposition .gdymc_moduleposition_movedown::after,
	.gdymc_moduleposition .gdymc_moduleposition_movebottom::after,
	.gdymc_moduleposition .gdymc_moduleposition_movetop::after {
		content: '';
		font-family: 'Dashicons';
		color: #000;
		position: absolute;
		width: 50px;
		width: 50px;
		line-height: 50px;
		text-align: center;
		margin-top: -25px;
		margin-left: -25px;
		top: 50%;
		left: 50%;
		font-size: 30px;
		display: none;
	}

	.gdymc_moduleposition .gdymc_moduleposition_moveup:hover::after,
	.gdymc_moduleposition .gdymc_moduleposition_movedown:hover::after,
	.gdymc_moduleposition .gdymc_moduleposition_movebottom:hover::after,
	.gdymc_moduleposition .gdymc_moduleposition_movetop:hover::after {
		display: block;
	}

	.gdymc_moduleposition .gdymc_moduleposition_moveup {
		height: 50%;
	}

	.gdymc_moduleposition .gdymc_moduleposition_moveup::after {
		content: "\f343";
	}

	.gdymc_moduleposition .gdymc_moduleposition_movedown {
		height: 50%;
	}

	.gdymc_moduleposition .gdymc_moduleposition_movedown::after {
		content: "\f347";
	}

	.gdymc_moduleposition .gdymc_moduleposition_movetop {
		position: absolute;
		top: 0px;
		height: 25%;
	}

	.gdymc_moduleposition .gdymc_moduleposition_movetop::after {
		content: "\f342";;
	}

	.gdymc_moduleposition .gdymc_moduleposition_movebottom {
		position: absolute;
		bottom: 0px;
		height: 25%;
	}

	.gdymc_moduleposition .gdymc_moduleposition_movebottom::after {
		content: "\f346";
	}


	
	/******************************** OVERLAY ********************************/
	
	#gdymc_overlay_shadow {
		position: fixed;
		top: 0px;
		left: 0px;
		bottom: 0px;
		right: 0px;
		background: rgba(0,0,0,0.5);
		display: none;
		z-index: 99999999;
		opacity: 0.0;
		
		transition: all 0.1s ease-in-out;
	}

	#gdymc_overlay_shadow.gdymc_active {
		opacity: 1.0;
	}
	
	.gdymc_preview #gdymc_overlay_shadow,
	.gdymc_preview .gdymc_overlay_window {
		display: none !important;
	}
	
	.gdymc_overlay_window {
		position: fixed;
		background: #fff;
		width: 600px;
		top: 10%;
		bottom: 10%;
		left: 50%;
		margin-left: -300px;
		z-index: 999999999;
		box-shadow: 0px 5px 30px rgba(0,0,0,0.3);
		transition: all 0.1s ease-in-out;
		transform: scale(0.6);
	}

	.gdymc_overlay_window.gdymc_active {
		opacity: 1.0;

		transform: scale(1.0);
	}

	.gdymc_overlay_images {
		left: 10%;
		right: 10%;
		margin-left: 0px;
		width: auto;
	}
	
	.gdymc_overlay_head {
		background: #fafafa;
		border-bottom: solid 1px #efefef;
		height: 135px;
		position: absolute;
		top: 0px;
		left: 0px;
		right: 0px;
	}
	
	.gdymc_overlay_close {
		position: absolute;
		top: 35px;
		right: 40px;
		cursor: pointer;
		width: 40px;
		height: 40px;
		text-align: center;
	}
	
	.gdymc_overlay_close .dashicons {
		font-size: 30px;
		cursor: pointer;
		color: #aaa;
	}
	
	.gdymc_overlay_close:hover .dashicons {
		color: #777;
	}
	
	.gdymc_overlay_title {
		color: #333;
		font-size: 35px;
		font-weight: 300;
		padding: 35px 40px 20px 40px;
		line-height: 1em;
	}
	
	.gdymc_overlay_foot {
		position: absolute;
		height: 100px;
		bottom: 0px;
		left: 0px;
		right: 0px;
		background: #fafafa;
		box-shadow: 0px -1px 0px rgba(0,0,0,0.06), 0px -1px 0px rgba(255,255,255,0.7);
		z-index: 2;
	}
	
	.gdymc_overlay_foot_inner {
		padding: 30px 40px;
	}
	
	.gdymc_overlay_content {
		position: absolute;
		top: 136px;
		left: 0px;
		right: 0px;
		bottom: 99px;
		overflow: auto;
	}
	
	.gdymc_overlay_content_padding {
		padding: 40px;
	}
	
	#gdymc_insertlink_input {
		display: block;
		border: solid 1px #eee;
		height: 80px;
		line-height: 80px;
		padding: 0px 50px;
		outline: none;
		font-size: 20px;
		width: 520px;
		position: absolute;
		top: 50%;
		margin-top: -40px;

		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		-o-appearance: none;
		-ms-appearance: none;
		
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
	}

	.gdymc_insertlink_source {
		margin-bottom: 20px;
		cursor: pointer;
	}

	.gdymc_insertlink_source-title {
		font-weight: bold;
	}

	.gdymc_insertlink_source-meta {
		color: #999;
	}

	.gdymc_loadmore {
		display: block;
		clear: both;
		text-align: center;
		cursor: pointer;
		border-top: solid 1px #eee;
		padding-top: 40px;
		text-transform: uppercase;
		font-weight: bold;
		letter-spacing: 0.1em;
		color: #999;
	}

	.gdymc_overlay_images .gdymc_loadmore {
		margin: 0px 30px 20px 30px;
	}



	/******************************** ERROR OVERLAY ********************************/

	#gdymc_error_shadow {
		position: fixed;
		top: 0px;
		left: 0px;
		bottom: 0px;
		right: 0px;
		background: rgba(0,0,0,0.5);
		z-index: 999999999;
		opacity: 0.0;

		transition: all 0.1s ease-in-out;
	}

	#gdymc_error_shadow.gdymc_active {
		opacity: 1.0;
	}
	
	#gdymc_error_window {
		position: fixed;
		background: #fff;
		width: 500px;
		height: auto;
		top: 50%;
		margin-top: -200px;
		left: 50%;
		margin-left: -250px;
		z-index: 999999999999;
		box-shadow: 0px 5px 30px rgba(0,0,0,0.3);
		opacity: 0.0;

		transition: all 0.1s ease-in-out;
		transform: scale(0.6);
	}

	#gdymc_error_window.gdymc_active {
		opacity: 1.0;

		transform: scale(1.0);
	}

	#gdymc_error_title {
		font-weight: 500;
		padding: 35px 40px;
		font-size: 26px;
		color: #fff;
		position: relative;
	}

	#gdymc_error_text {
		padding: 35px 40px;
	}

	#gdymc_error_buttons {
		padding: 20px 40px;
		background: #fafafa;
		border-top: solid 1px #efefef;
		text-align: right;
	}

	#gdymc_error_buttons button {
		background: #f7f7f7;
		border: solid 1px #e9e9e9;
		color: #555;
		margin-left: 20px;
	}

	#gdymc_error_buttons button:hover {
		background: #f7f7f7;
		border: solid 1px #dadada;
		box-shadow: 0px 2px 1px rgba(0,0,0,0.03);
	}

	#gdymc_error_close::after {
		font-family: 'Dashicons';
		content: "\f335";
		display: block;
		width: 50px;
		height: 50px;
		line-height: 50px;
		text-align: center;
		position: absolute;
		top: 50%;
		margin-top: -25px;
		right: 30px;
		cursor: pointer;
		font-size: 30px;
		color: rgba(0,0,0,0.3);
	}

	#gdymc_error_close:hover::after {
		color: rgba(0,0,0,0.5);
	}

	
	
	/******************************** TABS ********************************/
	
	.gdymc_tabs_navigation {
		padding-left: 40px;
		position: absolute;
		left: 0px;
		bottom: -1px;
	}
	
	.gdymc_tabs_button {
		display: inline-block !important;
		padding: 15px;
		margin-right: 15px;
		border: solid 1px #eaeaea;
		border-bottom: none;
		cursor: pointer;
		color: #888;
	}
	
	.gdymc_tabs_button:hover {
		color: #444;
	}
	
	.gdymc_tabs_button.gdymc_active {
		background: #fff;
		color: #333;
	}
	
	.gdymc_tabs_content {
		display: none !important;
		padding: 40px;
	}
	
	.gdymc_tabs_content.gdymc_active {
		display: block !important;
	}
	
	
	
	/********************************* OPTIONS *********************************/
	
	.gdymc_optioncontainer {
				padding-bottom: 30px;	
	}
	
	.gdymc_optioncontainer:last-child {
				padding-bottom: 0px;	
	}
	
	.gdymc_optioncontainer::after {
				content: '';
				display: block;
				clear: both;
	}
	
	.gdymc_optionlabel, .gdymc_option, .gdymc_button {
		font-family: 'Open Sans', Tahoma, Arial, sans-serif;
		font-size: 13px;
	}
	
	.gdymc_optionlabel, .gdymc_option {
		color: #333;
		padding: 15px;
		float: left;
		border: solid 1px #eaeaea;
		outline: none;
		width: 50%;
		display: block;
		background: #fff;
		border-radius: 0px;
		line-height: 14px;
		
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		-o-appearance: none;
		-ms-appearance: none;
		
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
	}
	
	.gdymc_option-text {
		padding: 13px 15px;
	}
	
	.gdymc_optionlabel {
		color: #999;
		background: #fbfbfb;
		border-right: 0px;
	}
	
	.gdymc_option-select {
		cursor: pointer;
		background: url(../images/select.svg) no-repeat right center;
	}
	
	/******************************** EDITABLE CONTENT ********************************/
	
	.gdymc_image {
		min-width: 100px;
		min-height: 100px;
		background: rgba(186,133,71,0.2);
		cursor: pointer;
		display: inline-block;
		position: relative;
		vertical-align: middle;
		outline: 2px solid rgba(186,133,71,0.3);
	}
	.gdymc_image img {
		transition: opacity 0.1s ease-in-out;
	}
	.gdymc_edit .gdymc_image:hover, .gdymc_edit .gdymc_image.gdymc_active {
		background: rgba(186,133,71,0.4);
	}
	.gdymc_image:hover {
		outline: 2px solid rgba(186,133,71,1.0);	
	}
	.gdymc_edit .gdymc_image:hover::after {
		color: #000;
		color: rgba(0,0,0,0.7);
		text-shadow: 0px 0px 50px rgba(186,133,71,0.9);
		font: 400 40px/40px dashicons;
		speak: none;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		background-image: none!important;
		content: "\f306";
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 40px;
		height: 40px;
		text-align: center;
		margin-left: -20px;
		margin-top: -20px;
	}
	.gdymc_edit .gdymc_image.gdymc_active::after {
		content: '';
		display: block;
		
		border: solid 5px rgba(0,0,0,0.7);
		border-bottom: solid 5px rgba(0,0,0,0);
		border-left: solid 5px rgba(0,0,0,0);
		border-radius: 40px;
		
		position: absolute;
		top: 50%;
		left: 50%;
		width: 20px;
		height: 20px;
		margin-left: -15px;
		margin-top: -15px;
		
		-webkit-animation: gdymcspin 1s linear infinite;
		-moz-animation: gdymcspin 1s linear infinite;
		animation: gdymcspin 1s linear infinite;
	}
	
	.gdymc_edit .gdymc_image:hover img, .gdymc_edit .gdymc_image.gdymc_active img {
		opacity: 0.7;	
	}

	.gdymc_edit .gdymc_image.dz-drag-hover {
		background: #0f0;
	}

	.gdymc_edit .gdymc_image.dz-drag-hover img {
		opacity: 0.7;	
	}
	
	
	.gdymc_text {
		display: block;
		min-height: 1em;
		min-width: 1em;
		position: relative;
	}
	.gdymc_edit .gdymc_text {
		outline: 2px solid rgba(46,162,204,0.2);
	}
	.gdymc_edit .gdymc_text:hover, .gdymc_edit .gdymc_text:focus {
		outline: 2px solid rgba(46,162,204,1.0);
	}
	
	
	.gdymc_Textmodal, .gdymc_imagemodal {
		position: absolute;
		margin-top: -40px;
		height: 20px;
		width: auto;
		padding: 0px 10px;
		background: rgba(46,162,204,1.0);
		font: normal 600 10px/20px "Open Sans",sans-serif;
		color: #fff;
		z-index: 1000;
		margin-left: -2px;
	}
	.gdymc_preview .gdymc_Textmodal, .gdymc_preview .gdymc_imagemodal {
		display: none;	
	}
	.gdymc_imagemodal {
		background: rgba(186,133,71,1.0);
	}
	.gdymc_text.gdymc_maxtext, .gdymc_text:focus.gdymc_maxtext, .gdymc_text:hover.gdymc_maxtext {
		outline: 2px solid rgba(255,186,0,1);

		-webkit-animation: gdymc_blink 1.5s ease-out infinite;
		-moz-animation: gdymc_blink 1.5s ease-out infinite;
		animation: gdymc_blink 1.5s ease-out infinite;
	}

	.gdymc_Textmodal.gdymc_maxtext {
		background: #ffba00;
	}
	.gdymc_preview .gdymc_text, .gdymc_preview .gdymc_image {
		outline:none;
		display: inline;
	}
	.gdymc_preview .gdymc_image {
		cursor: default;	
	}


	@keyframes gdymc_blink { 
		0% { 
			outline: 2px solid rgba(255,186,0,1);
		}
		40% {
			outline: 2px solid rgba(255,186,0,1);
		}
		90% {
			outline: 2px solid rgba(255,186,0,0.4);
		}
		100% {
			outline: 2px solid rgba(255,186,0,1);
		}
	}

	@-moz-keyframes gdymc_blink { 
		0% { 
			outline: 2px solid rgba(255,186,0,1);
		}
		40% {
			outline: 2px solid rgba(255,186,0,1);
		}
		90% {
			outline: 2px solid rgba(255,186,0,0.4);
		}
		100% {
			outline: 2px solid rgba(255,186,0,1);
		}
	}

	@-webkit-keyframes gdymc_blink { 
		0% { 
			outline: 2px solid rgba(255,186,0,1);
		}
		40% {
			outline: 2px solid rgba(255,186,0,1);
		}
		90% {
			outline: 2px solid rgba(255,186,0,0.4);
		}
		100% {
			outline: 2px solid rgba(255,186,0,1);
		}
	}


	
	/******************************** EDITABLE TABLE ********************************/
	
	.gdymc_table_container {
		position: relative;
	}

	.gdymc_table_addrow, .gdymc_table_addcol,
	.gdymc_table_removerow, .gdymc_table_removecol {
		position: absolute;
		border: none;
		background: #2ea2cc;
		cursor: pointer;
		display: none;
	}

	.gdymc_table_addrow:hover, .gdymc_table_addcol:hover,
	.gdymc_table_removerow:hover, .gdymc_table_removecol:hover {
		background: #1e8cbe;
	}

	.gdymc_edit .gdymc_table_container:hover .gdymc_table_addrow, .gdymc_edit .gdymc_table_container:hover .gdymc_table_addcol,
	.gdymc_edit .gdymc_table_container:hover .gdymc_table_removerow, .gdymc_edit .gdymc_table_container:hover .gdymc_table_removecol {
		display: block;
	}

	.gdymc_table_addrow::after, .gdymc_table_addcol::after,
	.gdymc_table_removerow::after, .gdymc_table_removecol::after {
		font-family: 'Dashicons';
		position: absolute;
		width: 40px;
		height: 40px;
		top: 50%;
		left: 50%;
		margin-top: -20px;
		margin-left: -20px;
		line-height: 40px;
		text-align: center;
		font-size: 20px;
		color: #fff;
	}

	.gdymc_table_addrow::after, .gdymc_table_addcol::after {
		content: "\f132";
	}

	.gdymc_table_removerow::after, .gdymc_table_removecol::after {
		content: "\f158";
	}

	.gdymc_table_addrow {
		height: 40px;
		width: 50%;
		left: 50%;
		bottom: -38px;
	}

	.gdymc_table_addcol {
		height: 50%;
		width: 40px;
		top: 50%;
		right: -38px;
	}

	.gdymc_table_removerow {
		height: 40px;
		width: 50%;
		left: 0%;
		bottom: -38px;
	}

	.gdymc_table_removecol {
		height: 50%;
		width: 40px;
		top: 0%;
		right: -38px;
	}

	.gdymc_edit .gdymc_table td {
		outline: 2px solid rgba(46,162,204,0.2);
		min-height: 1em;
		min-width: 2em;
	}

	.gdymc_edit .gdymc_table td:hover, .gdymc_edit .gdymc_table td:focus {
		outline: 2px solid rgba(46,162,204,1.0);
	}



	/******************************** IMAGE OVERLAY ********************************/
	
	.gdymc_overlay_images .gdymc_overlay_content_padding {
		padding: 20px;
	}

	.gdymc_imagethumb, .gdymc_imagethumb img {
		width: 130px;
		height: 130px;
		cursor: pointer;
	}

	.gdymc_imagethumb {
		margin: 20px;
		border: solid 7px rgba(255,255,255,1.0);
		float: left;
		position: relative;
		background: url(../images/transparent.png);
		background-size: 20px;
		display: none;

		transition: all 0.1s ease-in-out;
	}

	.gdymc_imagethumb::after {
		content: '';
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		box-shadow: inset 1px 0px 0px rgba(0,0,0,0.1), inset -1px 0px 0px rgba(0,0,0,0.1), inset 0px 1px 0px rgba(0,0,0,0.1), inset 0px -1px 0px rgba(0,0,0,0.1);
	}

	.gdymc_imagethumb.gdymc_selected {
		border: solid 7px rgba(46,162,204,1.0);
	}

	.gdymc_imagethumb.gdymc_selected::after {
		box-shadow: 1px 0px 0px rgba(0,0,0,0.1), -1px 0px 0px rgba(0,0,0,0.1), 0px 1px 0px rgba(0,0,0,0.1), 0px -1px 0px rgba(0,0,0,0.1);
	}

	.gdymc_imagethumb_actionindicator {
		width: 30px;
		height: 30px;
		position: absolute;
		top: -18px;
		right: -18px;
		border: solid 3px #fff;
		background: #2ea2cc;
		opacity: 0.0;
		cursor: pointer;
		z-index: 1;

		transition: all 0.1s ease-in-out;
		transform: scale(0.0);
	}

	.gdymc_imagethumb_actionindicator::after {
		font-family: 'Dashicons';
		content: "\f147";
		position: absolute;
		top: 0px;
		left: 0px;
		width: 30px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		color: #fff;
		font-size: 22px;
	}

	.gdymc_imagethumb-smaller.gdymc_selected {
		border: solid 7px #ffba00;
	}

	.gdymc_imagethumb-smaller .gdymc_imagethumb_actionindicator {
		background: #ffba00;
	}

	.gdymc_imagethumb-bigger .gdymc_imagethumb_actionindicator::after {
		content: "\f165";
		font-size: 14px;
	}

	.gdymc_imagethumb-smaller .gdymc_imagethumb_actionindicator::after {
		content: "\f335";
		font-size: 20px;
	}

	.gdymc_imagethumb.gdymc_selected .gdymc_imagethumb_actionindicator {
		opacity: 1.0;
		transform: scale(1.0);
	}

	#gdymc_croptable {
		overflow: hidden;
		width: 100%;
		height: 100%;
		text-align: center;
		z-index: 9999999999;
		position: fixed;
		top: 0px;
		left: 0px;
		display: none;
		background: rgba(0,0,0,0.5);
		cursor: pointer;
	}

	#gdymc_croptable .jcrop-holder {
		display: inline-block;
		box-shadow: 0px 5px 30px rgba(0,0,0,0.7);
	}

	.gdymc_imagelist_mode_exact .gdymc_imagethumb-exact {
		display: block;
	}

	.gdymc_imagelist_mode_bigger .gdymc_imagethumb-bigger {
		display: block;
	}

	.gdymc_imagelist_mode_all .gdymc_imagethumb-exact,
	.gdymc_imagelist_mode_all .gdymc_imagethumb-bigger,
	.gdymc_imagelist_mode_all .gdymc_imagethumb-smaller {
		display: block;
	}
	

	/******************************** DROPZONE ********************************/

	#gdymc_dropzone_drag {
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 999999999999;
		background: rgba(30,140,190,0.9);
		width: 100%;
		height: 100%;
		display: none;
	}

	#gdymc_dropzone_drag::after {
		content: '';
		display: block;
		position: fixed;
		top: 5%;
		left: 5%;
		width: 90%;
		height: 90%;
		border: solid 3px rgba(255,255,255,0.3);
	}

	#gdymc_dropzone_drag div {
		font-size: 30px;
		color: #fff;
		color: rgba(255,255,255,0.9);
		position: fixed;
		left: 0px;
		top: 50%;
		margin-top: -25px;
		text-align: center;
		width: 100%;
		height: 50px;
		line-height: 50px;
		text-transform: uppercase;
	}

	#gdymc_dropzone_drag div::before {
		content: "\f104";
		font-family: 'Dashicons';
		font-size: 50px;
		position: relative;
		top: 12px;
		margin-right: 15px;
		opacity: 0.6;
	}

	#gdymc_dropzone_preview {
		position: fixed;
	}















	