/* ############### */
/* ### General ### */
/* ############### */
.fl-page-content {
    position: relative;
    background-color: #f4f5f0 !important; /* #C6B083 */
    color: black;
}

.fl-content {
    position: static;
}

.fl-post-header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fl-post-header .overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: blur(10px) saturate(1.2);
    -webkit-filter: blur(10px) saturate(1.2);
}

.fl-post-header .fl-post-title {
    position: relative;
    z-index: 10px;
    color: white;
    text-shadow: 0px 0px 5px black;
    font-size: 40px;
    font-weight: bold;
    padding: 0 20px;
}

.product {
    margin-top: 240px;
}

.product .fl-post-subtitle {
    font-size: 20px;
}

.product .top-row {
    display: flex;
    justify-content: space-between;
}

.product .wp-post-image {
    width: 60%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.product .info {
    width: 40%;
    padding-left: 50px;
}

.product .info .excerpt {
    font-size: 16px;
}

.product .info dt {
    font-size: 16px;
}

.product .info dd {
    text-transform: capitalize;
    margin-bottom: 7px;
}

/* ############ */
/* ### Tabs ### */
/* ############ */
.product .tabs {
    margin-top: 50px;
}

.product .tabs .buttons {
    display: flex;
    width: 100%;
    border-bottom: 5px solid #00274d;
}

.product .tabs .button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 10px;
    margin: 0;
    margin-bottom: -5px;
    color: black;
    cursor: pointer;
    user-select: none; /* Non-prefixed version, currently */
    -ms-user-select: none; /* Internet Explorer/Edge */
    -moz-user-select: none; /* Old versions of Firefox */
    -webkit-user-select: none; /* Safari */
    -webkit-touch-callout: none; /* iOS Safari */
    font-size: 18px;
}

.product .tabs .button:not(:last-child) {
    margin-right: 15px;
}

.product .tabs .button:hover,
.product .tabs .button.activated {
    background-color: #00274d;
    color: white;
}

.product .tabs .tab {
    display: none !important;
    min-height: 300px;
    padding: 10px 20px;
    background-color: white;
    box-shadow: 0px 0px 100px 0px rgba(12,5,0,0.11);
    font-size: 16px;
    line-height: 1.5;
}

.product .tabs .tab.activated {
    display: block !important;
}

/* ################## */
/* ### Responsive ### */
/* ################## */
@media(max-width:992px){
    .fl-post-header .fl-post-title {
        font-size: 30px;
    }

    .product .top-row {
        flex-direction: column;
    }

    .product .wp-post-image {
        width: 100%;
        margin-bottom: 25px;
    }

    .product .info {
        width: 100%;
        padding-left: 0px;
    }

    .product .tabs .buttons {
        flex-direction: column;
    }
    
    .product .tabs .button:not(:last-child) {
        margin: 0;
        border-bottom: 1px solid #00274d;
    }
}