@use "../../../../src/scss/utilities.scss";
@import '../../../../node_modules/tippy.js/dist/tippy.css';
/* custom theme of tooltip*/
.tippy-box[data-theme~='unops-green'] {
  @extend %VFSans-font;
  background-color: #E1EFD7;
  color: #004976;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  z-index: 3;
}
.tippy-box[data-theme~='unops-green'][data-placement^='top'] > .tippy-arrow::before {
  border-top-color: #E1EFD7;
}
.tippy-box[data-theme~='unops-green'][data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: #E1EFD7;
}
.tippy-box[data-theme~='unops-green'][data-placement^='left'] > .tippy-arrow::before {
  border-left-color:#E1EFD7;
}
.tippy-box[data-theme~='unops-green'][data-placement^='right'] > .tippy-arrow::before {
  border-right-color: #E1EFD7;
}

.circleFigure{
    &__circle{
        position: relative;
        height: 500px;
        width: 500px;
        margin: auto;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        &--el-1{
            position: absolute;
            top: 0;
            left: 50%;
            width: 150px;
            height: 200px;
        }
        &--el-2{
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 150px;
            height: 200px;
        }
        &--el-3{
            position: absolute;
            top: 50%;
            left: 0;
            width: 150px;
            height: 200px;
        }
    }
    &__path{
        height: 500px;
        width: 500px;
        max-width: 100%;
        margin: auto;
        @media (max-width: 991.98px) {
          width: 90%;
          height: auto;
          margin: 2.5rem 0rem;
        }

        .s1,.s2,.s3{
            cursor: pointer;
        }
        path:hover{
          filter: url(#drop-shadow);
          transform: scale(1.01);
        }
    }

}