:root {

    /* Alapszínek */
    --color-primary: #EABD1E;
	--color-yellow-dark: #d4aa18;
    --color-blue-1: #16baf7;
    
    --color-dark: #070604;
    --color-medium-dark: #3f4047;
    --color-light-dark: #2c2b29;
    
    --color-white: #ffffff;


    /* UI színek */
    --color-bg: var(--color-white);
    --color-text: var(--color-dark);

    /* Gradiensek */
    --card-overlay: linear-gradient(
        180deg,
        rgba(7,6,4,.3) 0%,
        rgba(7,6,4,.8) 100%
    );
}

/* =========================
   LOADER
========================= */

    /* FULLSCREEN OVERLAY */
    .loader-overlay-group-classes {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        opacity: 0;
        visibility: hidden;
        transition: .2s ease;
    }

    /* aktív állapot */
    .loader-overlay-group-classes.active {
        opacity: 1;
        visibility: visible;
    }

    /* SPINNER */
    .spinner-group-classes {
        width: 50px;
        height: 50px;
        border: 4px solid rgba(255,255,255,0.3);
        border-top: 4px solid var(--color-primary);
        border-radius: 50%;
        animation: spin-group-classes 0.8s linear infinite;
    }

    @keyframes spin-group-classes {
        to { transform: rotate(360deg); }
    }

/* =========================
   FILTER CONTAINER
========================= */

.filter-dropdown-container {
    color: var(--color-white) !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.filter-dropdown-container .filter-title-dropdown {
    padding: 1.75rem 1.5rem 1.75rem 0;
}

.full-filter {
    width: 100%;
}

.filter-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.btn-color-1,.btn-color-2,.btn-color-3 {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    box-sizing: border-box;
    border-radius: 27px;
    user-select: none;
    width: fit-content;
}

.filter-time-btn{
    margin-left: auto;
}

.btn-color-1 a, .btn-color-2 a, .btn-color-3 a {
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase;
}

.btn-color-1, .btn-color-3 {
    background-color: var(--color-primary);
}

.btn-color-1:hover {
    background-color: var(--color-yellow-dark);
}

.btn-color-2 {
    background-color: var(--color-light-dark);
}

.btn-color-2:hover {
    background-color: var(--color-white);
}

.btn-color-3:hover {
    background-color: var(--color-dark);
}

.btn-color-1 a, .btn-color-3 a{
    color: var(--color-dark) !important;
}

.btn-color-2 a{
	color: var(--color-white) !important;
}

.btn-color-3:hover a{
    color: var(--color-white) !important;
}

.btn-color-2:hover a{
	color: var(--color-light-dark) !important;
}

.filter-dropdown-container .filter-dropdown p {
    padding: 1.75rem 1.5rem;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 0px !important;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.filter-dropdown-container .filter-title-dropdown p {
    padding: 0 !important;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 700;
    color: var(--color-white) !important;
    margin-bottom: 5px !important;
}

.filter-dropdown p strong{
    margin-left:7px;
}

.filter-dropdown-container .filter-dropdown p .filter-span {
    font-weight: 700;
    margin-left: 7px;
    margin-right: 7px;
}

.filter-dropdown-container .filter-dropdown p svg{
    margin-left: 10px;
    transition: transform 0.5s ease;
}

.filter-dropdown-container .filter-dropdown.active p svg {
    transform: rotate(-180deg);
}

/* =========================
   CLASS GRID
========================= */

.classes-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.classes-card-grid .classes-card {
    aspect-ratio: 1.5;
    overflow: hidden;
    position: relative;
}

.classes-card-grid .classes-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--card-overlay);
    z-index: 1;
}

.classes-card-grid .classes-card a {
    inset: 0;
    width: 100%;
    display: grid;
    aspect-ratio: 1.5;
    color: var(--color-white) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}

.classes-card-grid .classes-card .classes-card-name {
    grid-area: 1 / 1 / 2 / 2;
    z-index: 1;
    display: grid;
    align-items: center;
    background: var(--card-overlay);
}

.classes-card-grid .classes-card a img {
    display: block;
    grid-area: 1 / 1 / 2 / 2;
    z-index: 0;
    width: 100%;
    aspect-ratio: 1.5;
    transition: .3s;
    object-fit: cover;
}

.classes-card-grid .classes-card:hover a img{
    transform: scale(1.05);
}

.classes-card-grid .classes-card h5 {
    color: var(--color-white) !important;
    text-align: center;
    font-size: 1.75rem !important;
    margin: 0 !important;
    padding: 0 1rem;
    line-height: 1;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 100%;
}

/* =========================
   TYPE CARDS
========================= */

.classes-type-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.classes-type-card {
    position: relative;
}

.filter-type-big-card {
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: var(--color-white);
    max-height: 400px;
}

