:root {
    --page-header-font-size: 45px;
    --page-header-font-weight: 900;

    --page-header-font-size-medium: 35px;
    --page-header-font-size-small: 30px;

    --page-h2-font-size: 30px;
    --page-h2-font-weight: normal;
}

.tel-link {
    color: #1eb53a !important;
    text-decoration: none !important;
    border-bottom: 1px solid #1eb53a !important;
    transition: background-color .4s ease !important;
}

.tel-link:hover {
    background-color: rgba(30, 181, 58, 0.15) !important;
}

.primary-btn,
.secondary-btn {
    color: white !important;
    background-color: #1eb53a;
    text-decoration: none;
    font-weight: bold;
    outline: none;
    border: 2px solid #1eb53a;
    border-radius: 3px;
    padding: 10px 1rem;
    cursor: pointer;
    border-radius: 20px;
    transition: box-shadow .4s ease, transform .4s ease;
    font-size: 16px;
}

.primary-btn:hover {
    box-shadow: 0px 10px 20px rgba(14, 100, 34, .20);
    transform: scale(1.02);
    text-decoration: none !important;
}

.primary-btn.loading {
    pointer-events: none;
    user-select: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.primary-btn.loading * {
    opacity: 0;
}

.primary-btn.loading .loading-wrapper,
.primary-btn.loading .loading-icon {
    opacity: 1;
}

.primary-btn.loading .loading-wrapper {
    display: block;
}

.no-events {
    pointer-events: none;
}

.secondary-btn {
    color: #1eb53a !important;
    background-color: transparent;
    transition: background-color .4s ease;
}

.secondary-btn:hover {
    background-color: rgba(30, 181, 58, 0.15);
}


.image-contact-verify-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;

}

.image-contact-verify-wrapper.active {
    opacity: 1;
    pointer-events: all;
}

.image-contact-verify-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgb(0 0 0 / 60%);
}

.image-contact-verify-box {
    background-color: white;
    padding: 1.8rem 2rem;
    z-index: 1;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: scale(0.9);
    transition: transform .1s ease;
}

.image-contact-verify-wrapper.active .image-contact-verify-box {
    transform: scale(1);
}

.image-contact-verify-header {
    font-size: 21px;
    font-weight: bold;
    color: #1E3050;
}

.image-contact-verify {
    display: flex;
    align-items: center;
    font-size: 17px;
    gap: 1rem;
}

.image-contact-verify-input {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-contact-verify-refresh {
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    margin-bottom: .5rem;
}

#image-contact-verify-input {
    outline: none;
    padding: .5rem .7rem;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    background-color: #e2e2e2;
    width: 100%;

}

#image-contact-verify-btn {
    cursor: pointer;
    color: white;
    background-color: #1eb53a;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    outline: none;
    border: none;
    transition: box-shadow .4s ease, transform .4s ease;
    padding: 10px 8px;
}

#image-contact-verify-btn:hover {
    box-shadow: 0px 10px 20px rgba(14, 100, 34, .20);
    transform: scale(1.02);
}

#image-contact-verify-btn.loading {
    pointer-events: none;
    user-select: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#image-contact-verify-btn.loading * {
    opacity: 0;
}

#image-contact-verify-btn.loading .loading-wrapper,
#image-contact-verify-btn.loading .loading-icon {
    opacity: 1;
}

#image-contact-verify-btn.loading .loading-wrapper {
    display: block;
}

.image-contact-verify img {
    user-select: none;
    pointer-events: none;
}

#image-contact-verify-header-text {
    position: relative;
}

#image-contact-verify-header-text::before {
    content: attr(error-text);
    color: red;
    position: absolute;
    top: -17px;
    font-size: 13px;
}

.loading-wrapper {
    position: absolute;
    width: 1.5rem;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
    display: none;

}

.loading-icon {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

.image-contact-number-wrapper.loading .loading-wrapper {
    position: static;
    display: block;
}

.image-contact-number-wrapper.loading .loading-icon {
    stroke: #1eb53a;
}

.image-contact-number-wrapper {
    width: 60px;
    height: 60px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-contact-number-wrapper img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    background-color: white;
}

.form-wrapper.error input,
.form-wrapper.error textarea {
    border: 2px solid red;
}

.form-wrapper.error::after {
    content: attr(errorTxt);
    color: red;
    font-size: 13px;
    position: absolute;
    bottom: -20px;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}