﻿
/* flag phone number */
.form-group.phone-group {
    display: flex;
    align-items: center;
    border: none;
    height: auto;
    background: #fff;
    overflow: hidden;
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 15px;
}

.country-code {
    width: 125px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 0px;
    border-right: 1px solid #c1c1c1;
    background: #fff;
    margin-right: 10px;
}

    .country-code img {
        width: 28px;
        height: 18px;
        object-fit: cover;
        border-radius: 2px;
    }

    .country-code select {
        border: none;
        outline: none;
        font-size: 14px;
        color: #000;
        background: transparent;
        cursor: pointer;
    }

.phone-input {
    border: none !important;
    box-shadow: none !important;
    height: 100%;
    width: 100%;
    font-size: 22px;
    padding-left: 25px;
    color: #777;
}

    .phone-input::placeholder {
        color: #777;
    }
/* whatsapp */
.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 99;
}

    .btn-whatsapp-pulse:hover {
        color: #fff;
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.phone-field {
    position: relative;
    width: 100%;
    height: auto;
    border: none;
    display: flex;
    align-items: center;
    background: #fff;
    overflow: visible;
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 15px;
}

.selected-country {
    width: 125px;
    height: 100%;
    border-right: 1px solid #d8dfe5;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 0px;
    cursor: pointer;
    background: #fff;
    font-size: 14px;
    margin-right: 10px;
    padding-right: 10px;
}

    .selected-country img {
        width: 28px;
        height: 18px;
        object-fit: cover;
    }

    .selected-country span {
        font-size: 15px;
        color: #000;
    }

    .selected-country i {
        margin-left: auto;
        color: #777;
        font-size: 16px;
    }

.phone-field input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 0px;
    font-size: 22px;
    color: #000;
}

    .phone-field input::placeholder {
        color: #000;
        font-size: 14px;
    }

/* Dropdown */

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 380px;
    max-height: 280px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: none;
    z-index: 999;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 7px 15px;
    cursor: pointer;
    transition: 0.3s;
}

    .country-option:hover {
        background: #f4f4f4;
    }

    .country-option img {
        width: 30px;
        height: 20px;
        object-fit: cover;
    }

    .country-option span {
        flex: 1;
        font-size: 15px;
        color: #333;
    }

    .country-option small {
        font-size: 15px;
        color: #888;
    }

.logo-type img {
    min-width: 35px;
    height: auto;
}

.country-select.inside input, .country-select.inside input[type="text"] {
    border: none;
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
}

.form-item {
    margin-bottom: 15px;
}

.country-select {
    width: 100%;
}

.checkbox-group {
    display: flex;
}

    .checkbox-group input {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.75rem;
    }

    .checkbox-group label {
        margin: 0;
        color: #000;
        font-weight: normal;
        font-size: 12px;
    }

    .checkbox-group a {
        color: #000;
        text-decoration: none;
        font-weight: bold;
    }




.selected-country span {
    font-size: 16px;
}

.selected-country i {
    margin-left: auto;
    font-size: 13px;
}

.phone-field input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 16px;
}

/* DROPDOWN */

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 370px;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    z-index: 999;
}

    .country-dropdown.active {
        display: block;
    }

.country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    cursor: pointer;
}

    .country-option:hover {
        background: #f3f3f3;
    }

    .country-option img {
        width: 28px;
        height: 20px;
        object-fit: cover;
    }

    .country-option span {
        flex: 1;
    }

    .country-option small {
        color: #777;
    }
