/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    color: black;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
}

.cookie-consent-button {
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-consent-button:hover {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
    opacity: .5;
}

.cookie-consent-button.btn-success {
    background-color: #34a853;
    color: white;
}

.cookie-consent-button.btn-grayscale {
    background-color: #dfe1e5;
    color: black;
}

.cookie-consent-button.btn-outline {
    background-color: #e6f4ea;
    color: #34a853;
}

.cookie-consent-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.cookie-consent-options label {
    margin: 0 10px;
    font-size: 14px;
}

.cookie-consent-options input {
    margin-right: 5px;
}

.svg-rollover-icon:hover .item1 {
  animation: step1 5.6s linear infinite !important;
}

.svg-rollover-icon:hover .item2 {
  animation: step2 5.6s linear infinite !important;
}

.svg-rollover-icon:hover .item3 {
  animation: step3 5.6s linear infinite !important;
}

.svg-rollover-icon:hover .item4 {
  animation: step4 5.6s linear infinite !important;
}

.svg-rollover-icon:hover .heart {
  animation: heartPop 5.6s linear infinite !important;
}

@keyframes step1 {
  0%, 12% { opacity: 0; }
  14%, 96% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes step2 {
  0%, 25% { opacity: 0; }
  27%, 96% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes step3 {
  0%, 38% { opacity: 0; }
  40%, 96% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes step4 {
  0%, 51% { opacity: 0; }
  53%, 96% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes heartPop {
  0%, 64% {
    opacity: 0;
    transform: scale(0.78);
  }
  70% {
    opacity: 1;
    transform: scale(1.06);
  }
  76%, 96% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.78);
  }
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}