
/* todo Set this up for SCSS */
/* todo Set scss Variables */
.mm {
  .mm__inner {
    display: flex;
    flex-direction: column;
    padding: 15px clamp(12px, 3vw , 60px) 30px;
    
  }

  .mm__top {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #E4E4E4;
    padding-bottom: 14px;
    margin-bottom: 20px;
    justify-content: space-between;
    gap: 20px;
  }

  .mm__top-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    flex: 1;
  }

  .mm__bottom {
    display: flex;
    flex-flow: row wrap;
    gap: clamp(30px, calc(.5 * 8vw), 120px);  /* The best way to get 60px at 1440 and 120px at 1920px  */
  }

  .mm__bottom-left {
    flex: 1 1 830px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .mm__bottom-right {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 2.5vw, 45px);
  }

  .mm__view-more {
    border-radius: 5px;
    background: #002663;
    color: #FFF;

    /* font-family: "URW DIN"; */
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }


  .mm__fake-close {
    margin-left: auto;
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 0;
    background-image:url('/themes/custom/ylg/assets/img/icons/icon-plus-button.svg'); 
    transform: rotate(45deg);
    background-size: contain;
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
  }
}