@keyframes btnanimate {
    0% {
        transform: scale(1.2);
        border-radius: 50px;
        box-shadow: 0 0 0 0 rgba(135, 220, 255, 0.7), 0 0 0 0 rgba(48, 195, 214, 0.7);
    }
  
    40% {
        box-shadow: 0 0 0 50px rgba(135, 220, 255, 0), 0 0 0 0 rgba(112, 226, 226, 0.7);
    }
  
    80% {
        box-shadow: 0 0 0 50px rgba(135, 220, 255, 0), 0 0 0 30px rgba(48, 195, 214, 0);
    }
  
    100% {
        box-shadow: none;
    }
  }
  
  @-webkit-keyframes btnanimate {
    0% {
        -webkit-transform: scale(1.2);
        -webkit-border-radius: 50px;
        -webkit-box-shadow: 0 0 0 0 rgba(135, 220, 255, 0.7), 0 0 0 0 rgba(48, 195, 214, 0.7);
    }
  
    40% {
        -webkit-box-shadow: 0 0 0 50px rgba(135, 220, 255, 0), 0 0 0 0 rgba(112, 226, 226, 0.7);
    }
  
    80% {
        -webkit-box-shadow: 0 0 0 50px rgba(135, 220, 255, 0), 0 0 0 30px rgba(48, 195, 214, 0);
    }
  
    100% {
        -webkit-box-shadow: none;
    }
  }
  
  @-moz-keyframes btnanimate {
    0% {
        -moz-transform: scale(1.2);
        -moz-border-radius: 50px;
        -moz-box-shadow: 0 0 0 0 rgba(135, 220, 255, 0.7), 0 0 0 0 rgba(48, 195, 214, 0.7);
    }
  
    40% {
        -moz-box-shadow: 0 0 0 50px rgba(135, 220, 255, 0), 0 0 0 0 rgba(112, 226, 226, 0.7);
    }
  
    80% {
        -moz-box-shadow: 0 0 0 50px rgba(135, 220, 255, 0), 0 0 0 30px rgba(48, 195, 214, 0);
    }
  
    100% {
        -moz-box-shadow: none;
    }
  }
  

  :root {
	--bg-color: #F0F7FF;
	--text-color: #1F2937;

	--icon-color: #2563EB;

	--menu-bg: #1E3A8A;

	--logo: #2563EB;

	--nav-bg: #F0F7FF;
	--nav-close: #1F2937;
	--nav-text: #1F2937;
	--nav-link: #2563EB;

	--proggress-text: #2563EB;
	--progress-bg: rgba(0, 0, 0, .15);
	--progress-filled: #2563EB;

	--title: #000;

	--input-border: #2563EB;;
	--input-text: #404040;
	--input-icon: #404040;
	--input-icon-grey: #404040;
	--input-label: #2563EB;

	--input-border-focus: #2563EB;
	--input-icon-focus: #2563EB;
	--input-label-focus: #2563EB;
	--input-error: #FC5B53;

	--btn-bg: #2563EB;
	--btn-text: #fff;
	--btn-bg-disabled: #B3B6B7;
	--btn-text-disabled: rgba(0, 0, 0, .3);

	--btn-exit-bg: rgba(0, 0, 0, .1);
	--btn-exit: rgba(0, 0, 0, .6);

	--form-bottom: #000;

	--footer: #93C5FD;

	--price: #93C5FD;
}


* {
    padding: 0px;
    margin: 0px;
    border: none;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}

:focus,
:active {
    /*outline: none;*/
}

