/* Tilting panel */
.tilting-panel-section {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.tilting-panel {
    position: relative;
    max-width: 720px;
    /* overflow: hidden; */
/*    min-height: 450px;*/
}
.tilting-panel .feature {
    position: absolute;
    z-index: 3;
    position: absolute;
    top: 50px;
    left: 50px;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 12px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tilting-panel .feature.tooltip-left {
    justify-content: flex-end;
}
.tilting-panel .feature.tooltip-right {
    justify-content: flex-start;
}
.tilting-panel:not(.tooltip-active) .feature::before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #ffd650;
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}
.tilting-panel .feature .tooltip {
    position: absolute;
    width: 220px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    top: 100%;
    opacity: 0;
    transition: opacity 0.2s ease-in;
    box-sizing: border-box;
}
.tilting-panel .feature.tooltip-left .tooltip {
    transform: translateY(-50%) translateZ(40px);
    left: -212px;
    top: 50%;
    margin-left: -15px;
}
.tilting-panel .feature.tooltip-right .tooltip {
    transform: translateY(-50%) translateZ(40px);
    right: -212px;
    top: 50%;
    margin-right: -15px;
}
.tilting-panel .feature:hover::before,
.tilting-panel .feature:hover .tooltip {
    opacity: 1;
}
.feature.feature-1 {
    width: 100px;
    left: -40px;
    top: 20px;
}
.feature.feature-2 {
    width: 100px;
    right: -40px;
    top: 20px;
    left: auto;
}
.feature.feature-3 {
    /* width: 300px; */
    right: 0px;
    left: auto;
    top: 150px;
    width: 40%;
    top: 30%;
}
.feature.feature-4 {
    width: 250px;
    top: 300px;
    left: 0;
    width: 35%;
    top: 55%;
}
.feature.feature-5 {
    width: 100px;
    left: -40px;
    bottom: 20px;
    top: auto;
}
.feature.feature-6 {
    width: 100px;
    right: -40px;
    left: auto;
    bottom: 20px;
    top: auto;
}
.tilting-panel .feature .dot {
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background-color: #ffd650;
    border-radius: 50%;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    box-sizing: border-box;
    -webkit-animation: pulse-panel-dot 2s infinite;
    animation: pulse-panel-dot 2s infinite;
}

.tilting-panel .tooltip-offset {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.3);
	z-index: 4;
	justify-content: center;
	align-items: center;
	display: flex;
}
.tilting-panel:not(.tooltip-active) .tooltip-offset {
	display: none;
}
.tilting-panel .tooltip-offset .tooltip-overlay {
	background: #fff;
	border-radius: 4px;
	width: 270px;
	box-shadow: 0 0 10px;
	padding: 20px;
	position: relative;
}
.tilting-panel .tooltip-overlay .close-btn {
	position: absolute;
	right: 7px;
	top: 7px;
	cursor: pointer;
}
@media (max-width: 960px) {
    .tilting-panel .feature::before {
        display: none !important;
    }
}
