* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-0.5 * var(--bs-gutter-x));
	margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.wplm-form-container.w-col-12 {
	max-width: 480px;
}
.col-4 {
	flex: 0 0 auto;
	width: 33.33%;
	padding: 0 20px;
}
.col-6 {
	flex: 0 0 auto;
	width: 50%;
	padding: 0 20px;
}
.col-12 {
	flex: 0 0 auto;
	width: 100%;
	padding: 0 20px;
}
.col-5 {
    width: calc(100% /12 * 5);
    padding: 0 20px;
}

.col-7 {
    width: calc(100% /12 * 7);
    padding: 0 20px;
}
.wplm-form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.wplm-form-group.full {
	max-width: 100%;
	flex: 0 0 100%;
}
.wplm-form-group.half {
	max-width: calc(50% - 6px);
	flex: 0 0 calc(50% - 6px);
}
.wplm-form-group label {
	text-transform: capitalize;
	margin-bottom: 5px;
	display: block;
}
.wplm-form-container {
	max-width: 1320px;
	margin: 40px auto;
	background: #fff;
	border-radius: 16px;
	padding: 30px 25px;
	box-shadow: 0 4px 30px rgba(0,0,0,0.05);
	font-family: 'Helvetica Neue', sans-serif;
	width: 100%;
    width: 100%;
    padding-right: calc(1.5rem * 0.5);
    padding-left: calc(1.5rem  * 0.5);
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
.wplm-modal .wplm-form-container {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    min-width: 480px;
	width: fit-content;
    z-index: 9999;
}
.wplm-form, 
.wplm-form-calendar,
.wplm-form-thumbnail {
	width: 100%;
}
/***** Modal *****/
.wplm-modal.hidden {
  display: none; 
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 5px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}
div.wplm-form-title {
	color: rgba(34, 34, 34, 1);
	font-size: 40px;
	font-weight: 700;
    text-align: center;
}
div.wplm-sub-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #1a40ff;
    margin-bottom: 24px;
}
div.wplm-sub-title.after-subtitle {
	background-image: url("data:image/svg+xml,%3Csvg width='387' height='37' viewBox='0 0 387 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 28.5955C87.8604 2.52377 227.67 -5.82052 176.585 10.036C125.5 25.8925 120.953 36.4022 152.196 34.5611C183.439 32.72 226.063 29.7002 240.5 28.5955L384.5 18.3925' stroke='%23AAD1FA' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center 18px;
	width: 382px;
	height: 60px;
	margin: 0 auto;
}
.wplm-form-subtitle {
	text-align: center;
	max-width: 510px;
	margin: 0 auto;
	color: rgba(17, 22, 36, 1);
	font-weight: 400;
	margin-bottom: 50px;
}
.wplm-form-thumbnail {
	border-right: 2px dashed rgb(211, 213, 216);
	/* margin-right: 20px; */
	padding-right: 20px;
}

.wplm-form-thumbnail {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	margin-bottom: 24px;
}

.wplm-form-thumbnail img {
	width: 100%;
	height: auto;
}

.wplm-form-group {
    margin-bottom: 18px;
}

.wplm-form-group input[type="text"],
.wplm-form-group input[type="email"],
.wplm-form-group input[type="tel"] {
    width: 100%;
    padding: 20px 16px;
    border: 1px solid #d3d5d8;
    color: #111624;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border 0.2s ease;
}

.wplm-form-group input:focus {
    border-color: #1a40ff;
}

.wplm-form-group.wplm-name {
    display: flex;
    gap: 12px;
}

.wplm-form-group.wplm-name input {
    width: 100%;
}



.wplm-form-container .wplm-submit-button,
.wplm-form .wplm-button {
	width: auto;
	padding: 14px;
	background-color: #1a40ff;
	color: white;
	font-weight: bold;
	font-size: 16px;
	border: 1px solid #1a40ff;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
    min-width: 150px;
    line-height: 19px;
}

.wplm-form-container .wplm-submit-button:hover,
.wplm-form .wplm-button:hover {
    background-color: #0037ff;
    border-color: #0037ff;
}

.wplm-form .wplm-button-alt {
    width: auto;
    padding: 14px;
    background-color: transparent;
    color: #1a40ff;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.wplm-form .wplm-button-alt:hover {
    background-color: #0037ff;
    border-color: #0037ff;
    color: #fff;
}

.wplm-powered {
	text-align: center;
	font-size: 12px;
	color: #333;
	width: 100%;
}

.wplm-form-group.submit-group {
	width: 100%;
	text-align: center;
}

.wplm-form-container  .wplm-powered a {
    color: #1a40ff;
    text-decoration: underline;
}

.wplm-success-message {
	margin-top: 0;
	color: green;
	font-size: 14px;
	text-align: center;
	display: block;
	width: 100%;
}

#wplm-phone {
	padding-left: 70px;
}
.iti.iti--allow-dropdown.iti--show-flags {
	display: block;
}
.iti__selected-flag::after {
	content: "";
	display: block;
	position: relative;
	width: 1px;
	height: 70%;
	background: #D3D5D8;
	margin-left: 15px;
}

