.cfm-float-button {
    position: fixed;
    bottom: 40px;
    left: 20px;
    z-index: 9999;
    text-align: center;
}

#cfm-open-modal {
    background-color: #25d366;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cfm-social-buttons {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cfm-social-buttons a img {
    width: 40px;
    height: 40px;
}

.cfm-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.cfm-modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

.cfm-close {
    float: right;
    font-size: 24px;
    cursor: pointer;
    margin-top: -10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9);}
    to { opacity: 1; transform: scale(1);}
}


.cfm-float-button {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9999;
}

.cfm-float-button button {
    border-radius: 8px;
    padding: 8px;
}

.cfm-dropdown-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    bottom: 60px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.cfm-dropdown-menu li {
    padding: 10px;
    display: flex;
    align-items: center;
}

.cfm-dropdown-open {
    display: block;
}

.cfm-float-button button {
    background-color: #28a745; /* Ярко-зелёный цвет */
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

.cfm-float-button button:hover {
    background-color: #218838; /* Тёмно-зелёный при наведении */
}


.cfm-dropdown-menu li {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.cfm-dropdown-menu li:last-child {
    border-bottom: none;
}

.cfm-dropdown-menu a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.cfm-dropdown-menu a img {
    width: 24px;
    height: 24px;
}

.cfm-dropdown-open {
    display: block;
}

.cfm-call-icon {
	height:1.1em;
	top:4px;
	position:relative;
}
.cfm-dropdown {
    display: none;
}