/**
* 2010-2021 Webkul.
*
* NOTICE OF LICENSE
*
* All right is reserved,
* Please go through LICENSE.txt file inside our module
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please refer to CustomizationPolicy.txt file inside our module for more information.
*
* @author Webkul IN
* @copyright 2010-2021 Webkul IN
* @license LICENSE.txt
*/

.nav_toggle {
  background-color: #fff;
  border: none;
  position: relative;
  padding-top: 15px;
  padding-right: 0;
}

.nav_toggle .humburger-menu-icon {
  height: 25px;
  width: 25px;
  background-image: url(../img/icon/icon-hamburger.svg);
  background-repeat: no-repeat;
}

.wk-nav-style .navigation-link {
  font-family: 'Squada One', cursive;
  font-weight: normal;
  font-size: 26px;
  letter-spacing: 1px;
  height: 100%;
  padding: 28px 0 28px 60px;
  padding-left: 60px !important;
}

.nav-ul-wrapper {
  padding-right: 10px;
}

.wk-nav-style {
  border-bottom: 1px solid #ccc;
  padding: 0;
  margin-top: 20px;
}

.wk-nav-style .navigation-link-wrapper {
  border: none;
}

.wk-nav-style .navigation-link-wrapper:hover {
  border: none;
  background-image: linear-gradient(153deg, #FD6E6A 5%, #FFC600 100%);
}

.wk-nav-style .navigation-link-wrapper>a.navigation-link:hover {
  color: #fff;
}

.wk-nav-style .navigation-link-wrapper:hover:before {
  content: '';
  position: absolute;
  height: 75%;
  background: #fff;
  opacity: 0.5;
  top: 50%;
  right: 38px;
  transform: skew(-12deg) translateY(-50%);
  width: 3px;
}

.wk-nav-style .navigation-link-wrapper:hover:after {
  content: '';
  position: absolute;
  height: 75%;
  background: #fff;
  opacity: 0.5;
  top: 50%;
  right: 30px;
  transform: skew(-12deg) translateY(-50%);
  width: 3px;
}

#menu_cont {
  min-width: 285px;
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 2000;
  filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
}

#menu_cont_block {
  position: relative;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  background-color: #fff;
  height: 100%;
}

#menu_cont_wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: 10px;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  overflow: auto;
}

.close_navbar {
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  background-color: #fff;
  height: 30px;
  text-align: center;
  width: 30px;
  margin-right: 0;
  margin-top: 0;
  background-image: url(../img/icon-close.svg);
  background-repeat: no-repeat;
  background-size: 20px;
}

#menu_cont_wrapper .close_navbar {
  background-position: 0 8px;
}

.menu_cont_left {
  overflow: auto;
  transform: translate(0px);
  transition: all 0.3s ease-out 0s;
  /* background: #fff; */
  /* box-shadow: -10px 2px 25px -4px rgba(0,0,0,0.12); */
}

.menu_cont_right {
  transform: translate(295px);
  transition: all 0.3s ease-out 0s;
}

.menu_cont_left .links-wrapper {
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

a.navigation-link:focus {
  outline: none;
}