/* GeneratePress Site CSS */ .inside-article,
.sidebar .widget,
.comments-area, .gb-query-loop-item:not(.sidebar .gb-query-loop-item),.container-widget {
	border-right: 2px solid rgba(0, 0, 0, 0.07);
	border-bottom: 2px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 0 10px rgba(232, 234, 237, 0.5);
}
 /* End GeneratePress Site CSS */




/* Common Styles for Headings and Widget Titles */
/* Default heading styles */
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
    font-weight: 600;
	  font-family: arial;
    padding: 0; 
	  size:50px;
}
/* Custom heading styles */
.custom-heading {
    font-weight: 500;
    padding: 10px 10px 10px 10px;
    background : #4fda00;
    border-radius: 10px;
	  border: 1px solid yellow;
    color: #000000 !important;
    box-shadow: rgba(3, 3, 9, 0.3) 0 2px ;
    text-align: center; /* Only for widget-title */
}

.widget-title {
    font-weight: 500;
    padding: 10px 10px 10px 10px;
    background-image: linear-gradient(to right, #ff9a2e 0%, #ffffff 51%, #146a00 100%);
    border-radius: 10px;
	  border: 2px solid #00bf10;
    color: #000000 !important;
    box-shadow: rgba(23, 43, 99, 0.3) 0 7px 28px;
    text-align: center; /* Only for widget-title */
}


/* Image Styles */
img, .rpwwt-widget ul li img, #rpwwt-recent-posts-widget-with-thumbnails-2 img {
    height: auto;
    max-width: 100%;
    border-radius: 4px;
    display: inline;
    float: left;
    margin: 0.3em 0.75em 0.75em 0;
}

