/** 
 * CSS Style: Theme icon 
 * 
 * @since 1.0
 */

.theme-icon {
    display: block;
    padding: 0;
    margin: 0;
}

/** 
 * Logo
 *
 * @since 1.0
 */
.theme-modal-navigation-panel .theme-icon-logo {
    width: auto;
    height: 30px;
}

.theme-modal-navigation-panel .theme-icon-logo path:nth-child(2) {
    fill: #ffffff;
}

/** 
 * Icon menu (bars)
 *
 * @since 1.0
 */
.theme-icon-bars {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.theme-icon-bars ul {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.theme-icon-bars ul li {
    width: 100%;
    height: 3px;
    background-color: var( --theme-color );
}

.theme-modal-navigation-panel .theme-icon-bars ul {
    width: 24px;
    height: 24px;
}

.theme-icon-bars:hover ul li {
    opacity: 0.8; 
}

.theme-modal-navigation-panel .theme-icon-bars ul li {
    background-color: #ffffff;
}

@media only screen and (max-width: 1100px) {
    .theme-header .theme-icon-bars ul li {
        background-color: #ffffff;
    }
}

.theme-modal-navigation-panel .theme-icon-bars ul:hover li {
    /*background-color: var( --theme-color );*/
    opacity: 0.8;
}

/**
 * Icon close
 *
 * @since 1.0
 */
.theme-icon-close {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.theme-icon-close span {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background-color: var( --theme-color );
}

.theme-modal-menu .theme-icon-close span,
.theme-modal-poll .theme-icon-close span {
    background-color: var(--theme-color);
}

.theme-icon-close:hover span {
    opacity: 0.8;
}

.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.8;
}

.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: 24px;
    height: 24px;
    cursor: pointer;
    margin-right: 0;
    fill: var( --theme-color );
}

@media only screen and (max-width: 1100px) { 

    .theme-header .theme-icon-search {
        fill: #ffffff;
        width: 24px;
        height: 24px;
    }
    
}

.theme-modal-navigation-panel .theme-icon-search {
    fill: #ffffff;
    width: 24px;
    height: 24px;
}

.searchsubmit .theme-icon-search {
    fill: #ffffff;
}

.searchsubmit:hover .theme-icon-search {
    fill: var(--theme-color);
}

/**
 * Icon Megaphone
 *
 * @since 1.0
 */
.theme-icon-megaphone {
    width: 30px;
    height: 32px;
    cursor: pointer;
    fill: var( --theme-color );
}

.theme-modal-navigation-panel .theme-icon-megaphone {
    fill: #c1c1c1;
}

/**
 * Icon Megaphone
 *
 * @since 1.0
 */
.theme-icon-newspaper {
    width: 32px;
    height: 32px;
    cursor: pointer;
    fill: var(--theme-color);
}

.theme-modal-navigation-panel .theme-icon-newspaper {
    fill: #c1c1c1;
}

/**
 * Icon Video
 *
 * @since 1.0
 */
.theme-icon-video {
    width: 32px;
    height: 32px;
    cursor: pointer;
    fill: var(--theme-color);
}

.theme-modal-navigation-panel .theme-icon-video {
    fill: #c1c1c1;
}

.theme-modal-navigation-panel .theme-icon:hover {
    opacity: 0.8;
}

/**
 * Icon Preloader
 *
 * @since 1.0
 */
.theme-icon-preloader {
    width: 32px;
    height: 32px;
    fill: var(--theme-color);
    margin: 0 auto;
}

/**
 * Icon Eye
 *
 * @since 1.0
 */
.theme-icon-eye {
    width: auto;
    height: 13px;
    fill: var(--theme-color-dark-grey);
    margin: 0 auto;
}

/**
 * Icon Share
 *
 * @since 1.0
 */
.theme-icon-share {
    width: auto;
    height: 32px;
    fill: var(--theme-color);
    margin: 0 auto;
}

/**
 * Icon Share square
 *
 * @since 1.0
 */
.theme-icon-share-square {
    width: auto;
    height: 13px;
    fill: var(--theme-color-dark-grey);
    margin: 0 auto;
}

/**
 * Icon Chevron
 *
 * @since 1.0
 */
.theme-icon-chevron-down, .theme-icon-chevron-up {
    width: auto;
    height: 12px;
    fill: #ffffff;
    margin: 0 auto;
}