﻿/*****************Font******************/
/*****************Values******************/
/*****************Color******************/
/*$colordarkblue: #083a59;
$colorgray: #383838;
$colorfirst: #15234A;
$colorsecond: #004495;
$colorOrange: #FF9C2A;*/
/*****************Placeholder******************/
/*****************ScrollBar******************/
/*****************Mixin******************/
/*****************Font******************/
/*****************Values******************/
/*****************Color******************/
/*$colordarkblue: #083a59;
$colorgray: #383838;
$colorfirst: #15234A;
$colorsecond: #004495;
$colorOrange: #FF9C2A;*/
/*****************Placeholder******************/
/*****************ScrollBar******************/
/*****************Mixin******************/
.hiper-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    background-color: rgba(10, 29, 53, 0.75);
    /*backdrop-filter: blur(1px);*/
    transition: 0.3s ease;
}
.hiper-popup:has(.contact-form-section) {
    background-color: rgba(26, 86, 50, 0.9);
    backdrop-filter: blur(10px);
}
.hiper-popup:not(.active) {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
.hiper-popup .popup-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}
.hiper-popup .popup-content {
    position: relative;
    padding: 0.625rem;
}
.hiper-popup .popup-content .close-popup {
    position: absolute;
    top: -2.1875rem;
    right: -2.1875rem;
    color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
}
@media (max-width: 1023px) {
    .hiper-popup .popup-content .close-popup {
        top: -3.4375rem;
        right: 0rem;
    }
}
.hiper-popup .popup-content .close-popup svg {
    width: 2.8125rem;
    height: 2.8125rem;
}
.hiper-popup .contact-form-section {
    padding: 2.8125rem;
}
.hiper-popup .contact-form-section .section-title {
    text-align: left;
}

.hiper-popup .scroll-area {
    max-height: 82svh;
    overflow: auto;
}
.hiper-popup .pq-form-div {
    padding-block: 2rem;
}
@media (max-height: 750px) {
    .hiper-popup .pq-form-div {
        zoom: .9
    }
}