.bootstrap-datetimepicker-widget .table th,
.country-name,
.form-label {
    font-weight: 500
}

.form-title,
.submit-btn {
    text-transform: uppercase
}

.form-input,
.form-select,
.selected-option {
    border: 2px solid #e2e8f0;
    transition: .2s;
    background: #fff;
    text-overflow: ellipsis
}

.form-input:focus,
.form-select:focus,
.selected-option.active {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, .1)
}

.form-wrapper {
    padding: 40px
}

.form-header {
    text-align: center;
    margin-bottom: 40px
}

.form-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px
}

.form-header p {
    color: #718096;
    font-size: 1rem
}

.form-label {
    display: none;
    color: #2d3748;
    font-size: .95rem;
    text-align: left
}

.required {
    color: #e53e3e
}

.form-input,
.form-select {
    width: 100%;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 1rem
}

.form-input:focus,
.form-select:focus {
    outline: 0;
    border-color: #667eea
}

.form-input::placeholder {
    color: #6C7176
}

.mobile-input-wrapper {
    display: flex;
    position: relative
}

.country-code,
.country-code-wrapper,
.flag {
    flex-shrink: 0
}

.selected-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 7px;
    cursor: pointer;
    font-size: .9rem;
    border-right: 0px !important;
    border-radius: 8px 0 0 8px
}

.selected-option:hover {
    border-color: #cbd5e0
}

#selectedCountry .country-name,
#selectedCountry .flag,
.checkbox-input {
    display: none
}

.flag {
    font-size: 1.2rem
}

.country-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2d3748
}

.country-code,
.option-item .country-code {
    font-weight: 600
}

.dropdown-arrow {
    color: #a0aec0;
    font-size: .8rem;
    transition: transform .2s;
    flex-shrink: 0
}

.captcha-refresh,
.option-item {
    transition: background-color .2s;
    cursor: pointer
}

.selected-option.active .dropdown-arrow {
    transform: rotate(180deg)
}

.options-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    z-index: 1000;
    max-height: 300px;
    overflow: hidden;
    display: none
}

.options-container.show {
    display: block
}

.search-wrapper {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0
}

.search-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: .9rem;
    outline: 0
}

.search-input:focus {
    border-color: #667eea
}

.options-list {
    max-height: 200px;
    overflow-y: auto
}

.option-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: .9rem
}

.option-item:hover {
    background-color: #f7fafc
}

.option-item.selected {
    background-color: #667eea;
    color: #fff
}

.option-item.selected .country-code {
    color: #e2e8f0
}

.option-item .country-name {
    color: #2d3748
}

.option-item.selected .country-name {
    color: #fff
}

.mobile-input {
    flex: 1;
    border-radius: 0 8px 8px 0
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.captcha-display {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 7px 16px;
    font-family: "Courier New", monospace;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #2d3748;
    user-select: none;
    min-width: 120px;
    text-align: center
}

.captcha-refresh {
    background: 0 0;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem
}

.captcha-refresh:hover {
    background: 0 0
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: .95rem;
    line-height: 1.5
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: .2s
}

.checkbox-input:checked+.checkbox-custom {
    background: #6c1313;
    border-color: #6c1313
}

.checkbox-input:checked+.checkbox-custom::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 700
}

.checkbox-text {
    color: #4a5568;
    text-align: left
}

.error-message {
    color: #e53e3e;
    font-size: .875rem;
    min-height: 16px;
    text-align: left
}

.form-input.error,
.form-select.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, .1)
}

.success-message {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    color: #22543d;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center
}

@media (max-width:768px) {
    .form-wrapper {
        padding: 24px
    }

    .form-header h1 {
        font-size: 1.75rem
    }
}

@media (max-width:480px) {
    .form-wrapper {
        padding: 20px
    }

    .form-header h1 {
        font-size: 1.5rem
    }

    .form-header p {
        font-size: .9rem
    }
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.btn-loader::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: 1s ease-in-out infinite spin;
    margin-left: 8px
}

.submit-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none
}

.submit-btn {
	padding: 7px 15px;
	border: none;
	font-size: 1.2rem;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: .3s;
	text-decoration: none;
	display: inline-block;
	letter-spacing: .1em;
	font-family: Orbitron, monospace;
	font-weight: 900;
	background: linear-gradient(45deg, #1c63b8, #1e60aa);
	color: #fff;
	animation: 4s infinite pulse;
	box-shadow: 0 0 30px rgb(28, 99, 184);
	background-image: linear-gradient(to right, #1c63b8 0, #1e60aae0 51%, #1e60aa 100%);
	background-size: 200% auto;
	border-radius: 7px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 5px #1e60aae0
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px #1e60aa
    }
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #0909091c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s
}

.submit-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}
.form-box .submit-btn {
	background: #fff;
	color: #1E60AA;
	border: 1px solid #1E60AA;
}
.form-box .submit-btn:hover {
	color: #000;
}
.submit-btn:hover::before {
    width: 300px;
    height: 300px
}

.form-group {
    margin-bottom: 12px
}

.error {
    text-align: left;
    font-size: 16px;
    color: red
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary)
}

.contact .agree-condition,
.contact .control-label,
.contact .widget_label {
    color: #ffff !important
}

.contact .form-bg,
.contact .widget_container {
    background: #5b0e16;
    padding: 30px 70px 40px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    width: 100%;
    overflow: hidden
}

.contact .form-bg .npf_wgts {
    height: 100%;
    width: 100%
}

.contact .form-bg .npf_wgts iframe {
    height: 100%;
    width: 100%;
    min-height: 100%
}
.form-bg {
    height: 100%;
    border-radius: 10px;
    padding: 35px;
    max-width: 800px;
    margin: 0 auto;
    background: #1e60aa 0% 0% no-repeat padding-box;
    box-shadow: 0 0 10px #000
}

.form-title {
    letter-spacing: 1.2px;
    font-size: calc(1.025rem + .9vw)
}

.footer-right-col {
    display: flex;
    justify-content: right
}

.footer-right-innr {
    width: 100%
}
.form-control:disabled, .form-control:read-only {
	background-color: #fff;
	opacity: 1;
}
.form-bg input, .form-bg select, .form-bg optgroup, .form-bg textarea {
	box-shadow: 0 0 10px #00000085;
	border-radius: 8px !important;
}

@media (max-width:1100px) {

    .contact .form-bg,
    .contact .widget_container {
        padding: 30px 15px
    }
}

@media (max-width:992px) {
    .footer-right-col {
        justify-content: left
    }

    .footer-right-innr {
        max-width: 100%
    }
    .form-bg {
        margin-bottom: 40px;
        padding: 25px 20px;
    }
}

@media (max-width:815px) {
    .contact {
        background: unset
    }
}
.select-arrow {
  position: relative;
}

/* Custom arrow */
.select-arrow::after {
	content: "";
	position: absolute;
	right: 19px;
	top: 9px;
	pointer-events: none;
	color: #1e60aa;
	width: 12px;
	height: 12px;
	border: 3px solid transparent;
	border-color: #6c7176 #6c7176 transparent transparent;
	transform: rotate(135deg);
}
.submit-btn i {
	font-size: 1rem;
	color: #a0f993;
}
.form-box .submit-btn i {
	color: #20821f;
}