@keyframes cssload-spin {100% {transform: rotate(360deg);transform: rotate(360deg)}}

body {
    font-family: sans-serif;
    padding: 10px 40px
}

/* body.default-body {
	overflow: auto !important;
	overscroll-behavior: auto !important;
} */

.btn {
    background: #fff;
    border: solid 1px #ccc !important;
    box-shadow: #ddd 0 0 3px;
    color: #000 !important;
}

.editor-container.vector-editor-fullwindow {
    width: 90% !important; 
    height: 90% !important; 
    position: absolute !important;
    top: 5% !important;
    left:  5% !important;
    right:  5% !important;
    bottom:  5% !important;
    /*position: relative; */
    border: solid 1px #ccc; 
    box-shadow: #efefef 0 0 14px;
}

.pixlpark-editor-container {
    display:  none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.editor-container.error {
    border: solid 1px #983a3a;
    box-shadow: #e15959 0 0 3px;
}

.editor-container .error-message {
    position: relative;
    margin: 20px;
    text-align: left;
    color: #000000;
    font-family: monospace;
    z-index: 1000000000;
    background: #ffcece;
    padding: 10px 20px;
    border: solid 1px #a52020;
}

.loading-wheel:before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    z-index: 1112;
    display: block;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 2px solid rgb(117,117,117);
    border-radius: 50%;
    border-left-color: transparent;
    border-right-color: transparent;
    animation: cssload-spin 500ms infinite linear;
}

.loading-wheel:after{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    background: #fff;
    z-index: 1111;
    opacity: .9;
    display: block;
}

.pixlpark-close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
    opacity: 0.7;
    cursor: pointer;
}

.pixlpark-close:hover {
    opacity: 1;
}

.pixlpark-close:before, 
.pixlpark-close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;

    border: solid 1px #fff; 
    box-shadow: #efefef 0 0 14px;
}

.pixlpark-close:before {
    transform: rotate(45deg);
}

.pixlpark-close:after {
    transform: rotate(-45deg);
}

.pixlpark-designer-div .vector-editor-ui-font-size-input {
	height: 27px;
	width: 50px;
}

.pixlpark-designer-div .tm-element-description {
	background-color: transparent;
/* 	min-height: 144px;
	position: relative; */
}

.pixlpark-error {
	color: var(--e-global-color-878c792);
	font-size: 20px;
	font-weight: bold;
	display: none;
}

td.product-name a.pixlpark-button,
.pixlpark-button {
	background-color: rgb(163, 30, 33);
	border-radius: 28px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	margin: 10px 0 20px;
	padding: 12px 24px;
    font-size: 20px;
    text-align: center;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;};
}

.test-open-button {
	pointer-events: default !important;
}

td.product-name a.pixlpark-button:hover,
.pixlpark-button:hover {
	background-color: rgb(209, 81, 84);
}

body.vector-editor-fixed-body.liel-vector-editor-body {
    overflow: auto !important;
    bottom:  auto !important;
    left:  auto !important;
    right:  auto !important;
    top:  auto !important;
    position:  relative !important;
}

.vector-editor-header__breadcrumbs,
span[data-bind="html:totalPriceText"] {
    display: none;
}

.pixlpark-editor-header {
    position: absolute;
    top: 14px;
    left: 50%;
	transform: translateX(-50%);
/*     right: 0; */
    text-align: center;
	width: 30%;
    z-index: 9;
}

.readonly {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

    pointer-events: none;
    background: #CFCFCF;
}