.iti__arrow {
	margin-left: 6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 7px solid #2355E0;
}

.wplm-agree {
	display: flex;
	align-items: center;
}


.wplm-error-text {
	color: red;
	display: block;
	margin-top: 5px;
}
@-moz-keyframes dothabottomcheck-19 {
    0% {
    height: 0;
    }
    100% {
    height: calc(var(--checkbox-height) / 2);
    }
}

@-webkit-keyframes dothabottomcheck-19 {
    0% {
    height: 0;
    }
    100% {
    height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothabottomcheck-19 {
    0% {
    height: 0;
    }
    100% {
    height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothatopcheck-19 {
    0% {
    height: 0;
    }
    50% {
    height: 0;
    }
    100% {
    height: calc(var(--checkbox-height) * 1.2);
    }
}

@-webkit-keyframes dothatopcheck-19 {
    0% {
    height: 0;
    }
    50% {
    height: 0;
    }
    100% {
    height: calc(var(--checkbox-height) * 1.2);
    }
}

@-moz-keyframes dothatopcheck-19 {
    0% {
    height: 0;
    }
    50% {
    height: 0;
    }
    100% {
    height: calc(var(--checkbox-height) * 1.2);
    }
}






@media (max-width: 1200px) {
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-12  {
        width: 100%;
    }
    .wplm-form-calendar {
        margin-top: 20px;
        border-left: none;
        padding-left: 0;
    }
    .wplm-form-thumbnail {
        border-right: none;
        padding-right: 0;
    }
    .wplm-form-group.full, .wplm-form-group.half {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

select.flatpickr-monthDropdown-months {
    appearance: none !important;
    pointer-events: none;
    text-align: center;
}
#wplm-phone-error {
	position: absolute;
	right: 0;
	top: 20px;
}
.wplm-form .iti::after {
	content: "";
	position: absolute;
	right: 5px;
	top: 37%;
	width: 20px;
	height: 20px;
	transform: translate(-50%);
    background-repeat: no-repeat;
}
.wplm-form .wplm-phone.wplm-valid .iti::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='green' class='bi bi-check2' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0'/%3E%3C/svg%3E");
}
.wplm-form .wplm-phone.wplm-invalid .iti::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='red' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
}

/* .rtl #wplm-phone {
	padding-left: 50px;
	padding-right: 70px;
	text-align: right;
} */
.rtl .iti__selected-flag::after {
	margin-left: 0;
	margin-right: 15px;
}


.wplm-form .iti__country-name {
	display: none;
}
/* .rtl .wplm-form .iti::after {
	right: auto;
	left: 20px;
} */



/* success popup */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.3s ease-out;
}
/* Анимация появления */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Затемнение фона и позиционирование */
#wplm-popup {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    /* по умолчанию скрыто */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Само модальное окно */
#wplm-popup>div {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.4s ease-out;
}

/* Заголовок */
#wplm-popup h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Подзаголовок */
#wplm-popup p {
    color: #555;
    margin-bottom: 16px;
}

/* Кнопка закрытия */
#wplm-popup-close {
    margin-top: 8px;
    padding: 10px 20px;
    background-color: #2563eb;
    /* синий цвет */
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#wplm-popup-close:hover {
    background-color: #1d4ed8;
}

#wplm-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}
#wplm-loader .spinner {
    border: 3px solid #ccc;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}



/* form errors */
.wplm-error-text {
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 14px;
}

.wplm-invalid {
    position: relative;
}