a:focus,
a:active {
    /* outline: none;*/
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
/* Links */

a,
a:link,
a:visited {
    /* color: inherit; */
    text-decoration: none;
    /* display: inline-block; */
}

a:hover {
    /* color: inherit; */
    text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

/* ----------------------------------------------------------------------------- */

body {
    margin: 0;
    padding: 0;
    color: #333;
    background-repeat: no-repeat;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg-color);
	color: var(--text-color);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 14px;
	line-height: 1.18;
	text-align: center;
}
.container {
    /* max-width: 700px; */
    margin: 0 auto;
    padding: 10px;
}
/* ------------------header----------------------- */

header {
    display: none;
    align-items: center;
    justify-content: center;
    background: #c0d9e0;
    margin: -10px -10px 0;
    max-width: 900px;
    padding-bottom: 16px;
    min-height: 47px;
}

.header__inner {
    display: none;
}

.images {
    display: flex;
    flex-direction: column;
}

.icons {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

.icons img {
    width: 100%;
    max-width: 292px;
    margin: 10px auto;
}

.pict {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.pict img {
    width: 100%;
    max-width: 200px;
    margin: 15px auto;
  }

.step {
    max-width: 400px;
    margin: 0 auto;
}
.step__inner {
    display: flex;
    gap: 15px;
}
.step__title {
    padding-bottom: 10px;
}
.step__line {
    width: 100%;
    height: 3px;
    background: rgb(0, 0, 0, 0.15);
}
.step-field {
    background: #24cd77;
}
/* ------------------lang----------------------- */
.lang {
    display: flex;
    gap: 10px;
    color: #fff;
}
.lang span {
    font-size: 20px;
    color: #fff;
}
.lang-switcher-item {
    color: #333;
    padding: 5px;
}
.lang-switcher-focus {
    border: 1px solid #24cd77;
}
/* ---------------------------------------------------- */
.wrapper {
    padding: 0 20px;
    max-width: 510px;
    margin: 0 auto;
}
.terms__title {
    display: none;
    font-size: 15px;
    cursor: pointer;
}
/* ---------------------------------------------------- */

.content-terms {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000000a8;
    display: flex;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 0;
    z-index: 11;
}
.content-terms__box {
    margin-top: 5%;
    position: relative;
    max-width: 320px;
    max-height: 90vh;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
}
.close {
    font-size: 18px;
    color: rgb(255, 255, 255);
    position: fixed;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.terms-conditions {
    cursor: pointer;
}
.terms-conditions p {
    padding: 5px 0;
}
.exit__link {
    display: none;
    font-size: 12px;
    color: gray;
    margin-top: 15px;
    text-decoration: underline;
}
/* ---------------------------------------------------- */
.main__logo-icon {
    width: 180px;
    height: 180px;
    margin: 20px auto;
    position: relative;
}
.main__icon-progress {
    width: 100%;
    height: 100%;
    position: relative;
}
.icon-progress__bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.1);
}

.meter-1 {
    stroke-dasharray: 628;
    stroke-dashoffset: 628;
    stroke: #24cd77;
    stroke-width: 14px;
    animation: progress-circle 1.3s ease-in-out forwards;
}

@keyframes progress-circle {
    0% {
        stroke-dashoffset: 628;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.progress_arrow {
    width: 105px;
    height: auto;
    opacity: 0;
    animation:
        arrow-appear 0.5s ease-in-out 1.4s forwards,
        bounce 2s ease-in-out 1.9s infinite;
}

@keyframes arrow-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.main__icon-value {
    color: #24cd77;
    font-weight: 600;
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.main__icon-value::after {
    content: "0%";
    animation:
        counter 1.3s linear forwards,
        fadeOut 0.5s ease-in-out 1.3s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes counter {
    0% {
        content: "0%";
    }
    5% {
        content: "5%";
    }
    10% {
        content: "10%";
    }
    15% {
        content: "15%";
    }
    20% {
        content: "20%";
    }
    25% {
        content: "25%";
    }
    30% {
        content: "30%";
    }
    35% {
        content: "35%";
    }
    40% {
        content: "40%";
    }
    45% {
        content: "45%";
    }
    50% {
        content: "50%";
    }
    55% {
        content: "55%";
    }
    60% {
        content: "60%";
    }
    65% {
        content: "65%";
    }
    70% {
        content: "70%";
    }
    75% {
        content: "75%";
    }
    80% {
        content: "80%";
    }
    85% {
        content: "85%";
    }
    90% {
        content: "90%";
    }
    95% {
        content: "95%";
    }
    100% {
        content: "100%";
    }
}
/* -------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content{
    background-color: #fff; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
    max-width:300px; 
    width: 100%;
    text-align: center;
}
.modal-title{
    font-size: 20px;
    color: #000;
}
.operator-item{
    margin: 20px 0;
    width: 100%;
    border: 1px solid #F30745;
    padding: 10px;
    border-radius: 10px;
    color: #1b1b1b;
}
.main-input {
    position: relative;
    margin-top: 40px;
}
.input-pin__title{
     color: #ffffff;
     font-size: 16px;
     text-align: center;   
}
.main-input__title {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 36px;
}

.main-input__title {
    animation: fadeIn 1s ease-in-out 2s forwards;
}
@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}
/* .main-input__title:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fc5b53;
} */
.input-number {
    font-size: 24px;
    font-weight: bold;
    text-align: left;
}
#msisdn::placeholder {
    color: #333;
}
.main-input__input,
.inputHolder {
    color: #333;
    width: 100%;
    display: flex;
    align-items: center;
    float: none;
    margin: 10px auto 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    height: 50px;
}

.main-input__input {
    max-width: 260px;
    gap: 0px;
    margin-top: 0;
    padding-left: 10px;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
    background-color: #fff;
}

.main-input__input input,
.numeric {
    width: 80%;
    height: 50px;
    color: #333;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    padding: 8px;
    padding-right: 10px;
    padding-left: 0;
    background-color: #fff;
}
.main-input__input input::placeholder {
    padding-left: 5px;
    text-align: left;
    color: #ccc;
    font-weight: 600;
    font-size: 24px;
}

#country-code {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 23px;
    padding-right: 2px;
}
select:active,
select:focus {
    outline: none;
}
.pin-generate {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.form {
    max-width: 352px;
    margin: auto;
}
.main__btn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 100%;
	height: 60px;
	background: var(--btn-bg);
	border: none;
	border-radius: 8px;
	color: var(--btn-text);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	box-shadow: 0 0 8px var(--btn-shadow);
}
.btn span {
	display: block;
	font-size: 11px;
	font-weight: 400;
	opacity: 0.6;
}
.btn[disabled],
.btn.disabled {
	background: var(--btn-bg-disabled);
	color: var(--btn-text-disabled);
	box-shadow: none;
}

.btn-exit {
	display: inline-block;
	padding: 5px;
	margin: 0 auto 15px;
	border-radius: 2px;
	background: var(--btn-exit-bg);
	color: var(--btn-exit);
	font-size: 10px;
	line-height: 1;
	text-decoration: none;
}

.exit {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #000;
    border: 1px solid #1877f2;
}

.phone {
    background: url(../img/phone.svg) no-repeat center;
    width: 16px;
    height: 28px;
    margin-right: 12px;
}

.response {
    color: red;
    text-align: center;
    font-size: 16px;
}
.name {
    display: none;
    font-size: 13px;
    text-align: center;
}
.main__btn {
    width: 100%;
}
.main__text {
    text-align: center;
    font-size: 12px;
    padding: 10px 0;
}
.input-pin {
}
.formRow {
    text-align: center;
    padding: 2px 16px;
    color: black;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 10px;
}
.formRow label {
    color: #212529;
    font-weight: 500;
    margin: 1em 0;
}
.price {
    margin-top: 1rem;
    margin-bottom: 20vh;
    font-size: 10px;
    text-align: center;
}
#success-text {
    margin-top: 2rem;
    color: #000;
    text-align: center;
}
#blocked-text,
#response-text {
    color: red;
    font-weight: bold;
}

.formHolder,
.sliderHolder {
    text-align: center;
    margin-bottom: 25px;
}
.pageHolder {
    padding: 30px 0;
}

.logo img {
    width: 100%;
    display: inline-block;
}

.formSubTitle {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000000;
}

.labelHolder label,
.labelHolders label {
    font-size: 16px;
}
#pin-code {
    font-size: 28px;
}

.inputHolder.selectHolder select {
    -webkit-appearance: none;
}

.submitBtn {
    text-align: center;
}
.success-image {
    width: 100px;
    margin: 20px auto;
}
.checkmark-container {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 6px;
}
.checkmark__icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #1877f2;
    animation:
        fill 0.4s ease-in-out 0.4s forwards,
        scale 0.3s ease-in-out 0.9s both;
}
/* .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
} */
.checkmark__check {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px #1877f2;
    }
}
/* -----------------lang----------------------------------- */