/* Button Styles */
.wp-block-search__button, button, input[type=button], input[type=reset], input[type=submit], a.gb-button, a.read-more.button, .wp-element-button{
    background-image: linear-gradient(to right, #00b140 0%, #00b140 51%, #00b140 100%); /* Button */
    color: #fff !important;
    border-radius: 10px;
    box-shadow: rgba(23, 43, 99, 0.3) 0 7px 28px !important;
}

.wp-block-search__button, a.gb-button, a.read-more.button {
    font-size: 14px !important;
    padding: 8px 20px !important;
    text-align: center;
}

a.gb-button, a.read-more.button, .wp-element-button {
    transition: 0.5s;
    background-size: 200% auto;
    border-radius: 120px;
}

/* Image Box Shadow */
.gb-block-image img, .wp-post-image{
    vertical-align: middle;
    margin-top: 0px;
    border-radius: 12px;
    box-shadow: rgba(23, 43, 99, 0.2) 0 7px 28px !important;
}

/* Author Profile */
.author-profile {
    padding: 3%;
    padding-bottom: 10px;
    margin-top: 30px;
    font-size: 0.9em;
    background-color: #fff;
    display: flex;
    align-items: center;
    box-shadow: rgb(23 43 99 / 30%) 0 2px 10px;
    border-radius: 25px;
}

.author-profile .insights-avatar {
    width: 250px;
    height: auto;
    border-radius: 100%;
    margin-right: 30px;
}

.author-profile .insights-avatar img {
    border-radius: 100%;
}

.author-title {
    margin-bottom: 0.1em;
    font-weight: bold;
    font-size: 18px;
}

.author-description {
    line-height: 1.6em;
    font-size: 16px;	
}

.author-links a {
    margin-top: -2em;
    font-size: 14px;
    line-height: 2em;
    font-weight: bold;
    color: #00bf10;
    float: left;
}

@media (max-width: 768px) {
    .author-profile {
        padding: 20px;
        padding-bottom: 25px;
        margin-top: 60px;
        margin-bottom: 60px;
        flex-direction: column;
        text-align: center;
    }
    .sidebar .widget {
        display: flex;
        flex-direction: column;
        padding: 20px;
        margin: 10px auto; /* Center horizontally with auto margin */
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        max-width: 90%; /* Ensure widget does not exceed 90% of the viewport width */
    }
	
    .author-profile .insights-avatar {
        margin-right: 0;
        width: 100%;
        margin-top: -60px;
    }
    .author-profile .insights-avatar img {
        max-width: 100px;
    }
    .author-links a {
        float: none;
        align-self: center;
    }
    .author-description {
        margin-bottom: -0.1em;
    }
}

/* Entire Site Social Share  */
.webcreation-float-social-wrapper {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9999;
}

.webcreation-float-social-sharing {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
    min-height: 30px;
    font-size: 12px;
    padding: 14px 10px;
}

.webcreation-float-social-sharing:first-of-type {
    border-top-right-radius: 10px;
}

.webcreation-float-social-sharing:last-of-type {
    border-bottom-right-radius: 10px;
}

.webcreation-social-facebook {
    fill: #fff;
    background-color: rgba(59, 89, 152, 1);
}

.webcreation-social-facebook:hover {
    background-color: rgba(59, 89, 152, .8);
}

.webcreation-social-twitter {
    fill: #fff;
    background-color: rgba(29, 161, 242, 1);
}

.webcreation-social-twitter:hover {
    background-color: rgba(29, 161, 242, .8);
}

.webcreation-social-pinterest {
    fill: #fff;
    background-color: rgba(189, 8, 28, 1);
}

.webcreation-social-pinterest:hover {
    background-color: rgba(189, 8, 28, .8);
}

.webcreation-social-linkedin {
    fill: #fff;
    background-color: rgba(0, 119, 181, 1);
}

.webcreation-social-linkedin:hover {
    background-color: rgba(0, 119, 181, .8);
}

.webcreationa-social-whatsapp {
    fill: #fff;
    background-color: rgba(37, 211, 102, 1);
}

.webcreation-social-whatsapp:hover {
    background-color: rgba(37, 211, 102, .8);
}

.webcreation-social-telegram {
    fill: #fff;
    background-color: #1ba2f1;
}

.webcreation-social-telegram:hover {
    background-color: #2686C6;
}

/* After Post Social Share */
.webcreation-social-wrapper {
    margin: 30px 0;
    font-size: 0;
}

.webcreation-social-wrapper span {
    font-weight: bold;
    padding-right: 10px;
    font-size: 16px;
}

.webcreation-social-sharing {
    font-size: 17px;
    padding: 7px 20px;
}

@media only screen and (max-width: 600px) {
    .webcreation-social-sharing {
        font-size: 17px;
        padding: 6px 17px;
        display: inline-block;
    }
    .webcreation-social-wrapper {
        margin: 30px 0px;
        font-size: 0;
    }
}

.webcreation-social-sharing svg {
    position: relative;
    top: 0.15em;
    display: inline-block;
}

.webcreation-social-sharing:first-of-type {
    border-radius: 100px 0 0 100px;
}

.webcreation-social-sharing:last-of-type {
    border-radius: 0 100px 100px 0;
}

.webcreation-social-facebook {
    fill: #fff;
    background-color: rgba(59, 89, 152, 1);
}

.webcreation-social-facebook:hover {
    background-color: rgba(59, 89, 152, .8);
}

.webcreation-social-twitter {
    fill: #fff;
    background-color: rgba(29, 161, 242, 1);
}

.webcreation-social-twitter:hover {
    background-color: rgba(29, 161, 242, .8);
}

.webcreation-social-pinterest {
    fill: #fff;
    background-color: rgba(189, 8, 28, 1);
}

.webcreation-social-pinterest:hover {
    background-color: rgba(189, 8, 28, .8);
}

.webcreation-social-linkedin {
    fill: #fff;
    background-color: rgba(0, 119, 181, 1);
}

.webcreation-social-linkedin:hover {
    background-color: rgba(0, 119, 181, .8);
	
}

.webcreation-social-whatsapp {
    fill: #fff;
    background-color: rgba(37, 211, 102, 1);
}

.webcreation-social-whatsapp:hover {
    background-color: rgba(37, 211, 102, .8);
}

.webcreation-social-reddit {
    fill: #fff;
    background-color: rgba(255, 87, 0, 1);
}

.webcreation-social-reddit:hover {
    background-color: rgba(255, 87, 0, .8);
}

.main-navigation {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.post-image img {
    border-radius: 12px;
}


.hd_quiz {
    border: 2px solid #e0e0e0;
    padding: 20px;
    border-radius: 12px;
    background-color: #f9f9f9;
}

.hdq_question {
    font-weight: bold;
    margin-bottom: 10px;
}