/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.story-content p {
    margin-bottom: 1.5em;
}

/* Font and Body */
body {
    font-family: 'Poppins', sans-serif;
    font-weight:200;
    background-color: #E8E8E9;
    color: #000;
    overflow-x: hidden;
    min-height: 100%;
}
.dark-mode {
  background-color:#1a1b25;
  color: #FFF;
}
.light-mode{
background-color: #E8E8E9;
color: #000;
}

/* Container */
#container {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: auto;
    position: relative;
    padding-top: 80px;
    overflow-y: auto;
}



.section {
    position:relative;
    padding: 20px; /* Consistent padding for all sections */
    margin: 0 auto; /* Center-aligns sections */
    width: 100%; /* Optional: Constrain section width */

    left:0;
}

.section h2 {
    text-align: left; /* Aligns headings to the left */
    margin-bottom: 10px;
}

.section p {
    text-align: left; /* Aligns paragraphs to the left */
    line-height: 1.6;
}
.container {
    margin: 12px;
     position: relative; 
}


/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 80px; /* Start right under the navbar */
    left: 0;
    width: 300px; /* Menu width */
    height: calc(100vh - 80px); /* Full height minus navbar */
    background-color:#1a1b25;
    color: #fff;
    z-index: 999;
    overflow-y: auto; /* Allow vertical scrolling */
    border-right: 1px solid #fff;
    padding-bottom:24px;
   
transform: translateX(-100%);
   transition: transform 0.3s ease;
   
}

.dropdown-menu.active {
    transform: translateX(0);
}

/* Search Input */
.dropdown-menu input[type="text"] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    outline: none;
    width: calc(100% - 2rem);
    margin: 1rem auto; /* Center within menu */
    color: #fff;
    background-color: #111; /* Dark background for input */
}

/* Search Button */
.dropdown-menu button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #fff;
    background-color: #8C8D92; /* Dark button */
    border: 1px solid #333;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: calc(100% - 2rem);
    margin: 0.5rem auto; /* Center within menu */
}





/* Top Navigation Bar */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligns items at far ends */
    background-color: #1a1b25;
    color: #fff;
    border-bottom: 1px solid #fff;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%; /* Ensures no overflow */
    height: 80px;
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    box-sizing: border-box; /* Include border in width */
}

/* Logo and Title Container */
.nav-title {
    display: flex;
    align-items: center;
    gap: 2px; /* Space between logo and text */
    margin-left: 1rem; /* Space on the left */
}

/* Logo */
.nav-logo img {
    height: 75px; /* Set logo height */
    cursor: pointer;
    top:5px;
}

/* Title and Tagline */
.nav-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-text h1 {
    font-family: 'Griffy', cursive;
    font-size: 2.8rem;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.nav-text .nav-tagline {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: -3px;
}

/* Hamburger Menu */
.navBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    background-color: transparent;

    padding: 0; /* Remove padding */
}

/* Hamburger Icon Lines */
.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 7px 0;
}

.hamburger span:nth-child(2) {
    width: 20px; /* Smaller middle line */
}

/* Hover Effects */
.navBox:hover,
.nav-logo img:hover {
    background-color: #8C8D92;
}


/* Search Icon */
.search-icon i {
    color: #fff;
    font-size: 1.2rem;
}

/* Menu Item */
.menu-item a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: 100;
    padding: 0.5rem 1rem;

}

.menu-item a:hover {
  /*   background-color: #8C8D92;*/
}

/* Dropdown Menu Search Input and Button */


/* Add padding around menu items for better alignment */
.dropdown-menu .menu-item a {
    padding: 0.5rem 1rem;
}


/* Recently Published Section */
.recently-published {
    padding: 0;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight:300;
}

.recently-published {
    width: 100%; /* Ensure the section takes up full width */
    margin: 0 auto; /* Center-align the section */
    padding: 1rem 0; /* Add vertical padding */
}

.recently-published h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 300;
}

.episode-scroll-container {
padding:12px;
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Ensure scroll snapping */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile devices */
    width: 100%; /* Make the container span full width */
}

.episode-box {
padding:12px;
    flex: 0 0 100vw; /* Each box takes up the full viewport width */
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center align items horizontally */
    text-align: left; /* Center align text */
    text-decoration: none; /* Remove link underline */
    color: inherit; /* Inherit text color */
    scroll-snap-align: start; /* Snap each box to the start */
}

@media (min-width: 768px) {
    .episode-box {
    padding:12px;
        flex-direction: row; /* Place image and text side by side */
        justify-content: space-between; /* Space content within the box */
        align-items: center; /* Center content vertically */
    }

}

