.place-an-order {
	width: 100%;
	background: linear-gradient(180deg, var(--accent), #f9e093);
	border: none;
	padding: 10px;
	cursor: pointer;
	border-radius: 10px;
}

.modal-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: var(--body-bg);
	background-clip: padding-box;
	border: none;
	border-radius: 0.3rem;
	outline: 0;
}

.modal-dialog {
	max-width: min(95%, 1700px);
}

.massage {
	width: 100%;
}

.order-mail {
	width: 100%;
}

.all-but {
	background: linear-gradient(180deg, var(--accent), #f9e093);
	border: none;
	padding: 10px;
	cursor: pointer;
	border-radius: 10px;
}

.order-section {
	background-color: var(--section-bg);
	padding: 20px 0;
}

.order-mail-inp,
.order-massage .massage {
	background: linear-gradient(180deg, #e6e6e6, #fbfbfb);
	border: none;
	box-shadow: 0 8px 26px rgb(17 17 17 / 29%);
	border-radius: 10px;
	padding: 10px;
}
.order-mail-inp:focus, .order-massage .massage:focus{
	outline: none;
}
.order-mail input.invalid {
	box-shadow: 0 1px 13px rgb(255 0 0);
	background: linear-gradient(260deg, #ff000061, #ffc3c32e);
}
.log-anim {
    animation: 3s linear 1 log_anim forwards;
}
.success,
.failed {
    position: fixed;
    top: -100px;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    z-index: 999999999999999;
}

.success-contaoner {
    width: 300px;
    background-color: #008000ab;
    display: flex;
    color: white;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    gap: 10px;
    padding: 0 10px;
}

.failed-contaoner {
    width: 320px;
    background-color: rgba(255, 0, 0, 0.673);
    display: flex;
    color: white;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    gap: 10px;
}

@keyframes log_anim {
    0% {
        top: -100px;
    }

    10% {
        top: 10px;
    }

    90% {
        top: 10px;
    }

    100% {
        top: -100px;
    }
}