/* CSS Document */
/**
  * This file is part of AKB - ERIDANO MODULE
 * @package     AKB Project - Branka Framework Extensions  
 * @version		2.3.0
 * @author		Andrea Bini
 * @copyright 	Copyright (C) 2023 Andrea Kozul Bini s.r.l.c.r.
 * @license		Copyrighted Commercial Software
 * Site:        akbproject.com
 * Email:       info@akbproject.com
*/

.AKBeridano-tabs {
    padding-bottom: 16px;
}

.AKBeridano-tab-titles {
    display: inline-flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    width: 100%;
    gap:6px;
}

.AKBeridano-tab-titles > div {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0px;
}

.AKBeridano-tab-titles > div.active {
}

.AKBeridano-tab-contents{
    
}

.AKBeridano-tab-contents .AKBeridano-tab-content {
    display: none;

}

.AKBeridano-tab-contents .AKBeridano-tab-content.active {
    display: block;
    padding: 12px 0px;
}

.AKBeridano-tab-content {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.AKBeridano-tab-content.active {
    opacity: 1;
}

/* Text Title */
.AKBeridano-tab-title-text {
    display: inline-block;
    padding: 8px 16px;
    border: none;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.AKBeridano-tab-title.active .AKBeridano-tab-title-text {
}

.AKBeridano-tab-title-text:hover {
}

/* Dots Title */
.AKBeridano-dots-button {
    display: inline-block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.AKBeridano-dots-button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.AKBeridano-tab-title.active .AKBeridano-dots-button {
}

.AKBeridano-dots-button:focus {
    outline: none;
}

.AKBeridano-dots-button:hover {
}

/* title */


/* Image Title */
.AKBeridano-tab-titles img {
    transition: opacity 0.3s ease-in-out;
    opacity: 1;
}
  
.AKBeridano-tab-titles img:hover {
    opacity: 0.8;
}

.AKBeridano-tab-title.active img {
    opacity: 0.8;
}


.AKBeridanofield_container_description {
    position: relative;
}

.AKBeridano_description  {
    padding: 12px 0px;
    width: 100%;
}

.AKBeridano_description_bottom  {
    padding: 12px;
    width: 100%;
}

.AKBeridano_article_readmore {
    text-decoration: none;
    padding: 6px 30px;
    border: 1px solid #d2d2d2;
    width: fit-content;
}

/*** article layout ***/
.AKBeridano_container_article {
    display:flex;
}

.AKBeridano_article_image {
    width: 33.3333%;
}

.AKBeridano_container_text {
    width: 67.7777%;
    padding: 0px 12px;
}

@media screen and (max-width: 960px) {

	.AKBeridano_container_article {
	flex-direction: column !important;
	}
	.AKBeridano_article_image {
	width: 100% !important;
	}
	.AKBeridano_container_text{
	width: 100% !important;
	}

}