.contact-form{
    padding: 10px;
}
.field-item{
    display: block;
    padding: 10px 0;
}
.field-item label{
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
.field-item .error{
    color:red;
    font-size: 15px;
    display: none;
    margin-top: 10px;
}
.field-item .error.show-error{
    display: block;
}
.intl-tel-input{
    width: 100%;
}
ul.country-list {
    overflow-y: hidden !important;
}
.flag-container, .flag-container .selected-flag {
    border-radius: 80px 0 0 80px !important;
}
.form-field{
    outline: none !important;
    width: 100% !important;
    border: 1px solid #dadbdd !important;
    border-radius: 80px !important;
    color: #606266;
    display: block;
    line-height: 1;
    font-size: 16px;
    margin-bottom: 0;
    max-width: 100%;
    background-color: transparent;
}
.form-field:focus{
    border: 1px solid #000;
}
.disabled-btn {
    opacity: 0.8;
    cursor: not-allowed !important;
    pointer-events: none;
}
.submit_contact{
    margin-top: 20px !important;
    font-size: 20px !important;
    color: #FFF !important;
    background: #E1822D !important;
    border-radius: 0 20px !important;
    padding: 10px 30px !important;
    outline: none !important;
    border: 1px solid #E1822D !important;
    font-weight: 500 !important;
}
.submit_contact:hover,.submit_contact:active{
    color: #E1822D !important;
    background: transparent !important;
}
.confirm-whatsappu-unsubscribe{
    background-color: transparent;
    background-image: linear-gradient(90deg, #9DD97A 4.41%, #8CB952 95.77%);
}
.whatsapp_contacts_form{
    cursor: pointer;
}
.cancel-action {
    background: #000;
}
.cancel_form_data {
    text-align: center;
}
.confirmation-btn {
    font-size: 20px;
    font-weight: 600;
    fill: #FFF;
    color: #FFF;
    border-radius: 33px;
    padding: 15px 30px 15px 30px;
    margin: 10px 20px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
/* Loader CSS  */
.whatsapp-loader.show{
    display: flex !important;
    opacity: 1 !important;
}
.whatsapp-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: center;
    z-index: 999;
    display: none;
    opacity: 0;
}
.loader {
    width: 48px;
    height: 48px;
    border: 3px solid #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid;
    border-color: #9DD97A transparent;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}