.card.style-2 {
    border-color: #e2e6ec;
}

.card.style-2 .card-header {
    background: white;
    border-color: #e2e6ec;
}

.form-group span {
    margin-left: 2%;
}

.breadcrumbs_wrap.dark {
    background: #1d2738;
    color: #7f8fa9;

}
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


.tab button:hover {
    background-color: #ddd;
}


.tab button.active {
    background-color: #ccc;
}


.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    color: #000;
}

.tablinks {
    padding: 10px 28px 10px;
    color: #999;
    border: none;
}


.post--item post--layout-3 h3,
p {

    color: black;
}

.post--info .meta {
    margin: -4px -2px;
    color: #999;
    font-size: 0;
    line-height: 0;
}

.scroll-to-top.scroll-to-top-visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    text-align: center;
    /* line-height: 50px; */
    line-height: 36px;
    position: fixed;
    right: 35px;
    bottom: 100px;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 100;
    background-color: #81b60c;
    color: #ffffff;
    font-size: 25px;
}
.main {
    width: 100%;
    height: 300px;
    padding: 0px 20px;
    box-sizing: border-box;
    position: relative;
  }
  .itemDiv {
    height: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 3px 3px 5px #ddd;
    text-align: center;
    scroll-behavior: smooth;
    max-width: 1180px;
    margin: 30px auto;
  }
  .itemDiv::-webkit-scrollbar {
    display: none;
  }
  .itemDiv {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .item {
    padding: 0;
    margin: 0;

    position: relative;
    display: inline-block;
  }
  .itemImg {
    width: 100%;
    height: 100%;
  }
  .itemImg > img {
    width: 100%;
    height: 100%;
  }
  .itemDetail {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    background-color: #0d0d0e87;
    color: var(--primary);
    text-align: center;
    color: #fff;
    font-weight: 600;
    transition: height 0.5s;
  }
  .controllBtn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 3px 3px 5px #ddd;
    background-color: rgb(0, 136, 255);
    border: red;
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    z-index: 3;
  }
  .left {
    left: 0;
  }
  .right {
    right: 0;
  }
  .itemDetail:hover {
    height: 90px;
  }
  .itemDetail > .itemName {
    font-size: 18px;
    padding: 10px 0 20px 0;
  }
  .itemDetail > .btn {
    text-decoration: none;
    padding: 7px 10px;
    font-size: 16px;

    color:rgb(255, 255, 255);
    /* background-color: #fff; */
    border-radius: var(--borRad);
  }

  .progress{
    display:none;
  }
  /* for blink animation */

  .blink{
    animation: blink 1s linear infinite;
     color:white;
  }
  @keyframes blink{
  0%{background:#f8f8f8;}
  100%{background:lightgreen;}
  }
  .slider {
        margin: 0 auto;
        /*max-width: 940px;*/
      }

      .slide_viewer {
        height: 427px;
        overflow: hidden;
        position: relative;
      }

      .slide_group {
        height: 100%;
        position: relative;
        width: 100%;
      }

      .slide {
        display: none;
        height: 100%;
        position: absolute;
        width: 100%;
      }

      .slide:first-child {
        display: block;
      }

      .slide_buttons {
        left: 0;
        position: absolute;
        right: 0;
        text-align: center;
      }

      a.slide_btn {
        color: #474544;
        font-size: 42px;
        margin: 0 0.175em;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
      }

      .slide_btn.active, .slide_btn:hover {
        color: #428CC6;
        cursor: pointer;
      }

      .directional_nav {
        /*height: 250px;
        margin: 0 auto;
        max-width: 940px;*/
        position: relative;
        top: -225px
      }

      .previous_btn {
        bottom: 0;
        left: 100px;
        margin: auto;
        position: absolute;
        top: 0;
      }

      .next_btn {
        bottom: 0;
        margin: auto;
        position: absolute;
        right: 100px;
        top: 0;
      }

      .previous_btn, .next_btn {
        cursor: pointer;
        height: 65px;
        opacity: 0.5;
        -webkit-transition: opacity 0.4s ease-in-out;
        -moz-transition: opacity 0.4s ease-in-out;
        -ms-transition: opacity 0.4s ease-in-out;
        -o-transition: opacity 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out;
        width: 65px;
      }

      .previous_btn:hover, .next_btn:hover {
        opacity: 1;
      }

      @media only screen and (max-width: 881px) {
        .previous_btn {
          left: 50px;
          top: 35%;
        }
        .next_btn {
          right: 50px;
          top: 35%;
        }
        .slide_viewer {
          height: 230px;
          overflow: hidden;
          position: relative;
      }
      .directional_nav {
        /* height: 340px; */
        margin: 0 auto;
        /* max-width: 940px; */
        position: relative;
        top: -110px
    }
      }
      @media only screen and (max-width: 500px) {
        .previous_btn {
          left: 50px;
          top: 35%;
        }
        .next_btn {
          right: 50px;
          top: 35%;
        }
        .slide_viewer {
          height: 110px;
          overflow: hidden;
          position: relative;
      }
      .directional_nav {
        /* height: 340px; */
        margin: 0 auto;
        /* max-width: 940px; */
        position: relative;
        top: -60px
    }
      }
      @media only screen and (max-width: 1280px) {
        .previous_btn {
          left: 50px;
          top: 35%;
        }
        .next_btn {
          right: 155px;
          top: 35%;
        }
        .slide_viewer {
          height: 375px;
          overflow: hidden;
          position: relative;
      }
      .directional_nav {
        /* height: 340px; */
        margin: 0 auto;
        /* max-width: 940px; */
        position: relative;
        top: -205px
    }
      }
      @media only screen and (max-width: 1024px) {
        .previous_btn {
          left: 50px;
          top: 35%;
        }
        .next_btn {
          right: 50px;
          top: 35%;
        }
        .slide_viewer {
          height: 285px;
          overflow: hidden;
          position: relative;
      }
      .directional_nav {
        /* height: 340px; */
        margin: 0 auto;
        /* max-width: 940px; */
        position: relative;
        top: -160px
    }
      }
      @media only screen and (max-width: 600px) {
        .previous_btn {
          left: 50px;
          top: 35%;
        }
        .next_btn {
          right: 50px;
          top: 35%;
        }
        .slide_viewer {
          height: 170px;
          overflow: hidden;
          position: relative;
      }
      .directional_nav {
        /* height: 340px; */
        margin: 0 auto;
        /* max-width: 940px; */
        position: relative;
        top: -100px
    }
      }
      @media only screen and (max-width: 400px) {
        .previous_btn {
          left: 50px;
          top: 35%;
        }
        .next_btn {
          right: 50px;
          top: 35%;
        }
        .slide_viewer {
          height: 85px;
          overflow: hidden;
          position: relative;
      }
      .directional_nav {
        /* height: 340px; */
        margin: 0 auto;
        /* max-width: 940px; */
        position: relative;
        top: -45px
    }
      }
      @media only screen and (max-width: 450px) {
        .previous_btn {
          left: 50px;
          top: 35%;
        }
        .next_btn {
          right: 50px;
          top: 35%;
        }
        .slide_viewer {
          height: 125px;
          overflow: hidden;
          position: relative;
      }
      .directional_nav {
        /* height: 340px; */
        margin: 0 auto;
        /* max-width: 940px; */
        position: relative;
        top: -50px
  }
  }
  .slide-content {
    margin: 8px;
    width: 250px;
    /*height: 140px;*/
    height: 300px;
    background-color: lightgray;
    /*border-radius: 12px;*/
    overflow: hidden;
    position: relative;
}

img {
    width: 100%;
}

.slid-er {
    overflow: hidden;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 3px 3px 5px #ddd;
    margin: 30px auto;
}

.slid-er .slides {
    display: flex;
}

.slid-er .slide_cat {
    width: 258px;
    /* slide-content width + margin */
}

.button-container {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    /* background-color: rgba(0, 0, 0, 0.4); */
    cursor: pointer;
    transition: opacity 0.25s;
    opacity: 1;

}

.button-container .button {
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 5% 0 8% 0;
}

.button-container:hover .button {
    height: 90px;
    transition: height 0.5s;
}

.button {
    position: absolute;
    top: 90%;
    left: 50%;
    /* transform: translate(-50%, calc(-50% + 12px)); */
    background-color: #0d0d0e87;
    transition: all 0.25s;
    padding: 0 8px;
    /* border-radius: 12px; */
    color: white;
    outline: 2px solid transparent;
}

.button:after {
    /* content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==); */
    margin: 0 3px 0 5px;
    /* filter: invert(1); */
}

.button:hover {
    background-color: #0d0d0e87;
    box-shadow: 0 0 0 2px gray;
}
