main {
    padding-top: 145px;
}

.content-container {
    display: flex;
    background: #f2f2f2;
    padding: 40px 60px;
}

.content-container>div {
    flex: 1;
}

.content-right-side h1 {
    margin-bottom: 0 !important;
}

.colors {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.color {
    width: 42px;
    height: 42px;
    position: relative;
    cursor: pointer;
    padding: 2px;
    border: 1px solid;
}

.color-background {
    width: 100%;
    height: 100%;
    border: 1px solid;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color .color-name {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    font-size: 12px;
    padding: 0 5px;
    z-index: 5;
    display: none;
}

.colors-info {
    height: 0px;
    width: 100%;
    line-height: 40px;
    font-size: 14px;
    font-family: Raleway, Arial, Helvetica, sans-serif;
	opacity:0;
}

.color.active .color-background::after {
    transform: rotate(45deg) translateY(-3px) translateX(-1px);
    content: "";
    width: 12px;
    height: 20px;
    display: block;
    border: solid #eee;
    border-width: 0 2px 2px 0;
    position: absolute;
}

.color-background::before {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    content: "";
}

.post-thumbnail img {
    height: unset;
    margin: auto;
}

.tab {
    padding: 20px 0;
    border-bottom: 1px solid lightgray;
}

.tab-button {
    font-family: "Playfair Display", Garamond, serif;
    font-size: 25px;
    cursor: pointer;
    position: relative;
}

.tab-button::after {
    content: "+";
    position: absolute;
    right: 0;
    color: #000;
}

.tab-button.active::after {
    content: "-";
}

.tab-content {
    padding-top: 10px;
}

.tabs-container {
    width: 75%;
    padding: 80px;
}

.product-related-container {
    display: flex;
    padding: 80px;
}

.product-related-container h1 {
    width: 25%;
    margin: 0;
}

.product-related {
    position: relative;
    width: 75%;
    overflow: hidden;
}

.owl-nav {
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.owl-nav button {
    background: black;
    padding: 20px 20px;
    transition: .2s;
}

.owl-nav .owl-prev.disabled,
.owl-carousel:hover .owl-prev {
    transform: translateX(-120%);
}

.owl-nav .owl-next.disabled,
.owl-carousel:hover .owl-next {
    transform: translateX(120%);
}

.owl-dots {
    display: flex;
}

.owl-dot {
    width: -webkit-fill-available;
    padding: 0;
    height: 2px;
    background: lightgray;
}

.owl-dot.active {
    background: black;
}

button {
    border-radius: 0;
    border: none;
    cursor: pointer;
}

.owl-stage {
    display: flex;
}
.loop-product h3,
.loop-product a {
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    transition: .2s;
}

.loop-product h3:hover,
.loop-product a:hover {
    color: gray;
}


@media (max-width: 1240px) {
    .content-container,
    .product-related-container {
        padding: 10px;
        flex-direction: column;
    }
    .product-related {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .owl-nav {
        position: relative;
        top: unset;
        transform: none;
    }
}