.episode-box img {
    width: 100%; /* Full width for mobile */
    max-width: 25%; /* Set image width to 25% for desktop */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure proper image fit */
    margin-right: 1rem; /* Add space between image and text on desktop */
}

@media (max-width: 768px) {
    .episode-box img {
        width: 100%; /* Full width for smaller screens */
        max-width: 50%;
        margin-right: 0; /* Remove margin on mobile */
    }
}

.episode-box p {
padding:12px;

    margin: 0.5rem 0; /* Add spacing around text */
    font-size: 1rem; /* Standard font size */

    flex: 1; /* Allow text to take up remaining space on desktop */
}

/* Dot Navigation */
.dot-navigation {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fd8087; /* Highlight active dot */
}







/* Comments Heading */
.comments-heading {
    font-size: 1.2rem;

    margin-bottom: 0.5rem;
    text-align: left;
}

/* Blips and Grips Comments Section */
.blips-grips-comments {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
   
    margin-top: 1rem;
}

.blips-grips-comments {
    display: block; /* Block layout to control wrapping */
    text-align: left;
    margin-bottom: 1rem;
}

.character-comment {
    overflow: hidden; /* Clear any floating elements */
}

.character-image {
    float: left; /* Float image to the left */
    width: 25%; /* Adjust width as needed */
    height: auto;
    margin: 0 1rem 1rem 0; /* Add spacing around the image */
    border-radius: 8px; /* Optional: rounded corners */
}

@media (max-width: 600px) {
    .character-image {
        width: 50%; /* Stack image and text vertically */
    }
}
.character-details {
    overflow: hidden; /* Ensures text wraps around the floated image */
}

.character-text {
    font-size: 1rem;
    line-height: 1.6;

}

@media (max-width: 600px) {
    .character-comment {
        flex-direction: column; /* Stack image and text vertically */
    }

    .character-image {
        float: none; /* Disable floating on smaller screens */
        margin: 0 auto 1rem; /* Center image and add bottom margin */
    }
}
.poetic-introduction {

    margin: 0 auto;
    text-align: left;
}

.shadows-into-light-regular {
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.2rem;
    line-height: 1.6;

    margin-bottom: 1rem;
}

.kristi-regular {
    font-family: 'Kristi', cursive;
    font-size: 1.4rem;
    display: block;
    margin-top: 1rem;

}

/* Footer Styling to Match Page */
.footer {
    background-color: #1a1b25; /* Matches the navbar background */
    color: #fff; /* White text for contrast */
    text-align: center;
    padding: 20px; /* Adequate padding for spacing */
    border-top: 1px solid #333; /* Subtle top border */
    margin-top: auto; /* Pushes the footer to the bottom of the page */
}

.footer-links {
    display: flex;
    flex-wrap: wrap; /* Allows links to wrap on smaller screens */
    justify-content: center;
    gap: 15px; /* Space between links */
    margin-bottom: 10px; /* Space below the links */
}

.footer-links a {
    color: #ccc; /* Subtle color for links */
    text-decoration: none;
    font-size: 0.9rem; /* Slightly smaller font for links */
    transition: color 0.3s ease; /* Smooth hover effect */
}

.footer-links a:hover {
    color: #0073e6; /* Highlight color on hover */
}

.footer-small-print {
    font-size: 0.8rem; /* Smaller text for additional details */
    color: #777; /* Dimmed text color for less emphasis */
    line-height: 1.5; /* Readable line spacing */
}


.browse-by-genre {
    text-align: left;
    margin: 2rem auto;
    padding: 1rem;
}

