/** 
 * CSS Style: Theme icon 
 * 
 * @since 1.0
 */

/** 
 * Icon menu (bars)
 *
 * @since 1.0
 */
.theme-icon-bars {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.theme-icon-bars ul {
  width: 32px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.theme-icon-bars ul li {
  width: 100%;
  height: 3px;
  background-color: var( --theme-color );
}

@media only screen and (max-width: 768px) {

    .theme-icon-bars ul {
        width: 22px;
        height: 20px;
    }

    .theme-icon-bars ul li {
        height: 2px;
    }

}

.theme-icon-bars:hover ul li {
  opacity: 0.7; 
}

/**
 * Icon close
 *
 * @since 1.0
 */
.theme-icon-close {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.theme-icon-close span {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background-color: var( --theme-color );
}

.theme-icon-close:hover span {
  opacity: 0.7;
}

.theme-icon-close span:first-child {
  top: 11px;
  transform: rotate( 45deg );
}

.theme-icon-close span:last-child {
  top: 11px;
  transform: rotate( -45deg );  
}

/**
 * Icon down
 *
 * @since 1.0
 */
.theme-icon-down {
  width: 40px;
  height: 20px;
  position: relative;
  cursor: pointer;
  
}

.theme-icon-down span {
  position: absolute;
  display: block;
  width: 24px;
  height: 2px;
  background-color: var( --theme-color );
}

.theme-icon-down:hover span {
  opacity: 0.7;
}

.theme-icon-down span:first-child {
  left: 0;
  top: 8px;  
  transform: rotate( 45deg );
}

.theme-icon-down span:last-child {
  right: 0;
  top: 8px;
  transform: rotate( -45deg );
}

/**
 * Icon search
 *
 * @since 1.0
 */
.theme-icon-search {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 0;
  fill: var( --theme-color );
}

.searchsubmit:hover .theme-icon-search {
  fill: #ffffff;
}