#loader {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
.select2-results__option
{
    white-space: normal !important;
    word-wrap: break-word !important;
}

.select2-selection__rendered
{
    white-space: normal !important;
    word-wrap: break-word !important;
}



@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner{
    animation: fa-spin 2s infinite linear;
    font-size: 15px !important;
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.fa-spinner{
    animation: fa-spin 2s infinite linear;
    font-size: 15px !important;
}
.hide{
    display: none !important;
}



.button_pl {
    position: relative;
    padding: 6px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(150deg, rgb(190, 57, 50) 15%, #df3d35 70%, #ab3530 94%);
    border: none;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.button_pl:hover {
    transform: scale(1.05);
    color: white;
}

.button_pl:active {
    transform: scale(0.9);
}

.button_pl::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #f9ebea47, #f9ebea47);
    transition: all 0.5s ease-in-out;
    z-index: -1;
    border-radius: 50px;
}
.swal2-cancel{
    padding: 0.75rem 1.5rem;
}
.swal2-confirm  {
    display: block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: linear-gradient(150deg, rgb(25, 110, 76) 15%, #2b9367 70%, #17553f 94%);
    color: white;
}
.button_pl:hover::before {
    right: 100%;
}
.form-check-input1[type="checkbox"]:checked {
    background-color: #ae2626 !important;
    border-color: #ae2626 !important;
}
.bg-pl{
    background: linear-gradient(150deg, rgb(190, 57, 50) 15%, #df3d35 70%, #ab3530 94%);
}


.sticky-phone-btn {
    position: fixed;
    right: 20px;
    top: 80px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C7222A, #e74c3c);
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(199, 34, 42, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 24px;
    text-decoration: none;
}
.sticky-phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(199, 34, 42, 0.6);
    color: white;
}
.sticky-phone-btn:active {
    transform: scale(0.95);
}
.sticky-phone-btn i {
    font-size: 28px;
}
/* Animation for the button */
@keyframes phoneRing {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(-5deg);
    }
    70% {
        transform: rotate(5deg);
    }
}
.sticky-phone-btn.ringing {
    animation: phoneRing 2s infinite;
}
/* Show only on mobile devices */
@media (max-width: 768px) {
    .sticky-phone-btn {
        display: flex;
    }
}


@media (max-width:1080px) and (min-width: 996px)
{

    .button_pl
    {
        font-size: 10px !important;
        height: 33px !important;
    }
    .captcha
    {
        border-radius: 10px !important;
        height: 40px;
    }
}