.browse-by-genre h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.genre-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.genre-card {
    padding: 1rem;
    background-color: #1a1b25;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    text-align: center;
    flex: 1 1 150px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.genre-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.genre-card .icon {
    font-size: 2rem; /* Icon size */
    margin-bottom: 0.5rem; /* Space between icon and genre name */
}

.genre-card span {
    font-size: 1rem;
    font-weight: 400;
}

.genre-card:hover {
    background-color: #8C8D92;
}




.author-profile {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
 
}

.author-image {
    width: 150px; /* Adjust size as needed */
    height: auto;
    float: left; /* Makes the image float to the left */
    margin-right: 1rem; /* Adds space between the image and text */
    border-radius: 8px; /* Optional: for rounded corners */
}

.author-details {
    flex: 1; /* Ensures the text area takes up remaining space */
}

.author-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.author-details p {
    font-size: 1rem;
    line-height: 1.6;

    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .author-profile {
        flex-direction: column; /* Stack image and text vertically */
    }

    .author-image {
        float: none; /* Disable floating on smaller screens */
        margin: 0 auto 1rem; /* Center the image and add bottom margin */
    }
}

.subscribe-section {
    text-align: left;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.subscribe-form input[type="email"] {
    flex: none; /* Prevent flex from overriding width */
    padding: 0.5rem;
    border: 1px solid #fff;
    border-radius: 4px;
    font-size: 1rem;
    width: 220px; /* Set your desired width */
    max-width: 100%; /* Ensure it doesn't exceed container width */
    box-sizing: border-box; /* Include padding and border in width calculation */
}

.subscribe-form button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #fff;
    border: 1px solid #fff;
    background-color: #1a1b25;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    background-color: #8C8D92;
}

.thank-you-message {
    color: #0073e6;
    font-size: 1rem;
    margin-top: 1rem;
    font-style: italic;
    display: none;
}


.tip-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.tip-button {
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: #1a1b25;
    border: 1px solid #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 1rem;
    text-align: center;
}

.tip-button:hover {
    background-color:#8C8D92;
}
/* Sticky Social Sidebar */
 .share-section {
        text-align: left;
        margin-top: 2rem;
    }
    .share-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .share-button {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1rem;
        background-color: #1a1b25;
        border: 1px solid #fff;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        transition: background-color 0.3s;
        font-size: 1rem;
    }
    .share-button:hover {
        background-color:#8C8D92;
    }
    .share-button i {
        margin-right: 0.5rem;
    }
    
 .venmo-tip-button a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 100;
    padding: 0.5rem 1rem;
    background-color: #1a1b25;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.venmo-tip-button a:hover {
    background-color: #8C8D92;
}

.venmo-icon {
    width: 20px; /* Adjust as needed */
    height: auto;
    margin-right: 8px; /* Space between icon and text */
    vertical-align: middle; /* Align icon with text */
}



h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 300;
}


.share-section {
    margin-top: 0.5rem; /* Minimal space above the share section */
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}




h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 300;
}

.section {
    padding: 14px;
    margin: 0 auto;
}
#piechart {
    background-color: transparent; /* Make the container background transparent */
}
/* Form and Chart Container */
.form-section {
    text-align: left;
}

.form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
    font-weight: 300;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-section label {
    font-size: 1rem;
  
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section input[type="radio"] {
    margin-right: 0.5rem;
}

.form-section button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #fff;
    background-color:  #1a1b25;
    border: 1px solid #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start; /* Aligns the button to the left */
}

.form-section button:hover {
    background-color: #8C8D92;
}

.chart-section {
    width: 100%;
    height: 400px;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-chart-container {
        flex-direction: column;
    }
}


/* Search Results Styling */
        .search-results ul {
            list-style: none;
            padding: 0;
        }

        .search-results li {
            margin-bottom: 2rem;
            padding: 1rem;
            
          
            border-radius: 8px;
           
        }

        .search-results li:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .search-results h2 {
            font-size: 1.5rem;
           
            margin-bottom: 0.5rem;
        }


        .search-results img {
            width: 100%; /* Default to 100% for mobile */
            height: auto; /* Maintain aspect ratio */
            margin-bottom: 0.5rem;
            object-fit: cover;
            border-radius: 8px;
        }

        @media (min-width: 768px) {
            .search-results img {
                width: 40%; /* Limit to 40% width on larger screens */
            }
        }

        .search-results p {
            font-size: 1rem;
            line-height: 1.5;
       
        }

        .search-results a {
            color: #0073e6;
            text-decoration: none;
            font-weight: bold;
        }

        .search-results a:hover {
            text-decoration: underline;
            color: #005bb5;
        }

        .result-number {
            font-weight: bold;
    
            margin-bottom: 0.5rem;
        }
        
        
        .data-request-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;

    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.data-request-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;

    text-align: center;
}

.data-request-form label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;

}

.data-request-form input,
.data-request-form select,
.data-request-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.data-request-form input:focus,
.data-request-form select:focus,
.data-request-form textarea:focus {
    border-color: #0073e6;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 115, 230, 0.4);
}

.data-request-form button {
    display: inline-block;
    background-color: #0073e6;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
}

.data-request-form button:hover {
    background-color: #005bb5;
}

