.certificate-create 
{
	display: grid;
	grid-template-columns: 1fr 438px;
	gap: 30px;
	max-width: 100%;
	margin-bottom: 80px;
}
.certificate-cover {
	overflow: hidden;
}
.certificate-cover-wrap {
	position: relative;
}
.certificate-cover-slider {
	max-width: 768px;
	margin: 0 auto 80px;
	position: relative;
}
.certificate-cover-preview {
	position: relative;
}
.certificate-cover-list.owl-carousel .owl-prev {
	left: 0;
	background: none;
	width: 100px;
}
.certificate-cover-list.owl-carousel .owl-next {
	background: none;
	width: 100px;
	right: 0;
}
.certificate-cover-list.owl-carousel .owl-prev::before,
.certificate-cover-list.owl-carousel .owl-next::before {
	display: block;
	content: '';
	width: 50px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none; /* Allows clicking through the overlay */
}
.certificate-cover-list.owl-carousel .owl-prev::after,
.certificate-cover-list.owl-carousel .owl-next::after {
	width: 80px;
	height: 80px;
	display: block;
	content: '';
	background: #ffffff url(./images/slider-arrow.svg) no-repeat center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	right: 20px;
	z-index: 2;
}
.certificate-cover-image {
	position: relative;
}
.certificate-cover-list.owl-carousel .owl-item:not(.center) {
    opacity: 0.2;
    transition: opacity 0.3s ease;
}
.certificate-cover-list.owl-carousel {
    opacity: 1;
}
.certificate-cover-image {
	width: 381px;
}
.certificate-cover-thumb {
	max-width: 640px;
	display: grid;
	grid-template-columns: repeat(auto-fit, 80px);
	gap: 16px 32px;
	margin: 0 auto;
	justify-content: space-between;
}
.certificate-cover-thumb-item {
	display: flex;
	align-items: center;
	justify-content: center;
}
.certificate-form-control {
	margin: 0 0 24px;
	position: relative;
}
.certificate-form-label {
	margin: 0 0 20px;
	font-size: 20px;
}
.certificate-form-value-list {
	display: flex;
	gap: 7px;
}
.certificate-form-value {
	display: block;
	padding: 13px 11px;
	border: 1px solid #000000;
    text-align: center;
	margin-bottom: 8px;
	flex: 1;
}
.certificate-form-value.active {
	background: #0D1937;
	border-color: #0D1937;
	color: #fff;
}
.certificate-form-input {
	font-family: "Geologica", sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight: 300;
    color: inherit;
	width: 100%;
    border: 1px solid #C5C5C5;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
	padding: 13px 17px;	
}
.certificate-form-input::placeholder,
.certificate-form-textarea::placeholder {
	font-family: "Geologica", sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight: 300;
	color: #979797;
}
.certificate-form-edit {
	position: relative;
}
.certificate-form-edit-btn {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	border: 1px solid #000000;
	background: #ffffff;
	cursor: pointer;
}
.certificate-form-edit-btn.active {
	display: none;
}
.certificate-delivery-change-btns {
	display: flex;
	margin-bottom: 20px;
	gap: 25px;
}
.certificate-type-sms,
.certificate-form-control input.certificate-type-sms {
	display: none;
}
.certificate-delivery-btn {
	display: flex;
    position: relative;
    cursor: pointer;
    align-items: center;
}
.certificate-delivery-btn::before
{
	content:'';
	display:block;
	width:18px;
	height:18px;
	border-radius:50%;
	border:1px solid #CCCCCC;
	background-color:white;
	margin-right: 16px;
}
.certificate-delivery-btn.active::before
{
	background-image: url('data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjgiIHdpZHRoPSI4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxjaXJjbGUgcj0iNCIgY3g9IjQiIGN5PSI0IiBmaWxsPSJibGFjayIgLz4gCjwvc3ZnPg==');
	background-position: center;
	background-repeat: no-repeat;
}
.certificate-form-note {
	margin-top: 10px;
	font-size: 14px;
	color: #979797;
}
.certificate-date-inpt {
	appearance: none;
    -moz-appearance: none;
	-webkit-appearance: none;
	background: #fff;
}
.certificate-date-inpt::--webkit-calendar-picker-indicator {
	background-image: none;
	width: 30px;
	height: 30px;
	z-index: 2;
	position: relative;
}
.certificate-date-wrap {
	position: relative;
}
.certificate-date-icon {
	position: absolute;
	top: 50%;
	right: 6px;
	margin-top: -15px;
	width: 24px;
	height: 24px;
	background: url('./images/icon-date.svg') no-repeat center/24px;
	background-color:white;
}
.certificate-form-control textarea {
	font-family: "Geologica", sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight: 300;
    color: inherit;
	width: 100%;
    border: 1px solid #C5C5C5;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
	padding: 13px 17px;	
}
.certificate-checkbox
{
	position:relative;
	display:inline-block;
	margin:6px 0;
	cursor:pointer;
	padding-left:40px;
}

