@media (min-width:1400px){
  
  .active_card .top-blockus-items.row {
    position: absolute !important;
        right: -140px;
        z-index: 110;
        display: flex
;
        min-width: 500px;
        flex-direction: row-reverse;
        flex-wrap: nowrap;
  }

  .active_card .blockus-item.active_card {
    left: unset !important;
        right: unset !important;
        width: 250px !important;
        height: auto !important;
        position: relative !important;
        /*order: 1;*/
  }
  
  .blockus-item {
    transform-origin: top center;
  }
  

  .active_card .blockus-item.dimmed {

    transform: scale(0.5);
    transform-origin: top center;
    width: 190px;
    opacity: 0;
    display: block !important;
    position: relative;
    z-index: 99;
    height: 80%;
    left: unset !important;
    /*order: 2;*/
    animation: dimmed-animation 1s forwards; /* Apply the animation */

  }  

  .active_card .top-blockus-items .blockus-item.dimmed .blockus-3d-content {
    height: 100%!important;
  }

  .active_card .top-blockus-items .blockus-item.dimmed .line-btn {
    padding-top:0!important;
  }

  .active_card .top-blockus-items .blockus-item.dimmed .line-btn:before {
    display:none!important;
  }

  


}

@keyframes dimmed-animation {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  /*
  50% {
    opacity: 0;
  }*/
  100% {
    transform: scale(1);
    opacity: 1;
  }
}