/*--------------------------------------------------------------
# SINGLE

For single post
ONLY for post type = post 
ADD your own stylesheet for custom post type single page 
OR, if it uses sames styles, add it to enqueue style function in functions.php 

--------------------------------------------------------------*/

.share-icon {
    cursor: pointer;
}

.share-icon a,
.share-icon svg {
    display: block;
}

.share-icon svg {
    width: 24px;
    height: 24px;
}

.elementor-widget-theme-post-content a {
    color: var( --e-global-color-secondary );
    text-decoration: underline;
}

.elementor-widget-theme-post-content h2 {
    margin: 24px 0;
    font-size: 32px;
    color: var( --e-global-color-secondary )
}

.elementor-widget-theme-post-content h3 {
    margin: 24px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--e-global-color-f50f092);
}

.elementor-widget-theme-post-content p + p {
    margin-top: 30px;
}

.toast {
    position: fixed;
    bottom: 5vh;
    left: 5vh;
    width: 200px;
    z-index: 99;
    background-color: #FFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    padding: 12px 25px;
    border-radius: 18px;
    animation: toast 0.8s ease-in-out 5s 1 forwards;
}

@keyframes toast {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@media (min-width: 1025px) {
    .share-icon {
        margin-bottom: 28px;
    }
}

@media (max-width: 1024px) {
    .sharing {
        display: flex;
        gap: 28px;
    }
}