.filter-type-big-card img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.filter-type-big-card:hover img{
    transform: scale(1.05);
}

.filter-type-big-card h3{
    grid-area: 1 / 1;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    align-self: center;
    font-weight: 800;
    margin-bottom: 3px !important;
}

.filter-type-big-card p {
    text-align: center;
    grid-area: 1/1/2/2;
    z-index: 4;
    color: var(--color-white);
    padding-top: 5rem;
    font-weight: 600 !important;
    font-style: normal;
    text-transform: uppercase;
    transition: .3s;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-type-big-card p svg{
    margin-left:7px;
}

.filter-type-big-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--card-overlay);
    z-index: 1;
}

/* =========================
   FILTER TABS
========================= */

.filter-main-row {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding: 1rem 0;
}

.filter-tab {
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
}

.filter-tab.active {
    color: var(--color-primary);
}

.filter-active-panel {
    width: 100%;
    padding: 1rem;
    /*border-bottom: 1px solid rgba(0,0,0,.1);*/
    /*border: 1px solid var(--color-primary);*/
    border: 1px solid #eabd1e1f;
    display: none;
    /*background: #3b3939;*/
    background: var(--color-light-dark);
    border-radius: 5px;
}

.filter-active-panel.open {
    display: block;
}

.filter-options {
    display: none;
    flex-wrap: wrap;
    gap: .75rem;
}

.filter-options.active {
    display: flex;
}

.filter-options button {
    padding: .5rem 1rem;
    border: 0px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    transition: .2s;
    font-weight: 700;
    font-style: italic;
    border-radius: 27px;
	color: white;
}

.filter-options button.active,
.filter-options button:hover {
    background: var(--color-primary) !important;
    color: var(--color-dark) !important;
}

.filter-options button.active:hover{
    /*background: var(--color-medium-dark) !important;
    color: var(--color-white) !important;*/
    background: var(--color-primary) !important;
    color: var(--color-dark) !important;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .classes-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .filter-dropdown-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-dropdown-container .filter-title-dropdown,
    .filter-dropdown-container .filter-dropdown p {
        padding: 5px 0px;
        margin-bottom: 5px !important;
    }

    .filter-time-btn{
        margin-left:0px;
        margin-top: 5px;
    }

    .filter-active-panel{
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .classes-card-grid {
        gap: .75rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .classes-type-card-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   GROUP CLASS PAGE
========================= */
.group-class-page-section {
    width: 100%;
    background-color: var(--color-dark);
}

.group-class-page {
    max-width: 1200px;
    margin: 0px auto;
    padding: 30px 10px;
    width: 100%;
    display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
    color: var(--color-white) !important;

}

.group-class-page-title-wrappert{
	width:100%;
	max-width:1200px;
	margin:30px auto 10px auto;
	padding-right: 10p;
	padding-left: 10px;
}

h1.group-class-page-title{
    font-weight: 700;
    text-transform: uppercase;
}

.group-class-page-type{
    font-size: 22px !important;
    font-weight: 400 !important;
    font-style: italic;
    color: var(--color-blue-1);
    margin-bottom: 0px;
}

.group-class-page-stats{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    text-transform: lowercase;
}

.group-class-page-stats span{
    padding:5px 12px;
    background-color: var(--color-light-dark);
    margin-right: 10px;
    border: 1px solid #eabd1e1f;
    display: flex;
    align-items: center;
    justify-content: flex-start;
	border-radius: 5px;
}

.group-class-page-stats svg{
    fill: var(--color-primary);
    height: 24px;
    margin-right: 8px;
}

.group-class-page .group-class-description-wrapper{
	width:74%;
}

.group-class-page .group-class-description-1{
    font-size: 18px;
}

.group-class-booking-block{
    padding:20px;
    background-color: var(--color-primary);
    border: 1px solid #eabd1e1f;
    border-radius: 5px;
    color: var(--color-dark);
	
	width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	margin-right: auto;
	margin-left: auto;
}

.group-class-page .group-class-booking-title{
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 20px;
}

.group-class-booking-block p{
	text-align: center;
}

.group-class-page .group-class-description-2{
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.group-class-page .group-class-video-container{
    width: 24%;
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
	min-height: 300px;
}

.group-class-page .group-class-video-placeholder{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width:100%;
    height:100%;
	height: 300px;
    transition: .3s;
    background-color: #cccccc10;
}

.group-class-page .group-class-video-container.video-lazyload{
    overflow: hidden;
}

.group-class-page .group-class-video-container.video-loaded{
    overflow: none;
}

.group-class-page .group-class-video-container:hover .group-class-video-placeholder{
    transform: scale(1.05);   
}

.group-class-page .group-class-video-container-play{
    width:70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 1;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: var(--color-white);
    background-color: var(--color-blue-1);
    opacity: 0.7;
    cursor: pointer;
}

.group-class-page .group-class-video-container-play svg{
    height: 35px;
}

.group-class-booking-wrapper{
	width:100%;
	padding: 5px;
}


@media (max-width: 992px) {
    /*.group-class-page {
        grid-template-columns: repeat(1, 1fr);
    }*/
}

/*** STAFF ***/
#coach-section{
    width:100%;
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    padding: 10px;
    /*background-color: var(--color-light-dark);*/
    /*background: #070604;
    background: linear-gradient(180deg,rgba(7, 6, 4, 1) 10%, rgba(44, 43, 41, 1) 70%);*/
}

.coach-section-wrapper{
    width:100%;
    max-width: 1200px;
    margin:0px auto;
    padding: 35px 0px;
}

.coach-section-wrapper h5{
    color: var(--color-white) !important;
    margin: 20px auto 30px auto;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
}

.coach-card-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.coach-card-grid .coach-card {
    aspect-ratio: 2/2.5;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    border: 1px solid #eabd1e1f;
}

.coach-card-grid .coach-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,6,4,.1) 70%, rgba(7,6,4,.7) 100%);
    z-index: 1;
}

