.ux-tabs .tabs-container {
    position: relative;
    width: 280px;
    float: left;
    z-index: 20;
    padding-top: 20px;
}

/* tabs names */
.ux-tabs .tabs-container label {
    position: relative;
    padding: 5px 20px;
    display: block;
    font-size: 12px;
    cursor: pointer;
    user-select: none;
    text-align: left;
    color: var(--e-global-color-secondary);
    font-weight: 600;
    border-radius: 8px;
    margin: 12px 0;
}

.ux-tabs .tabs-container label:first-child {
    margin-top: 0;
}

/* Hover effect on tabs names */
.ux-tabs .tabs-container label:hover, .ux-tabs .tabs-container label.active {
    color: var(--e-global-color-primary);
    background-color: transparent;
    background-image: linear-gradient(62deg, #FFEBD2 0%, #F2295B00 100%);
}

/* Content area for tabs */
.ux-tabs .tab-content {
    position: relative;
    width: calc(100% - 280px);
    float: left;
    box-sizing: border-box;
    z-index: 19;
    display: none;
    border-radius: 8px;
    border-left: 2px solid #F7941E;
    background: linear-gradient(90deg, rgba(247, 148, 30, 0.10) 0%, rgba(247, 148, 30, 0.00) 100%);
    margin-top: 16px;
    min-height: 256px;
    max-height: 100vh;
}

.ux-tabs .tab-content .pure-g > div:last-child {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
}

.ux-tabs .tab-content .pure-g > div.active {
    display: block;
}

.ux-tabs .tab-content a.title {
    color: #50514E;
    font-family: "Open Sans", serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none !important;
    padding: 8px 16px;
    margin-bottom: 8px;
}

.ux-tabs .tab-content a.title:active,
.ux-tabs .tab-content a.title:focus,
.ux-tabs .tab-content a.title:hover {
    color: #EA783B;
}

.ux-tabs .tab-content .relative {
    position: relative;
}

.ux-tabs .tab-content img {
    border-radius: 8px;
  	background: linear-gradient(124deg, rgba(255, 255, 255, 0.00) 25.21%, rgba(255, 255, 255, 0.50) 40.19%, rgba(255, 255, 255, 0.00) 40.35%), linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%);
	background-color: lightgray;
    background-blend-mode: overlay, overlay, normal;
    box-shadow: 0 0 32px 0 rgba(247, 148, 30, 0.25) inset, 0 0 3px 0 rgba(247, 148, 30, 0.25);
    width: 560px;
    max-width: 100%;
    height: 256px;
    max-height: 100vh;
}

.ux-tabs .tab-content a.button {
    color: #FFF;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.50);
    font-family: "Open Sans", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 3px solid #FFF;
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.50), 0 2px 4px 0 rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(4px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none !important;
}

.ux-tabs .tab-content a.button:active,
.ux-tabs .tab-content a.button:focus,
.ux-tabs .tab-content a.button:hover {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.50), 0 2px 4px 0 rgba(0, 0, 0, 0.40);
    color: #000;
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.50);
}

.ux-tabs .tab-content:after {
    content: "";
    clear: both;

}

/* Hide input radio from users */
.ux-tabs input[name="tab"] {
    display: none;
}

/* Show tab when input checked */
.ux-tabs input[name="tab"]:checked + .tab-content, .ux-tabs .tab-content.active {
    display: block;
    animation: fade 0.5s ease-in-out;
}

/* Slide animation for tab contents */
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}