.footer {
    margin: auto -10px -10px;
    padding: 20px;
    text-align: center;
    color: var(--footer);
    font-size: 12px;
}
.footer__title {
    font-weight: bold;
    font-size: 14px;
}
.footer__text {
    font-size: 10px;
}
.footer__text a {
    color: #999;
}

.footer__desc {
    margin-bottom: 8px;
}
/* ----------------------modal---------------------------------------------- */

@media (max-width: 500px) {
    .main__btn,
    .submitBtn {
        width: 100%;
    }
    .pin-generate {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .main__btn a {
        font-size: 20px;
    }
}

/* header update */
.header__center {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.creative-img {
    display: block;
    height: 64px;
    object-fit: contain;
}
.header-desc-wrapper {
    text-align: left;
    padding-top: 5px;
}
.file-detail-wrapper {
    font-size: 12px;
}
.file-status {
    font-size: 16px !important;
    font-weight: bold;
    margin-bottom: 5px;
}
.file-detail-wrapper .name {
    text-align: left;
}
.expiration_txt {
}
.header__lang {
}
.lang {
}
.lang-switcher-item {
}

.title {
    color: var(--title);
    font-size: 26px;
    line-height: 1.18;
    font-weight: 900;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 40px;
}

.webt-icon {
	width: 180px;
	height: 180px;
	margin: 0 auto 10px;
	position: relative;
}
.icon-progress {
	width: 100%;
	height: 100%;
	position: relative;
}
.icon-progress__bg {
	stroke-width: 14px;
	stroke: var(--progress-bg);
	fill: transparent;
}
.webt-icon .progress_arrow {
	width: 120px;
	height: auto;
	opacity: 0;
	transition: all 1s;
	animation: bounceUpDown 2s ease-in-out infinite;
}
@keyframes bounceUpDown {
	0% {
		transform: translateY(0%);
	}
	50% {
		transform: translateY(-5%);
	}
	100% {
		transform: translateY(0%);
	}
}
.webt-icon__value {
	color: var(--proggress-text);
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	font-size: 46px;
	font-weight: 600;
	top: 0;
	left: 0;
}
.meter-1 {
	stroke-dasharray: 800;
	stroke-dashoffset: 0;
	stroke: var(--progress-filled);
	stroke-width: 14px;
	fill: transparent;
	animation: progress-1 4s ease-out;
}
@keyframes progress-1 {
	from {
		stroke-dashoffset: 800;
	}
	to {
		stroke-dashoffset: 0;
	}
}

.field {
	position: relative;
	margin-bottom: 32px;
	/*
	-webkit-animation: heartbeat 1.75s ease-in-out infinite both;
	-webkit-animation-animation: heartbeat 1.75s ease-in-out infinite both;
	*/
}

.field-input {
    display: block;
    width: 100%;
    height: 64px;
    background: var(--bg-color);
    border: 2px solid var(--input-border);
    border-radius: 8px;
    padding: 0 38px 0 106px;
    direction: ltr;
    color: var(--input-text);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    transition: 0.5s ease;
}

.field-input {
	display: block;
	width: 100%;
	height: 64px;
	background: var(--bg-color);
	border: 2px solid var(--input-border);
	border-radius: 8px;
	padding: 0 38px 0 106px;
	direction: ltr;
	color: var(--input-text);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 24px;
	letter-spacing: 2px;
	transition: 0.5s ease;
}
.field-input.pin {
	height: 82px;
	padding-left: 26px;
	text-align: center;
	letter-spacing: 16px;
}
.field-input__prefix {
	direction: ltr;
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 40px;
	color: var(--input-text);
	font-size: 24px;
	line-height: 64px;
	letter-spacing: 2px;
	animation: shake 3s;
	-webkit-animation: shake 3s;
}
@keyframes shake {
	10%, 90% {
		transform: translate3d(-1px, 0, 0);
		-webkit-transform: translate3d(-1px, 0, 0);
	}
	20%, 80% {
		transform: translate3d(2px, 0, 0);
		-webkit-transform: translate3d(2px, 0, 0);
	}
	30%, 50%, 70% {
		transform: translate3d(-4px, 0, 0);
		-webkit-transform: translate3d(-4px, 0, 0);
	}
	40%, 60% {
		transform: translate3d(4px, 0, 0);
		-webkit-transform: translate3d(4px, 0, 0);
	}
}
.field-icon {
	position: absolute;
	top: 20px;
	left: 14px;
	fill: var(--input-icon);
	pointer-events: none;
	transition: 0.5s ease;
}
.field-check {
	position: absolute;
	top: 20px;
	right: 14px;
	width: 24px;
	height: 24px;
	fill: var(--input-icon-grey);
	pointer-events: none;
	transition: 0.5s ease;
}
.form-valid .field-check {
	fill: var(--input-icon-focus);
}
.field-label {
	position: absolute;
	top: 20px;
	left: 40px;
	font-size: 24px;
	line-height: 1;
	pointer-events: none;
	transition: 0.5s ease;
}
.rtl-text .field-label {
	left: auto;
	right: 40px;
}
.field-error {
	color: var(--input-error);
	text-align: left;
	margin-top: 8px;
	display: none;
}
.rtl-text .field-error {
	text-align: right;
}

.field-alert {
	position: absolute;
	left: 50%;
	bottom: 100%;
	margin-bottom: 14px;
	margin-left: -135px;
	width: 270px;
	background: var(--input-error);
	border-radius: 4px;
	padding: 3px 5px;
	color: var(--bg-color);
	font-size: 14px;
	animation: shake 5s ease-in-out 5 both;
	display: none;
}
.field-alert:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--input-error);
}
.field-alert.active {
	display: block;
}

.field-input:focus,
.field-input.focus {
	border-color: var(--input-label-focus);
}
.field-input:focus ~ .field-input__prefix .field-icon,
.focus .field-icon {
	fill: var(--input-icon-focus);
}
.field-input:focus ~ .field-label,
.focus ~ .field-label {
	top: -9px;
	left: 32px;
	background: var(--bg-color);
	padding: 2px 8px;
	color: var(--input-label-focus);
	font-size: 14px;
}
.rtl-text .field-input:focus ~ .field-label,
.rtl-text .focus ~ .field-label {
	left: auto;
	right: 32px;
}

.field-input.has-error {
	border-color: var(--input-error);
}
.has-error ~ .field-icon {
	fill: var(--input-error) !important;
}
.has-error ~ .field-label {
	top: -9px;
	left: 32px;
	background: var(--bg-color);
	padding: 2px 8px;
	font-size: 14px;
	color: var(--input-error) !important;
}
.rtl-text .has-error ~ .field-label {
	left: auto;
	right: 32px;
}
.has-error ~ .field-error,
.has-error ~ .field-alert {
	display: block;
}