.other-amount-btn{
	background: #F2F2F2;
	border: 0.2px solid #000000;
	border-radius: 10px;
}
.nominal-option{
	box-sizing: border-box;
	height: 41px; line-height:41px;
	background: #FFFFFF;
	border: 0.3px solid #000000;
	border-radius: 10px;
	text-align:center;
}

.section-delivery{
	display:block;
	width: 490px;
	height: 39px;
	margin:0 auto;
	background: #FFFFFF;
	border: 0.2px solid #000000;
	border-radius: 10px;
	font-family: 'Play';
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 39px;
	text-align: center;
	color: #F12C00;
}
.delivery-option{
	display:inline-block;
	width: 238px;
	height: 40px;
	line-height: 39px;    
	margin: -1px;
	color:#242424;
	border-radius: 10px;
}
.delivery-option:first-child{float:left;}
.delivery-option:last-child{float:right;}
.delivery-option.active{
	width: 232px;
	color:#FFFFFF;
	background: #F77514;
	line-height: 31px; 
}
.form-text-label{
	font-family: 'Play';
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 15px;
	color: #F77514;
	padding-bottom:5px;
}
.certificate-swiper .swiper-slide{
	border: 3px solid #F2F2F2 !important;
	background:#F2F2F2;
	text-align:center;
	border-radius: 10px;
}
.certificate-swiper .swiper-wrapper{
	justify-content: flex-start !important;
}
/* На романтическое путешествие */
.certificate-swiper .slide-content{
	font-family: 'Play';
	font-style: normal;
	font-weight: 700;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
	padding:5px;
}
.certificate-swiper .swiper-slide img{
	width: 126px;
	height: 178px;
}
.certificate-swiper .slide-content{
	display:flex;
	width: 126px;
	height: 45px;
	align-content: center;
    flex-wrap: wrap;
    justify-content: center;}
.certificate-swiper .swiper-slide.active{
	border: 3px solid #F77514 !important;
}
.certificate-swiper .swiper-slide.field-error,
.nominal-option.field-error,
.delivery-option.field-error,
.form-control.field-error,
.form-check-input.field-error {
	border: 2px solid #dc3545 !important;
	box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.15);
}
.form-check-input.field-error {
	outline: 2px solid #dc3545;
	outline-offset: 1px;
}


.delivery-option.active,
.nominal-option.active,
.custom-amount-display:not(:empty){
	border: 3px solid #F77514 !important;
	
}
.nominal-option.active{
	line-height: 39px;
}
.custom-amount-display:not(:empty){
	padding: 0.375rem;
	border-radius: 5px;
}
.form-check-input:checked {
    background-color: #F77514 !important;
    border-color: #F77514 !important;
}.result-modal .modal-dialog {
    max-width: 500px;
}

.result-modal .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 0;
    text-align: center;
    position: relative;
}

.electronic-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.paper-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.result-modal .result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.result-modal .modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.result-modal .modal-body {
    padding: 2rem;
    text-align: center;
}

.result-message {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #333;
}

.info-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: left;
    border-left: 4px solid #007bff;
}

.info-card h6 {
    color: #495057;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-card p {
    margin-bottom: 0.5rem;
    color: #666;
}

.payment-info, .delivery-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    color: #6c757d;
    font-size: 0.9rem;
}

.result-modal .modal-footer {
    border-top: none;
    padding: 0 2rem 2rem;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.actions {
    margin-top: 1rem;
    text-align: center;
}

.resend-email-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.payment-link-btn {
    text-decoration: none;
}

.new-certificate-btn {
    border-color: #007bff;
    color: #007bff;
}

.new-certificate-btn:hover {
    background: #007bff;
    color: white;
}

/* Адаптивность */
@media (max-width: 576px) {
    .result-modal .modal-dialog {
        margin: 1rem;
    }
    
    .result-modal .modal-header,
    .result-modal .modal-body,
    .result-modal .modal-footer {
        padding: 1rem;
    }
    
    .result-modal .modal-footer {
        flex-direction: column;
    }
    
    .result-modal .modal-footer .btn {
        width: 100%;
        margin: 0.25rem 0;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-modal .modal-content {
    animation: fadeIn 0.6s ease-out;
}

.result-icon {
    animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.sertificate-alert {
	display:flex;
	position: relative;
	text-align:center;
	height: 326px;
	background: #FFFFFF;
	border-radius: 10px;
}
.sertificate-alert svg{margin:0 auto;}
.sertificate-alert h4{
	font-family: 'Play';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	color: #DD650B;
}
.sertificate-alert p{	
	font-family: 'Play';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	text-align: center;
	color: #242424;
}
input:-internal-autofill-selected {
    background-color: #f775146b !important;
}

