﻿.entry-content a {
text-decoration: underline;
}
a {
     color: #3366CC;
}
a:hover {
     color: #FF0000;
     text-decoration: underline;
}
.entry-content a {
     color: #3366CC;
}
.entry-content a:hover {
     color: #FF0000;
     text-decoration: underline;
}


.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tier {
    box-sizing: border-box;
    flex: 0 0 calc(25% - 20px); /* 25% width minus 20px for margins */
    padding: 15px;
    margin: 10px; /* 10px margin on all sides */
    border: 1px solid #e0e0e0;
    background-color: #f5f5f5; /* Light gray background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.tier:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Increased shadow on hover */
}

.price {
    font-size: 24px; /* Increase font size */
    color: #007bff; /* Change color to blue */
    margin-bottom: 10px; /* Add some space below the price */
}

.tier small {
    font-size: 16px; /* Adjust as needed */
}

.btn {
    display: block;
    width: 100%;
    padding: 10px 15px; /* Increased padding for a larger button */
    margin-top: 10px; /* Add some space above the button */
    background-color: #007bff;
    color: #fff;
    border: 2px solid #0056b3; /* Added border */
    cursor: pointer;
    text-align: center;
    font-weight: bold; /* Bold text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Transition for smooth hover effects */
}

.btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
}


@media (max-width: 768px) {
    .tier {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .tier {
        flex: 0 0 calc(50% - 20px); /* Adjusted to 50% width minus 20px for margins */
        margin: 10px 5px; /* Adjusted margins for mobile */
    }
}

.mobile-disclaimer {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-disclaimer {
        display: block;
        text-align: center; 
        margin-top: 10px;   
        font-weight: bold;  
    }
}

/* Custom CSS to hide images in search results */
.search-results img {
    display: none;
}


.gift-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: Verdana, sans-serif;
}

@media (min-width: 600px) {
  .gift-cards-container {
    flex-direction: row;
    justify-content: space-around;
  }
}

@media (max-width: 599px) {
  .gift-cards-container {
    overflow: auto;
  }
}

.gift-card {
  border: 1px solid #ccc;
  padding: 20px;
  width: 200px;
  text-align: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.gift-card:hover {
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.gift-card h3 {
  font-size: 24px;
  font-weight: bold;
}

.gift-card p strong {
  font-size: 20px;
  font-weight: bold;
  color: #050df5;
}

.gift-card p {
  padding-bottom: 0px;
  margin-top: 0px;
}

.gift-btn {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  font-weight: bold;
  font-family: Verdana, sans-serif;
}

.gift-btn:hover {
  background-color: #050df5; /* Blue background color */
  color: white; /* White text */
  border: 2px solid #4CAF50;
}

.page-id-191777 a {
    text-decoration: none; /* Removes the underline */
    font-weight: normal; /* Sets the hyperlink text to normal, removing bold styling */
}

.softmerge-inner a {
  content: attr(href);
  pointer-events: all;
  cursor: pointer;
}

.gsc-control-cse {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.gsc-search-box {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}