.wplm-invalid input {
    border-color: red !important;
}
.time-slots-wrapper {
    width: 100%;
}

.booking-calendar-wrapper {
    position: relative;
}

.booking-calendar-wrapper .wplm-invalid {
    position: inherit;
}

#booking-calendar .wplm-error-text {
    margin: 0;
    bottom: -20px;
    left: 0;
}

#booking-calendar .time-slots-group .wplm-error-text {
    text-align: left;
}








/* steps styles */
.wplm-form-step {
    padding: 0 20px;
    min-width: 660px;
}

.wplm-step-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wplm-form.wplm-form-with-steps #booking-calendar {
    padding: 0;
    border: none;
}

#calendar {
    display: none;
}
.wplm-steps-progressbar {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    justify-content: center;
    width: 100%;
}

.wplm-step-indicator {
    width: 30px;
    height: 30px;
    background: #d3d5d8;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    transition: background 0.3s ease;
    position: relative;
}

.wplm-form.wplm-form-with-steps {
    width: fit-content;
}

.wplm-step-indicator:before {
    content: "";
    width: 25px;
    height: 2px;
    position: absolute;
    left: 100%;
    top: 50%;
    background: #d3d5d8;
}

.wplm-step-indicator:last-of-type:before {
    display: none;
}


@media screen and (max-width: 767px) {
    .wplm-form-step {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    .wplm-form-container {
        width: calc(100vw - 40px);
    }
    .wplm-form.wplm-form-with-steps {
        width: 100%;
    }
    .wplm-form-step {
        padding: 0;
    }
}


.wplm-form .wplm-button,
.wplm-form .wplm-button-alt {
    min-width: 120px;
}

/* rtl */
.rtl .wplm-step-indicator:before {
    left: auto;
    right: 100%;
}

@media screen and (max-width: 767px) {
    .wplm-modal .wplm-form-container .row {
        margin: 0;
    }
    .wplm-modal .wplm-form-container {
        max-width: calc(100vw - 40px);
		min-width: auto;
        width: 100%;
    }
}



.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
    right: auto !important;
    left: 0 !important;
}

.iti__arrow {
    margin-right: 0 !important;
    margin-left: 6px !important;
}

.iti__selected-flag::after {
    margin-left: 15px !important;
    margin-right: 0 !important;
}





/* Timezone field styles */
.wplm-timezone-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.wplm-timezone-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.wplm-timezone-select option {
    padding: 8px 12px;
    font-size: 14px;
}

/* Timezone conversion indicator */
[data-time-convert] {
    position: relative;
}

[data-time-convert]:after {
    content: "🕐";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0.7;
}

/* Timezone info tooltip */
.wplm-timezone-info {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    font-style: italic;
}

/* New field types styles */

/* Checkbox styles */

.wplm-checkbox {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    gap: 12px;
    box-sizing: border-box;
    --background-color: #fff;
    --checkbox-height: 25px;
}

.wplm-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.wplm-checkbox label a {
    color: #1a40ff;
    text-decoration: underline;
}

.wplm-checkbox .wplm-agree .wplm-checkbox-icon {
    font-weight: 500;
    opacity: 0.3;
}

.wplm-checkbox-label {
    /* margin-left: 45px;
	margin-top: -20px; */
    display: block;
}

.wplm-form-group.wplm-checkbox.full.wplm-invalid {
    flex-direction: column;
    align-items: flex-start;
}

.wplm-checkbox input[type=checkbox] {
    display: none;
}


.wplm-checkbox .wplm-agree .wplm-checkbox-icon {
    height: var(--checkbox-height);
    width: var(--checkbox-height);
    background-color: transparent;
    border: calc(var(--checkbox-height) * .1) solid #000;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}

.wplm-checkbox .wplm-agree .wplm-checkbox-icon::before,
.wplm-checkbox .wplm-agree .wplm-checkbox-icon::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: calc(var(--checkbox-height) * .2);
    background-color: #2355E0;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 5px;
    content: " ";
    -webkit-transition: opacity ease 0.5;
    -moz-transition: opacity ease 0.5;
    transition: opacity ease 0.5;
}