.data-request-form .note {
    font-size: 0.9rem;
   
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}
.all-stories h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
   .genre-section {
            margin-bottom: 2rem;
        }

        .stories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .story-item {


            padding: 1rem;
            flex: 1 1 calc(33.333% - 1rem);
            max-width: calc(33.333% - 1rem);

        }

        .story-item img {
            width: 100%;
            height: auto;
            margin-bottom: 1rem;
            border-radius: 4px;
        }

        .story-item h4 {
            margin: 0.5rem 0;
            font-size: 1.2rem;
        }

        .story-item p {
            margin-bottom: 0.5rem;
            font-size: 1rem;
           
        }

        .story-item .read-more {
            text-decoration: none;
            color: #fd8087;
            font-weight: bold;
        }


        @media (max-width: 768px) {
            .story-item {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }
        

  
  
  
  
  
  
  
  
/*
F5EB42 - sun inner
E4C74D - sun outer
FFFFFF - cloud inner
D4D4D2 - cloud outer
81C0D5 - parent outer
C0E6F6 - parent inner
FFFDF2 - moon inner
DEE1C5 - moon outer
FCFCFC - stars
*/

.wrapper {
cursor:pointer;
  text-align: center;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 100px;
 cursor:pointer;
  padding: 4px;
  border-radius: 40px;
}

.toggle:before,
.toggle:after {
  content: "";
  display: table;
   cursor:pointer;
}

.toggle:after {
  clear: both;
   cursor:pointer;
}

.toggle-bg {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 100%;
  height: 100%;
  background-color: #C0E6F6;
  border-radius: 40px;
  border: 4px solid #81C0D5;
  transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   cursor:pointer;
}

.toggle-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid red;
  border-radius: 40px;
  z-index: 2;
  opacity: 0;
   cursor:pointer;
}

.toggle-switch {
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: 50px;
  background-color: #F5EB42;
  border: 4px solid #E4C74D;
  border-radius: 50%;
  transition: all 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toggle-switch-figure {
  position: absolute;
  bottom: -14px;
  left: -50px;
  display: block;
  width: 80px;
  height: 30px;
  border: 8px solid #D4D4D2;
  border-radius: 20px;
  background-color: #fff;
  transform: scale(0.4);
  transition: all 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.toggle-switch-figure:after {
  content: "";
  display: block;
  position: relative;
  top: -65px;
  right: -42px;
  width: 15px;
  height: 15px;
  border: 8px solid #D4D4D2;
  border-radius: 100%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotateZ(70deg);
  background-color: #fff;
}
.toggle-switch-figure:before {
  content: "";
  display: block;
  position: relative;
  top: -25px;
  right: -10px;
  width: 30px;
  height: 30px;
  border: 8px solid #D4D4D2;
  border-radius: 100%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotateZ(30deg);
  background-color: #fff;
}

.toggle-switch-figureAlt {
  content: "";
  position: absolute;
  top: 5px;
  left: 2px;
  width: 2px;
  height: 2px;
  background-color: #EFEEDA;
  border-radius: 100%;
  border: 4px solid #DEE1C5;
  box-shadow: 42px -7px 0 -3px #FCFCFC, 75px -10px 0 -3px #FCFCFC, 54px 4px 0 -4px #FCFCFC, 83px 7px 0 -2px #FCFCFC, 63px 18px 0 -4px #FCFCFC, 44px 28px 0 -2px #FCFCFC, 78px 23px 0 -3px #FCFCFC;
  transition: all 0.12s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(0);
}

.toggle-switch-figureAlt:before {
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 7px;
  height: 7px;
  background-color: #EFEEDA;
  border-radius: 100%;
  border: 4px solid #DEE1C5;
}

.toggle-switch-figureAlt:after {
  content: "";
  position: absolute;
  top: 19px;
  left: 15px;
  width: 2px;
  height: 2px;
  background-color: #EFEEDA;
  border-radius: 100%;
  border: 4px solid #DEE1C5;
}

.toggle-input:checked ~ .toggle-switch {
  margin-left: 0;
  border-color: #DEE1C5;
  background-color: #FFFDF2;
}

.toggle-input:checked ~ .toggle-bg {
  background-color: #484848;
  border-color: #202020;
}

.toggle-input:checked ~ .toggle-switch .toggle-switch-figure {
  
  opacity: 0;
  transform: scale(0.1);
}

.toggle-input:checked ~ .toggle-switch .toggle-switch-figureAlt {
  transform: scale(.75);
}

.interaction-box {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    margin: 10px 0;
}

.interaction-item {
    text-align: center;
    cursor: pointer;
}

.interaction-item i {
    font-size: 20px;
    display: block;
}

.interaction-item span {
    font-size: 14px;
}