.pixlpark-ajax-loader {
    background-color: rgba(0, 0, 0, 0.5);
/*    background-image: url('../img/ajax_loader.gif');*/
    background-image: url('../img/liel-e.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80px;

    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;

	-webkit-animation: backandforth 5s ease 0s;
    -webkit-animation-iteration-count:infinite;
    animation: backandforth 5s ease 0s;
    animation-iteration-count:infinite;
}

@keyframes backandforth {
	0%    { 
		-webkit-filter: grayscale(0%); 
		filter: grayscale(0%); 
/* 		-webkit-transform: rotate(60deg);
		transform:rotate(60deg); */
	}
	25%   { 
		-webkit-filter: grayscale(50%); 
		filter: grayscale(50%); 
/* 		-webkit-transform: rotate(-60deg);
		transform:rotate(-60deg); */
	}
	50%   { 
		-webkit-filter: grayscale(100%); 
		filter: grayscale(100%); 
/* 		-webkit-transform: rotate(60deg);
		transform:rotate(60deg); */
	}
	75%   { 
		-webkit-filter: grayscale(50%); 
		filter: grayscale(50%); 
/* 		-webkit-transform: rotate(-60deg);
		transform:rotate(-60deg); */
	}
	100%  { 
		-webkit-filter: grayscale(0%); 
		filter: grayscale(0%); 
/* 		-webkit-transform: rotate(60deg);
		transform:rotate(60deg); */
	}
}

.pxpupmgr__tab__sidebar__dropdown .pxpupmgr__tab__content__toolbar_button {
    min-width: 100px;
}

.pxpupmgr__tab__sidebar__filters__filter__button .pxpupmgr__tab__sidebar__filters__filter__title {
    padding-right: 30px;
}

.vector-editor-rtl .vector-editor-preserver-selector-menu {
    left: -66px !important;
    top: -32px;
}

.modal-box {
	position: fixed;
	top: 25%;
	left: 50%;
	z-index: 10005;
	border-radius: 5px;
	border: 1px solid #c1c1c1;
	border-top: 1px solid #a9a9a9;
	background: #FFF;
}

.save-design-button-div .tm-element-description {
	background: none;
}

.pixlpark-message.saved-design-message.success {
	position: relative;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 24px;
	width: 80%;
	margin: 0 auto;
	background: #CCC;
}

.pixlpark-message.saved-design-message.success a {
	font-weight: bold;
	color: navy;
}

.pixlpark-message.saved-design-message.success a:hover {
	text-decoration: underline;
}

.pixlpark-message.saved-design-message.success:after {
    position: absolute;
    top: 0;
    right: 0;
    content: 'X';
    display: block;
	cursor: pointer;
	width: 30px;
	height: 30px;
	text-align: center;
}

.pixlpark-message.error {
	color: red;
}

button.delete-design {
	display: block;
	margin: 5px auto;
}

.saved-designs-table li {
	float: left;
    margin: 5px;
    padding-left: 1em;
}

.saved-designs-table th,
.saved-designs-table td {
	position: relative;
	text-align: center;
}

.liel-design-preview {
/* 	position: absolute; */
/* 	top: 0;
	left: 0;
	right: 0; */
	display: block;
	background: rgba(0, 0, 0, 0.5);
	color: #FFF;
	text-align: center;
}

.btn.btn-color-default.save-design-button:hover,
.btn.btn-color-default.save-design-button {
	background-color: transparent;
	border: none !important;
	padding: 0;
	font-weight: normal;
	font-size: 15px;
	box-shadow: none;
}

.btn.btn-color-default.save-design-button:hover {
	color: rgba(51, 51, 51, .6) !important;	
}

.tm-extra-product-options .design-results-div h5.tc-cell.tc-col-auto {
	width: 20%;
}

.tm-extra-product-options .design-results-div h5.tc-cell.tc-col-auto .tc-epo-element-label-text {
	margin: auto;
}

.tm-extra-product-options .tmcp-textfield.tm-epo-field.design-results {
	width: 100%;
}

.readonly-selector {
	opacity: 0.5;
}

.readonly-selector label {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	cursor: auto !important;
}

.wd-my-account-links .saved-designs-link a:before {
	content: "\f145";
}

.finished-project {
	position: relative;
	opacity: 0.7;
}

/* .finished-project:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0.5;
	background: #CCC;
} */

.finished-project a:not(.liel-design-preview) {
	pointer-events: none;	
}

/* .finished-project td {
	position: relative;
} */

.finished-project td .finished-message {
/* 	position: absolute;
	top: 16px;
	left: 0;
	right: 0;
	opacity: 1;
	background: #FFF; */
	font-weight: bold;
	color: var(--btn-accented-bgcolor);
}

/* .ready-design .templates-tool-sets-container__set__preview-wrapper:not([title*=LIEL]) {
    display: none;
} */

.tc-element-container.readonly {
	opacity: 0.5;
	pointer-events: none;
}