﻿
/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    font-size: 14px;
    color: #FF0000;
    float: right;
    margin: 5px;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    /*border: 1px solid #f00;*/
    background-color: #fee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}

.validation-summary-valid {
    display: none;
}

.form-horizontal .control-label {
    text-align: left;
}

.error {
    font-size: 12px;
    color: #FF0000;
    /*float: right;*/
    font-weight: 400;
}

.swal2-container {
    z-index: 999999 !important;
}

/*.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 150px;
    z-index: 9999;
}

    .floating-icons a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 55px;
        margin-top: 10px;
        border-radius: 50%;
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        box-shadow: 0 5px 15px rgba(0,0,0,.25);
    }

.whatsapp {
    background: #25D366;
}

.call {
    background: #007bff;
}

.instagram {
    background: #E1306C;
}

.facebook {
    background: #1877F2;
}

.email {
    background: #EA4335;
    color: #fff;
}*/


.floating-icons {
    position: fixed;
    right: 20px;
    bottom: 120px;
    background: #fff;
    padding: 15px 10px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

    .floating-icons a {
        position: relative;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        box-shadow: 0 8px 20px rgba(0,0,0,.20);
        transition: .35s ease;
        animation: slideIn .6s ease;
    }

        .floating-icons a:hover {
            transform: translateX(-8px) scale(1.08);
            box-shadow: 0 12px 25px rgba(0,0,0,.30);
        }

        /* Tooltip */

        .floating-icons a span {
            position: absolute;
            right: 70px;
            white-space: nowrap;
            background: #222;
            color: #fff;
            padding: 8px 14px;
            border-radius: 30px;
            font-size: 14px;
            opacity: 0;
            visibility: hidden;
            transition: .3s;
        }

        .floating-icons a:hover span {
            opacity: 1;
            visibility: visible;
        }

/* Brand Colors */

.whatsapp {
    background: #25D366;
}

.call {
    background: #0d6efd;
}

.email {
    background: #EA4335;
}

.instagram {
    background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF,#515BD4);
}

.facebook {
    background: #1877F2;
}

/* Animation */

@keyframes slideIn {

    from {
        transform: translateX(80px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile */

@media(max-width:768px) {

    .floating-icons {
        right: 12px;
        bottom: 95px;
        gap: 10px;
    }

        .floating-icons a {
            width: 50px;
            height: 50px;
            font-size: 21px;
        }

            .floating-icons a span {
                display: none;
            }
}