.popup-box {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 15px 20px;
    font-family: MyriadProLight;
    box-sizing: border-box;
}
.popup-box .title {
    font-size: 20px;
    text-align: center;
    margin-top: 35px;
}
.popup-box .subtitle {
    font-size: 14px;
    text-align: center;
    margin: 10px 0;
}
.popup-box .btn_wrapper .btn,
.popup-box .btn_wrapper .get_prices,
.popup-box .btn_wrapper .show-all-size,
.popup-box .btn_wrapper .get_quote
{
    height: 55px !important;
    width: 100% !important;
}
.input-group {
    position: relative;
    width: 100%;
    max-width: 320px;
}
.input-group i {
    position: absolute;
    left: 14px;
    top: 60%;
    transform: translateY(-50%);
    color: #a3a3a3;
    pointer-events: none;
    transition: color 0.2s;
}
.input-group input,
.input-group textarea
{
    width: 100%;
    padding: 12px 14px 12px 44px;
    border: 1px solid #a3a3a3;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 15px;
    transition: all 0.2s ease;
}
.input-group textarea {
    padding: 12px 14px;
}
.input-group input:focus,
.input-group textarea:focus
{
    outline: none;
    border-color: #a3a3a3;
    background-color: #ffffff;
    box-shadow: 0 0 3px 1px rgba(208, 71, 68, 0.36);
}
.input-group input:hover,
.input-group textarea:hover
{
    border-color: #ffe9ea;
    background-color: #ffffff;
}
.input-group input::placeholder {
    color: #a3a3a3;
}
.input-group:focus-within i {
    color: #e31e24;
}
.input-group.right-icon i {
    left: auto;
    right: 14px;
}
.input-group.right-icon input {
    padding: 12px 44px 12px 14px;
}
.agree {
    margin: 20px 0;
}
.agree .error {
    border: 1px solid red;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    background-color: #ffe9ea;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}
.checkbox-custom {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.checkbox-text {
    width: 60%;
    position: relative;
    padding-left: 40px;
    font-size: 12px;
    line-height: 125%;
    color: #888888;
    cursor: pointer;
    text-align: left;
}
.checkbox-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 1px solid #a3a3a3;
    border-radius: 4px;
    background-color: #ffffff;
    transition: all 0.2s ease;
}
.checkbox-text::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 45%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.checkbox-custom:checked + .checkbox-text::before {
    background-color: #ef4444;
    border-color: #ef4444;
}

.checkbox-custom:checked + .checkbox-text::after {
    opacity: 1;
}
.checkbox-label:hover .checkbox-text::before {
    border-color: #ef4444;
}
.checkbox-custom:focus + .checkbox-text::before {
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}
.checkbox-custom:active + .checkbox-text::before {
    transform: translateY(-50%) scale(0.95);
}