.certificate-checkbox input
{
	position:absolute;
	display:inline;
	left:-25px;
	width:auto;
	height:auto;
	cursor:pointer;
	opacity:0;
}

.certificate-checkbox:before
{
	display: block;
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    top: 50%;
    left: 0;
    border: 1px solid #cccccc;
    background: #fff;
    margin-top: -12px;	
}
.certificate-checkbox.checked:before
{
	background: #fff url(./images/tick.svg) no-repeat center center/15px;
}
.certificate-privacy-accept {
	font-size: 14px;
	color: #979797;
	padding-left: 40px;
	margin-bottom: 40px;
}
.certificate-privacy-accept span::before {
	width: 24px;
	height: 24px;
}

.certificate-privacy-accept input:checked + span::before {
	background: #fff url(./images/tick.svg) no-repeat center center/15px	
}
.certificate-submit {
	width: 100%;
}

@media(max-width: 1080px)
{
	.certificate-create {
		display: block;
	}
	.certificate-cover {
		margin-bottom: 80px;
	}
}

@media(max-width: 980px)
{
	.certificate-cover-slider {
		margin-left: clac(var(--padding-side) * -1);
		margin-right: clac(var(--padding-side) * -1);
	}	
	.certificate-cover-thumb {
		gap: 16px 48px;
		max-width: none;
	}	
}

@media(max-width: 767px)
{
	.certificate-cover {
		margin-bottom: 40px;
	}
	.certificate-form-value {
		font-size: 14px;
		padding: 12px 3px;
	}
	.certificate-privacy-accept {
		margin-bottom: 20px;
	}
	.certificate-cover-image {
		width: 276px;
	}
	.certificate-cover-thumb {
		gap: 16px 10px;
		max-width: none;
	}
	.certificate-cover-list.owl-carousel .owl-prev {
		width: 30px;
	}
	.certificate-cover-list.owl-carousel .owl-next {
		width: 30px;
	}
	.certificate-cover-list.owl-carousel .owl-prev::before,
	.certificate-cover-list.owl-carousel .owl-next::before {
		width: 100%;
	}
	.certificate-cover-list.owl-carousel .owl-prev::after,
	.certificate-cover-list.owl-carousel .owl-next::after {
		width: 20px;
		height: 24px;
		background: url(./images/slider-arrow.svg) no-repeat center;
		border-radius: 0;
		right: 0;
	}	
}

@media(max-width: 360px)
{
	.certificate-form-value-list {
		flex-wrap: wrap;
	}
	.certificate-form-value {
		font-size: 12px;
		padding: 12px 3px;
	}	
}


.certificate-rights {
	font-size: 14px;
	margin-bottom: 20px;
}

.certificate-rights a {
	text-decoration: underline;
}

.certificate-rights a:hover {
	text-decoration: none;
}
.certificate-total {
	margin-right: 5px;
	font-weight: bold;
}
.certificate-field-label 
{
	margin:11px 0 0 12px;
	position:absolute;
	color:#717171;
	font-size:14px;
	line-height:24px;
	z-index: 2;
}

.certificate-field-label b
{
	font-weight:normal;
	color:#cd1041;
}
.certificate-form-control.focus .certificate-field-label
{
	z-index:2;
	position:absolute;
	margin-top:4px;
	font-size:12px;
	line-height:14px;
}
.certificate-field-error {
	border-color: red !important;
}
.certificate-field-error-message {
	color: red;
	margin: 3px 0;
	font-size: 14px;
}
.certificate-success-popup-wrap {
	max-width: 500px;
	text-align: center;
}
.certificate-success-popup-wrap img {
	max-width: 100%;
}
.certificate-success-popup-text {
	font-size: 18px;
	margin-top: 10px;
}
.certificate-success-popup-btns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 20px;
	text-align: center;
}
.certificate-error-messages {
	border: 1px solid red;
	color: red;
	padding: 10px;
	display: none;
	font-size: 14px;
	margin-bottom: 40px;
}

.certificate-cover-disable {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 2;
	background: #fff;
	opacity: 0.9;
}
.certificate-cover-disable-desc {
    background-color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
	width: 60%;
	margin: 0 auto;
	height: 100%;
	font-size: 20px;
	font-weight: 400;
}
.certificate-cover-thumb-disable {
	position: absolute;
	left: 0;
	right: 0;
	top: -5px;
	bottom: -5px;
	background: hsla(0,0%,100%,.8);
}