.coach-card-grid .coach-card a {
    /*inset: 0;
    width: 100%;
    display: grid;
    aspect-ratio: 2/2.5;
    color: var(--color-white) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 14px !important;*/

    color: var(--color-white) !important;
    text-decoration: none !important;
    position: relative;
    display: block;
    aspect-ratio: 2 / 2.5;

}

.coach-card-grid .coach-card a,
.coach-card-grid .coach-card a:hover,
.coach-card-grid .coach-card a:focus,
.coach-card-grid .coach-card a:active {
    text-decoration: none !important;
}

.coach-card-grid .coach-card .coach-card-name {
    /*grid-area: 1 / 1 / 2 / 2;
    z-index: 1;
    display: grid;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0px !important;
    font-size: 1.125rem !important;
    text-transform: uppercase;
    box-sizing: border-box;*/

    color: var(--color-white) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;

    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1em;
}

.coach-card-grid .coach-card a img {
    /*display: block;
    grid-area: 1 / 1 / 2 / 2;
    z-index: 0;
    width: 100%;
    aspect-ratio: 2/2.5;
    transition: .3s;
    object-fit: cover;*/
    transition: .3s;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.coach-card-level {
    font-size: 1rem;
}

.coach-card-grid .coach-card:hover a img{
    transform: scale(1.05);
}

.coach-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;

    padding: 12px 12px 5px 12px;
    text-align: center;
}

.coach-loading-dots{
    grid-column: 1 / -1;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 0;
    gap:6px;
}

.coach-loading-dots span{
    width:8px;
    height:8px;
    background:#ffffff;
    border-radius:50%;
    display:block;
    animation: staffDots 1.4s infinite ease-in-out;
}

.coach-loading-dots span:nth-child(2){
    animation-delay:0.2s;
}

.coach-loading-dots span:nth-child(3){
    animation-delay:0.4s;
}

@keyframes staffDots{
    0%,80%,100%{
        transform:scale(0);
        opacity:0.3;
    }
    40%{
        transform:scale(1);
        opacity:1;
    }
}


/* =========================
   STAFF MODAL
========================= */

.coach-modal-overlay {
    width: 100vw;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #0706045b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    box-sizing: border-box;
}

.coach-modal {
    width: 90%;
    max-width: 600px;
    box-sizing: border-box;
    padding: 0;
    position: relative;
    border-radius: 3px;
    background-color: #f7f8f9;
}

.coach-modal-close {
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #070604;
    background-color: var(--color-primary) !important;
    padding: 0 5px 0 0;
}

.coach-modal-close:hover {
    color: red;
}

.coach-modal-club-icon-wrapper{
    width: 100%;
    padding: 5px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.coach-modal-club-icon-wrapper img{
    height: 15px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.coach-modal-content{
    padding: 0 20px 20px 20px;
	color: var(--global-color-2) !important;
}

.coach-modal-content div, .coach-modal-content p, .coach-modal-content h1,
.coach-modal-content h2, .coach-modal-content h3, .coach-modal-content h4,
.coach-modal-content h5, .coach-modal-content h6, .coach-modal-content ul,
.coach-modal-content li{
   color: var(--color-dark) !important;
}

.coach-modal-content-wrapper {
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
    position: relative;
    max-height: 400px;
    overflow-y: scroll;
}

.coach-modal-title {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 700;
    width: fit-content;
    box-sizing: border-box;
    padding: 0;
	color: var(--global-color-2) !important;
    line-height: 1.1em;
}

.coach-modal-title-text-wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.coach-modal-level {
    font-size: 12px;
    margin-bottom: 0px;
    font-weight: 400;
    width: fit-content;
    box-sizing: border-box;
    padding: 0;
	color: var(--global-color-2) !important;
    font-style: italic;
}

.coach-modal-img{

    border: 2px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: #ccc;
    background-position: top, center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    margin-right: 10px;

}

.coach-modal-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--color-light-dark);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

.coach-modal-title-wrapper{
    width: 100%;
    height: 40px;
    background-color: var(--color-primary);
    margin-bottom: 20px;
}

.coach-modal-title-wrapper-color{
    position: absolute;
    top:10px;
    left:10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 35px);
    margin:0;
    box-sizing: border-box;
}

