/* certificate */

.certificate {}
.certificate .certificate_form {
	margin: 2em 0;
	background: url(img/certificate-preview.png);
	height: 620px;
	background-size: 100%;
	display: flex;
	justify-content: center;
}
.certificate .certificate_form .data {
    display: flex;
    flex-wrap: wrap;
    width: 550px;
    align-items: center;
    align-content: flex-start;
    margin-top: 330px;
    margin-left: 4px;
}
.certificate .certificate_form .data input {
    background: transparent;
    border: 1px solid #ffffff;
    padding: 0;
    text-align: center;
    color: #000000;
}
.certificate .certificate_form .data input:focus-visible {
	outline:none;
}
.certificate .certificate_form .data input.event_name {
    flex: 0 0 100%;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 23px;
}
.certificate .certificate_form .data input.event_author {
    flex: 0 0 100%;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 28px;
}
.certificate .certificate_form .data input.event_job {
    flex: 0 0 46%;
    margin-right: 15px;
}
.certificate .certificate_form .data input.event_company {
    flex: 0 0 calc(54% - 15px);
}
.certificate .download {
    
}
.certificate .download button {
	width: 370px;
    height: 50px;
    font-size: 18px;
    color: #2D3039;
    border: 1px solid #2C303B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    margin: 50px auto 0;
    border-radius: 3px;
}
.certificate .download button:hover {
	background: #0095FF;
    color: #ffffff;
    border: 1px solid #0095FF;
}
.certificates {
    display: flex;
    margin: 25px 0 0;
    flex-wrap: wrap;
    gap: 1em;
}
.certificates .item_cert {
    background: #E8EBF4;
    color: #6F7894;
    border-radius: 3px;
    cursor: pointer;
    padding: 0 25px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
}
.certificates .item_cert:hover, .certificates .item_cert.active {
    background: #0095ff;
    color: #ffffff;
}
.shadow {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    align-items: center;
    justify-content: center;
}
.warning {
    max-width: 460px;
    background: #203674;
    color: #ffffff;
    font-size: 25px;
    padding: 40px;
    font-weight: 100;
    border-radius: 5px;
    position: relative;
}
.warning p a {border-bottom: 1px dotted #ffffff;font-weight: 300;}
.warning p a:hover {border-bottom: 1px solid #ffffff;}
.warning .close_warning {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	line-height: 1em;
	font-size: 60px;
	font-weight: 100;
	width: 60px;
	height: 60px;
	text-align: center;
	cursor: pointer;
	transform: rotate(45deg);
	transition: all 0.3s ease;
}
.warning .close_warning:hover {
	transform: rotate(135deg);
}