/*
Theme Name: Chygarden
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
.col-product-thumbnail {
	flex-basis: 50%;
    max-width: 50%;
    padding: 0 9.8px 19.6px;
}
.tab-header {
    display: flex;
    border-bottom: 1px solid #ededed;
    padding-bottom: 0px;
}

.tab-title {
    flex: 1;
    font-size: 30px;
    font-weight: bold;
    margin-right: 10px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.tab-menu {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-end;
}

.tab-menu button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    margin-left: 5px;
    position: relative;
    transition: color 0.3s ease;
    color: #555;
    white-space: nowrap;
    margin-bottom: 0px;
    margin-right: 5px;
    text-transform: none;
}

.tab-menu button:hover,
.tab-menu button.active {
    color: #0073aa;
}

.tab-menu button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background-color: #0073aa;
    transition: width 0.3s ease;
}

.tab-menu button:hover::after,
.tab-menu button.active::after {
    width: 100%;
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
	.col-product-thumbnail {
		flex-basis: 100%;
	    max-width: 100%;
	    margin-bottom: 10px;
	}
	.tab-title {
		font-size: 20px;
	}
}