.personal-coach-modal-btns,.coach-modal-btns{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0px 20px;
}

.coach-modal-btns-title{
    width:100%;
    padding:0px 20px;
    margin-top: 10px;
    box-sizing: border-box;
	color: var(--global-color-2) !important;
	
}

.coach-modal-btns a{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
	margin-bottom: 5px;
    box-sizing: border-box;
    border-radius: 27px;
    user-select: none;
    width: fit-content;
    margin-right: 10px;
    font-weight: 700 !important;
    text-decoration: none !important; 
    background-color: var(--color-yellow-dark);
    color: var(--color-dark) !important;
}

.coach-modal-btns a:hover,.coach-modal-btns a:active {
    background-color: var(--color-primary) !important;
    color: var(--color-dark) !important;
}

.personal-coach-modal-btns .personal-coach-modal-btn, 
.personal-coach-modal-btns .personal-coach-modal-btn-dark
{    
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
	margin-bottom: 5px;
    box-sizing: border-box;
    border-radius: 27px;
    user-select: none;
    width: fit-content;
    margin-right: 10px;
    font-weight: 700 !important;
    text-decoration: none !important; 
    background-color: var(--color-yellow-dark);
    color: var(--color-dark) !important;
}

.personal-coach-modal-btns .personal-coach-modal-btn:hover,
.personal-coach-modal-btns .personal-coach-modal-btn:active{
        color: var(--color-dark) !important;
        background-color: var(--color-primary);
}

.personal-coach-modal-btns .personal-coach-modal-btn-dark{
    background-color: var(--color-light-dark) !important;
    color: var(--color-white) !important;
}

.personal-coach-modal-btns .personal-coach-modal-btn-dark:hover{
    background-color: var(--color-dark) !important;
    color: var(--color-white) !important;
}

.coach-modal-contact-details{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin-right:15px;
}

/* =========================
   MOBILE
========================= */

@media only screen and (max-width: 1024px) {
	.group-class-page .group-class-video-container{
		width:100%;
		margin-bottom: 20px;
	}
	
	.group-class-video-placeholder{
		aspect-ratio: 1.5;
    	display: grid;	
		height: unset !important;
	}
	
	.group-class-page .group-class-description-wrapper{
		width:100%;
	}
}

@media only screen and (max-width: 992px) {
    .coach-card-grid{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 768px) {
        .coach-card-grid{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (max-width: 500px) {
    .coach-card-grid{
        grid-template-columns: 1fr 1fr;
    }

    .coach-modal {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .coach-modal-content-wrapper {
        max-height: 100%;
    }
}

@media only screen and (max-width: 400px) {
    .coach-card-grid{
        grid-template-columns: 1fr;
    }
}

.book-club-wrapper{
    width:100%;
    /*background-color: var(--color-light-dark);*/
    color: var(--color-white);
    margin: 0 auto;
}

.book-club-icons-title{
    width:100%;
    margin: 0px auto 5px auto;
    font-size: 24px !important;
    font-weight: 700 !important;
    padding: 10px 10px 0px 10px;
    box-sizing: border-box;
    text-align: center;
}

.book-club-icons-text{
    width:100%;
    margin: 5px auto 20px auto;
    font-size: 18px !important;
    font-weight: 400 !important;
    font-style: italic;
    padding: 0px 10px;
    text-align: center;
    box-sizing: border-box;
}

.book-club-btn-wrapper{
    width:100%;
    margin:5px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-club-icons{
    width:100%;
}

.book-club-icons-in{
    width:100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.book-club-icon{
    width:fit-content;
    margin: 10px 10px;
    text-decoration: none !important;
}

.book-club-icon img{
    height: 20px; 
    margin-right:5px;
    margin-left: 5px;
    margin-top: 5px;
    margin-bottom: 0px;
}

.book-club-icon-color-line {
    margin: 0;
    width:100%;
    /*background: rgba(44, 43, 41, 1);
    background: linear-gradient(180deg,rgba(44, 43, 41, 1) 5%, rgba(7, 6, 4, 1) 95%);*/
    height:150px
}