.megamenu {

  position: absolute;width: calc(60% + 170px);left: 15px;padding: 20px 16px 20px 30px;background-color: #fff;border-bottom-left-radius: 10px;border-bottom-right-radius: 10px;

  z-index: 999999;top: 55px;

}

.flex-menu {display: flex;}

.megamenu {visibility: hidden;opacity: 0;box-shadow: 0 5px 36px 0 rgb(0 0 0 / 35%);border-radius: 10px;}

.megamenu.no-padd {padding: 0;}

.megamenu.active {visibility: visible;opacity: 1;display:block;}

.megamenu .megamenu-left {width: 30%;}

.megamenu .megamenu-left ul > li > ul {display: none;}

.megamenu .megamenu-left,

.megamenu .megamenu-right {padding: 41px 24px 41px 35px;}



.megamenu .megamenu-left ul > li > a {position: relative;padding: 7px 17px 7px 10px;display: flex;align-items: center;border-radius: 8px;font-size: 14px;font-weight: 500;color: #000;}

.megamenu .megamenu-left ul > li > a img {width: 36px;height: 36px;border-radius: 50%;margin-right: 10px;}

.megamenu .megamenu-left ul > li > a span {margin-left: 15px;font-weight: 600;color: #3f536c;}

.megamenu .megamenu-left ul > li > a i {-ms-transform: translateX(-10px);transform: translateX(-10px);opacity: 0;visibility: hidden;transition: ease-in-out all 0.2s;font-size: 12px;margin-left: auto;}

.megamenu .megamenu-left ul > li > a:hover {background: rgba(207, 212, 218, 0.2);}

.megamenu .megamenu-left ul > li > a:hover i {-ms-transform: translateX(0px);transform: translateX(0px);opacity: 1;visibility: visible;transition: ease-in-out all 0.2s;}



.megamenu .megamenu-right {width: 70%;background-color: rgb(250 250 250);border-radius: 0px 10px 10px 0px;}

.megamenu .megamenu-right .submenu > ul {display: flex;justify-content: space-around;}

.megamenu .megamenu-right .submenu > ul li span {font-weight: bold;font-size: 15px;margin-bottom: 5px;display: block;}

.megamenu .megamenu-right .submenu > ul li ul li {font-weight: normal;font-size: .9rem;}

.megamenu .megamenu-right .submenu > ul li ul li:last-child {margin-top: 15px;}

.megamenu .megamenu-right .submenu > ul li ul li:last-child a {font-weight: normal;color: #04a0e4;position: relative;}

.megamenu .megamenu-right .submenu > ul li ul li:last-child a:after {font: normal normal normal 14px/1 FontAwesome;text-rendering: auto;-webkit-font-smoothing: antialiased;content: '\f061';margin-left: 10px;}

.megamenu.active {
    visibility: visible;
    opacity: 1;
    display: block;
}

/* Başlangıçta mobil menü gizli */
.mobile-menu {
  display: none;
}

/* Masaüstünde ANAMEGAMENU gösterilir */
.desktop-menu {
  display: block;
}

/* Mobilde ANAMENU gösterilsin, ANAMEGAMENU gizlensin */
@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }

  .desktop-menu {
    display: none;
  }
}