/*CUSTOMIZER*/
.color-panel {
    z-index: 9999;
    position: fixed;
    top: 73px;
    left: 0;
}

.color-panel .color-mode-icons {
  top: 0;
  left: 0;
  cursor: pointer;
  position: absolute;
  margin: 0;
}

.color-panel .icon-color {
    background: #9C9C9C;
}

.color-panel .icon-color span {
    display: block;
    width: 40px;
    height: 40px;
    background: url('../img/icon-color.png') center no-repeat;
}

@-moz-keyframes spin{
    0%{
        -moz-transform:rotate(0deg)
    }
    100%{
        -moz-transform:rotate(359deg)
    }
}
@-webkit-keyframes spin{
    0%{
        -webkit-transform:rotate(0deg)
    }
    100%{
        -webkit-transform:rotate(359deg)
    }
}
@-o-keyframes spin{
    0%{
        -o-transform:rotate(0deg)
    }
    100%{
        -o-transform:rotate(359deg)
    }
}
@-ms-keyframes spin{
    0%{
        -ms-transform:rotate(0deg)
    }
    100%{
        -ms-transform:rotate(359deg)
    }
}
@keyframes spin{
    0%{
        transform:rotate(0deg)
    }
    100%{
        transform:rotate(359deg)
    }
}

.color-panel .icon-color:hover {
  background-color: #35424f;
}

.color-panel .icon-color span {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

.color-panel .icon-color.active span {
  background: #35424f url('../img/icon-color-close.png') center no-repeat;
}

.color-panel .icon-color.active:hover {
  background-color: #222;
}

.color-panel .icon-color.active span {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
}

.color-mode {
  top: 0;
  left: -200px;
  width: 200px;
  display: block;
  padding: 20px 10px 10px;
  position: absolute;
  background: #35424f;
}
.color-mode p {
  color: #cfcfcf;
  padding: 0 5px;
  font-size: 13px;
  margin-bottom: 0;
}
.color-mode ul {
  list-style: none;
  padding: 4px 3px 5px;
  display: block;
  margin-bottom: 10px !important;
  margin-top: 0;
}
.color-mode li {
  width: 28px;
  height: 28px;
  margin: 2px;
  cursor: pointer;
  list-style: none;
  border: solid 1px #707070;
  display: inline-block;
  padding: 0 5px;
}
.color-mode li:hover,
.color-mode li.current {
  border: solid 1px #ebebeb;
}
.color-mode li.current {
  border: solid 2px #ebebeb;
}

.style_ul {

}

.style_ul li {
    display: inline-block;
    width: auto;
    height: 25px;
    color: #fff;
    border-width: 2px !important;
}

.style_ul li.current {
    background-color: #1eb4ab;
}

.color-mode li.color-blue {
  background: #64aed9;
}
.color-mode li.color-red {
  background: #e84d1c;
}
.color-mode li.color-green {
  background: #54a862;
}
.color-mode li.color-orange {
  background: #e18604;
}
.color-gray {
    background: #798b97;
}
.color-turquoise {
    background: #44b1c1;
}
.color-mode label {
  color: #cfcfcf;
  border-top: 1px solid #585858;
  padding: 10px 10px 0;
  margin: 0 5px;
  display: block;
}
.color-mode label span {  
  text-transform: uppercase;
}
.color-mode label > span {
  display: inline-block;
  width: 85px;
}
.color-mode label > select {
  margin-top: 5px;
  text-transform: lowercase;
}
.color-mode label  span.color-mode-label {
  top: 2px;
  position: relative;
}


.newCat{

}
.newCat .title{
    margin-bottom: 40px;
}

.newCat__list{
    list-style-type: none;
    padding: 0;
    margin: 0 0 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    grid-column-gap: 24px;
    grid-row-gap: 40px;
}
.newCat__list--item{
    box-shadow: 0 7px 14px rgba(19, 18, 18, 0.34), 0 5px 5px rgba(21, 20, 20, 0.24);
    padding: 30px 30px 20px;
    transition: all .5s;
}
.newCat__list--item:hover{
    box-shadow: 0 14px 28px rgba(19, 18, 18, 0.34), 0 10px 10px rgba(21, 20, 20, 0.24);
    transform: scale(1.05);
}
.newCat__list--link{
    display: block;
    text-decoration: none !important;
}
.newCat__list--figure{
    display: flex;
    width: 100%;
    height: 160px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.newCat__list--img{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    min-width: 50%;
    height: auto;
    transition: all .5s;
}
.newCat__list--item:hover .newCat__list--img{
    transform: scale(1.15);
}
.newCat__list--title{
    font-size: clamp(18px,1.667vw,20px) !important;
    text-align: center;
    margin: 0;
    padding: 0;
}






 		