.wplm-checkbox .wplm-agree .wplm-checkbox-icon::before {
    top: calc(var(--checkbox-height) * .72);
    left: calc(var(--checkbox-height) * .41);
    /* box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color); */
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.wplm-checkbox .wplm-agree .wplm-checkbox-icon::after {
    top: calc(var(--checkbox-height) * .37);
    left: calc(var(--checkbox-height) * .05);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.wplm-checkbox input[type=checkbox]:checked+.wplm-agree .wplm-checkbox-icon,
.wplm-checkbox .wplm-agree .wplm-checkbox-icon.checked {
    border-color: #2355E0;
}

.wplm-checkbox input[type=checkbox]:checked+.wplm-agree .wplm-checkbox-icon::after,
.wplm-checkbox .wplm-agree .wplm-checkbox-icon.checked::after {
    height: calc(var(--checkbox-height) / 2);
    -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    animation: dothabottomcheck-19 0.2s ease 0s forwards;
}

.wplm-checkbox input[type=checkbox]:checked+.wplm-agree .wplm-checkbox-icon::before,
.wplm-checkbox .wplm-agree .wplm-checkbox-icon.checked::before {
    height: calc(var(--checkbox-height) * 1.2);
    -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
    animation: dothatopcheck-19 0.4s ease 0s forwards;
}


.wplm-checkbox-item {
    display: flex;
    align-items: center;
    /* margin-bottom: 8px; */
}

.wplm-checkbox-item:last-child {
    margin-bottom: 0;
}

.wplm-checkbox-item input[type="checkbox"] {
    display: none;
}

.wplm-checkbox-item .wplm-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0 !important;
}

.wplm-checkbox-item .wplm-checkbox-icon {
    width: 18px;
    min-width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
}
.rtl .wplm-checkbox-item .wplm-checkbox-icon {
    margin-right: 0;
    margin-left: 8px;
}

.wplm-checkbox-item input[type="checkbox"]:checked + .wplm-checkbox-label .wplm-checkbox-icon {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.wplm-checkbox-item input[type="checkbox"]:checked + .wplm-checkbox-label .wplm-checkbox-icon::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.rtl .wplm-checkbox-label {
    margin-left: 0;
    margin-right: 45px;
}











/* Radio button styles */
.wplm-radio-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.wplm-radio-item:last-child {
    margin-bottom: 0;
}

.wplm-radio-item input[type="radio"] {
    display: none;
}

.wplm-radio-item .wplm-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.wplm-radio-item .wplm-radio-icon {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.wplm-radio-item input[type="radio"]:checked + .wplm-radio-label .wplm-radio-icon {
    border-color: #3b82f6;
}

.wplm-radio-item input[type="radio"]:checked + .wplm-radio-label .wplm-radio-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}










/* Select styles */
.wplm-select-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.wplm-select-input:focus {
    border: 1px solid #333;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    outline: none;
}

.wplm-select-input option {
    padding: 8px 12px;
    font-size: 14px;
}

/* File upload styles */
.wplm-file-upload-wrapper {
    position: relative;
}

.wplm-file-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    background-color: #f9fafb;
    transition: all 0.2s ease;
    cursor: pointer;
}

.wplm-file-input:hover {
    border-color: #3b82f6;
    background-color: #f0f9ff;
}

.wplm-file-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.wplm-file-preview-container {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.wplm-file-preview {
    position: relative;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.wplm-file-preview:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.wplm-file-preview-image {
        width: 100%;
        height: 80px !important;
        object-fit: contain;
        margin-bottom: 6px;
}

.wplm-file-preview-icon {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 6px;
    font-size: 24px;
    color: #64748b;
}

.wplm-file-preview-name {
    font-size: 11px;
    color: #374151;
    font-weight: 500;
    word-break: break-word;
    line-height: 1.2;
    margin-bottom: 4px;
}

.wplm-file-preview-size {
    font-size: 10px;
    color: #6b7280;
}

.wplm-file-preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #ef4444 !important;
    color: white !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px !important;
    line-height: 16px !important;
    display: flex;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
    padding: 0 !important;
}

.wplm-file-preview-remove:hover {
    background: #dc2626 !important;
}

.wplm-file-help {
    margin-top: 8px;
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}

.wplm-file-help {
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}

/* Label styles for new fields */
.wplm-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.wplm-required {
    color: #ef4444;
    margin-left: 2px;
}

@media screen and (max-width: 767px) {
    .timezone-selector {
        padding: 0 !important;
    }
}