/* form */
.form-group {
    width: calc(100% - 0px);
}
.home-page-form .form-group {
    width: calc(50% - 10px);
}
.validate-callback-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: start;
}
.custom-cpacha {
    display: flex;
    flex-direction: row;
	  gap: 20px;
}
.captcha-code {
    width: 100%;
    text-align: center;
    border: 1px solid #555;
    padding: 0 0px 0px 10px;
	background: #fff;
}
.validate-callback-form button {
    background-color: #FF845E;
    border-color: #FF845E;
    padding: 15px;
    color: #fff;
    font-size: 16px;
}
.rounded-circle {
    background-color: #FF845E;
    border-color: #FF845E;
    padding: 9px 10px 9px 10px !important;
}
.rounded-circle svg{fill: #fff;}
span.captchaImage {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rounded-circle svg {
    width: 26px;
    height: 26px;
}
.form-group input, .form-group select {
    border-radius: 0px !important;
    border: 1px solid #000;
    padding: .7rem 1rem;
    transition: all .3s;
    width: 100%;
    font-size: 16px;
}
.error-text, .req_captcha_err {
    color: red;
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
}
input:focus-visible {
    outline: 0;
}

form .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px;
    align-items: start;
    justify-content: start;
}
form .col-md-6 {
    width: calc(50% - 25px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: start;
}
.form-item.country-select, .country-select.inside {
    width: 100%;
}
#shippingBillingAddress {
    width: calc(100% - 0px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: start;
}

#paymentForm .form-group {
    width: calc(50% - 10px);
	  position: relative;
}
#paymentForm .form-group.full {
    width: 100%;
}
.form-group.multipule input {
    position: relative;
    padding-left: 35px;
}
.form-group.multipule .regular-icon {
    position: absolute;
    top: 57%;
    left: 12px;
    transform: translate(0px, -50%);
	z-index: 9;
}
.form-group h3{
    margin: 0px;
    font-size: 20px;
	}


@media(max-width: 767px){
	.validate-callback-form, .custom-cpacha{gap:10px;}
	.home-page-form .form-group {
    width: calc(100% - 0px);
	}
	form .col-md-6 {
		width: calc(100% - 0px);
	}
	#paymentForm .form-group {
    width: calc(100% - 0px);
		gap: 10px;
	}
	form .row {
		gap: 20px;
	}
	.form-group h3{
    margin: 0px;
    font-size: 16px;
	}
}