div.loader {
    position: absolute;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    display: flex;
    display: none;
    flex-direction: column;
}
div.loader span {
    /* width: 100%; */
    /* height: 100%; */
    /* background-color: red; */
    /* margin-bottom: 5px; */
    position: absolute;
    border: #ccc solid 2px;
    border-color: transparent;
    border-radius:50px;
    animation-name: spin;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes spin { 
        from { 
            transform: rotate(0deg); 
        } to { 
            transform: rotate(360deg); 
        }
}
div.loader span.line1 {
    border-top-color: #8c0073;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    animation-duration: 1600ms;
}
div.loader span.line2 {
    border-top-color: #0060a6;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    animation-duration: 1200ms;
}
div.loader span.line3 {
    border-top-color: #00a900;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    animation-duration: 800ms;
}

div.btn {
    display: flex;
    justify-content: center;
}
div.btn a {
    background-color: var(--add-link-color);
    color: #fff;
    border: var(--add-link-color) solid 1px !important;
    padding: 5px 15px;
}
div.btn a:hover,
div.btn a:focus {
    background-color:#fff;
    color:var(--add-link-color);
}

.btn2 {
    text-align: center;
    display: flex;
    justify-content: center;
}
.btn2 a,
.btn2 input[type=submit]{
    background-color: var(--add-link-color);
    color: #fff;
    padding: 5px 15px;
    box-shadow: #000 2px 2px 0;
    font-size: 1.2rem;
}
.btn2 a:hover,
.btn2 input[type=submit] {
    background-color: var(--main-link-color);
    color: #fff;
}

.filter {
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.filter div {
    /* position: absolute; */
    right: 0;
    top: 10px;
    display: flex;
    height: 30px;
    /* margin-left: 50px; */
    margin-top: 4px;
    width: 50px;
    /* z-index: 99; */
    opacity: 0;
}
.filter div span {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* margin-left: 20px; */
    cursor: pointer;
    width: 100%;
}
.filter div span i {
    width: 50%;
    border:#000 solid 2px;
    /* border-radius: 3px; */
    margin-top: 2px;
    margin-bottom: 2px;
}
.filter div span.hide {
    display:none;
}
.filter div span.line1 i:last-child {
    border-color:transparent;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}
.filter div span.line1 i:last-child u {
    background:#000;
    height:2px;
    margin: 2px 5px;
}
.filter div span.line3 i {
    width: 14px;
}

/***********************************************************************************************
                                                                         FIXED BOTTOM BUTTONS
***********************************************************************************************/

    .fbut {
        right: 5px;
        bottom: 5px;
        position: fixed;
        /* opacity: 0.5; */
        z-index: 1000;
        display: flex;
        flex-direction: column;
    }

    .fbut > div {
        /* display:none; */
        /* right: 5px; */
        /* bottom: 5px; */
        /* position: fixed; */
        /* opacity: 0.5; */
        /* z-index: 1000; */
        /* background-color: #ffffff; */
        /* color: var(--main-link-color); */
        /* border: var(--add-link-color) solid 1px; */
        font-size: 14px;
        cursor: pointer;
        transition: .3s all ease;
        border-radius:0px;
        overflow-y:hidden;
        /* border-radius: 10px; */
    }

      .fbut > div#feedback-form {}
      .fbut > div#return-to-top {
          display: none;
      }

    .fbut > div .inside {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin-top: 5px;
        opacity: .5;
    }

    .fbut > div .inside:hover,
    .fbut > div .inside:focus {
        opacity:1;
    }
    
    .fbut > div span {
        transition: .3s all ease;
        font-size: 0em;
        margin: 0px -15px 0 0;
        padding: 0px;
        /* display:inline-block; */
        color: #ffffff;
        background: var(--main-link-color);
        height:30px;
        line-height:30px;
        border-radius:15px 0 0 15px;
        /* z-index:1001; */
        display: none;
    }

    .fbut > div:hover span,
    .fbut > div:focus span {
        font-size: 1em;
        padding: 0px 20px 0 10px;
    }
    .fbut > div i {
        /* background-color: #fff; */
        border-radius: 0px;
        background-color: #fff;
        /* text-shadow: #fff 0px 3px 0; */
        color: var(--add-link-color);
        border-radius: 30px;
        width: 55px;
        height: 55px;
        line-height: 54px;
        text-align:center;
        z-index:1002;
        font-size: 25px;
    }

    .fbut > div:hover i,
    .fbut > div:focus i {
        color: #fff;
        background-color: var(--add-link-color);
    }

/***********************************************************************************************
                                                                            BREADCRUMBS
***********************************************************************************************/

    ul.B_crumbBox {
      font-family: var(--add-font);
      padding: 0px;
      margin: 10px 0 0;
      text-align: left;
      font-size: 16px;
      color: #676767;
      /* opacity: 0.8; */
      /* text-transform: lowercase; */
      overflow-x: hidden;
      overflow-y: hidden;
      /*! margin-right: var(--margin-sides-max); */
      /*! margin-left: var(--margin-sides-max); */
    }

    ul.B_crumbBox li {
      display: inline-block;
    }

    ul.B_crumbBox li.empty {
      color:#000;
    }

    ul.B_crumbBox li a {
      color: var(--add-link-color);
      text-decoration: none;
      border-bottom: #0088bd00 solid 1px;
    }

    ul.B_crumbBox li a:hover,
    ul.B_crumbBox li a:active {
      border-bottom: #585858 solid 1px;
      color:#000;
    }

/***********************************************************************************************
                                                                            PAGINATION
***********************************************************************************************/

    ul.pagination {
        display: flex;
        padding-left: 0;
        margin: 30px 0 0;
        border-radius: 4px;
        /* width: 100%; */
        list-style: none;
    }
    ul.pagination li {
        display: inline-flex;
    }
    ul.pagination li.disabled {
        display: none;
    }
    ul.pagination li:first-of-type,
    ul.pagination li:last-of-type {
        /* display: inline; */
        display: none;
    }
    ul.pagination li a, 
    ul.pagination li span {
        position: relative;
        /* float: left; */
        padding: 6px 14px;
        margin-right: 10px;
        line-height: 1.42857143;
        color: var(--main-link-color);
        text-decoration: none;
        /* background-color: #f1f1f1; */
        border: 1px solid var(--main-link-color);
        font-size: 18px;
        /* font-weight: 600; */
    }
    ul.pagination li a:hover,
    ul.pagination li a:focus,
    ul.pagination li.active a {
        background-color: var(--main-link-color);
        color: #fff;
    }

/***********************************************************************************************
                                                                            TABS
***********************************************************************************************/

    .tabs {
      /* max-width: 700px; */
      margin: 30px 0 0;
    }
    .tabs__caption {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      justify-content: flex-start;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      list-style: none;
      position: relative;
      margin: -1px 0 0 -1px;
    }
    .tabs__caption li:last-child:before {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      right: -2px;
      z-index: -1;
      height: 5px;
    }
    .tabs__caption:after {
      content: '';
      display: table;
      clear: both;
    }
    .tabs__caption li {
      padding: 5px 15px;
      margin: 1px 0px 0 5px;
      background: #9990;
      color: var(--main-link-color);
      position: relative;
      border: solid #9990;
      border-width: 1px 1px 0;
      border-radius: 0;
      text-align: center;
      transition: .3s all ease;
    }
    .tabs__caption li:not(.active) {
      cursor: pointer;
    }
    .tabs__caption li:not(.active):hover {
      background: var(--main-link-color);
      border-color: var(--main-link-color);
      color:#fff;
    }
    .tabs__caption .active {
      background: #FFF;
      color: #000;
      border-color: #ccc;
    }
    .tabs__caption .active:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      right: 0;
      height: 5px;
      background: #FFF;
    }
    .tabs__content {
      display: none;
      background: #FFF;
      border: 1px solid #cacaca;
      border-radius: 0px;
      padding: 15px;
      font-size: 14px;
    }
    .tabs__content.active {
      display: block;
    }

        /* EXCEPTIONS */

        div.tabs dl {

        margin: 0px;

        }

        div.tabs dl.product__info__name {
        display:none;
        }

        div.tabs dl dt {

        font-weight: bold;

        }

        div.tabs dl dd {

        margin: 0 0 5px 10px;

        }

        div.tabs dl dd:last-child {

        margin-bottom: 0;

        }

        div.tabs p {

        }

        div.tabs p:last-child {
        margin-bottom: 0;
        }

        div.tabs strong {
        margin-right:5px;
        }

/***********************************************************************************************
                                                                        SOCIAL NETWORK BUTTONS
***********************************************************************************************/

    div.ya-share2 {
        /* width: 24px; */
        position: absolute;
        left: -55px;
        top: 0px;
        /* opacity: 0.5; */
        text-align: left;
        /* transform: scale(0.5); */
    }  
    
    div.ya-share2.bottom {
        width: auto;
        position:relative;
        right: auto;
        top: auto;
        text-align: right;
        margin-top: 20px;
    } 

    .ya-share2__list {
        display:flex !important;
        flex-direction:column;
    }

    .ya-share2__container_size_m .ya-share2__item {
        margin: 3px 0 0px 0!important;
        height: 20px;
        width: 20px;
    }

    div.ya-share2 a {
        opacity: 0.7;
        transition: .3s all ease;
        height: 100%;
        width: 100%;
    } 

    .ya-share2__container_size_m .ya-share2__icon {
      height: 100% !important;
      width: 100% !important;
    }

    div.ya-share2 a:hover,
    div.ya-share2 a:focus {
        opacity:1;
    } 

    .ya-share2__badge {
        border-radius: 0px !important;
        height: 100% !important;
        width: 100%;
    }

/***********************************************************************************************
                                                                            GO TOP BUTTON
***********************************************************************************************/
    
.btn-up {
  position: fixed;
  background-color: white;
  opacity: .5;
  right: 20px;
  bottom: 20px;
  border-radius: 30px;
  border: #000 solid 2px;
  outline: #fff solid 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition:.3s all ease;
  z-index: 1000;
}

.btn-up::before {
  content: "";
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23000' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
}

.btn-up:hover {
    opacity:1;
}

.btn-up_hide {
  /* display: none; */
  opacity: 0;
}

/***********************************************************************************************
                                                                            FANCYBOX - ALBUM
***********************************************************************************************/

  div.album {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  div.album div.title {
      writing-mode: tb-rl;
      width: 30px;
      transform: rotate(180deg);
      line-height: 30px;
      color: #fff;
      letter-spacing: 1px;
      background-color: #0000006e;
      display: none;
  }

  div.album div.inside {
      /* width: calc(100% - 30px); */
      /* padding: 5px 50px; */
      max-width: 1200px;
      /* display: flex; */
      /* flex-direction: row; */
      /* flex-wrap: wrap; */
      /* justify-content: center; */
  }

  div.album a {
    padding: 0px;
    /* margin: 5px; */
    height: auto;
    transition:.3s all ease;
    position: relative;
  }

  div.album a:hover,
  div.album a:focus {
      /* background-color: #bb0006; */
  }

  div.album a img {
    padding: 0px;
    margin: 0px;
    /* height: 120px; */
    width: 100%;
    /* min-height: 100%; */
  }

  div.album a div.hidden {
      position: absolute;
      width: 0px;
      height: 0px;
      top: 50%;
      left: 50%;
      background-color: #009cc182;
      transition:.1s all ease;
  }

  div.album a:hover div.hidden,
  div.album a:focus div.hidden {
      width: 100%;
      height: 100%;
      top: 0%;
      left: 0%;
  }

  div.album a div.hidden div {
    position: absolute;
      width: 80px;
      height: 60px;
      top: calc(50% - 20px);
      left: calc(50% - 40px);
      text-align: center;
  }

  div.album a div.hidden div i {
      color: #fff;
      font-size: 0px;
      transition: all .3s ease;
  }

  div.album a:hover div.hidden div i,
  div.album a:focus div.hidden div i {
      font-size: 34px;
  }


/***************************************************************************************************
****************************************************************************************************/

  @media (min-width: 1601px) and (max-width: 1900px) {
    ul.B_crumbBox {
      /*! margin-right: var(--margin-sides-1900); */
      /*! margin-left: var(--margin-sides-1900); */
    }
  }

/***************************************************************************************************
****************************************************************************************************/

  @media (min-width: 1263px) and (max-width: 1600px) {
    ul.B_crumbBox {
      /*! margin-right: var(--margin-sides-1600); */
      /*! margin-left: var(--margin-sides-1600); */
    }
  }

/***************************************************************************************************
****************************************************************************************************/

  @media (min-width: 992px) and (max-width: 1262px) {
    ul.B_crumbBox {
      /*! margin-right: var(--margin-sides-1262); */
      /*! margin-left: var(--margin-sides-1262); */
      font-size: 12px;
    }
  }
  
/***************************************************************************************************
****************************************************************************************************/

@media (max-width: 991px) {
    ul.B_crumbBox {
      /*! margin-right: var(--margin-sides-991); */
      /*! margin-left: var(--margin-sides-991); */
    }
      .tabs {
      font-size: 14px;
      }
      div.ya-share2 {
        transform: scale(0.9);
        /* right: 2px; */
        left: -34px;
        bottom: 66px;
      } 
    .fbut > div i {
        border-radius: 20px;
        width: 40px;
        height: 40px;
        line-height: 39px;
        font-size: 18px;
    }     
    .filter div span.line1 {
        flex-direction:column;
    }  
    .filter div span.line1 i {
        width:100%;
        height: 20px;
    }
    .filter div span.line1 i:last-child {
        height:2px;
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: center;
        border-color: #000;
        border-width: 1px;
    }
    .filter div span.line1 i:last-child u {
        display:none;
    }
    .filter div {
        width: 30px;
    }
    .filter div span.line3 i {
        width: 13px;
    }
    .filter div span.line3 i:first-child,
    .filter div span.line3 i:last-child{
        display:none;
    }
}

/***************************************************************************************************
****************************************************************************************************/

@media (max-width: 768px) {
    ul.B_crumbBox {
      /*! margin-right: var(--margin-sides-768); */
      /*! margin-left: var(--margin-sides-768); */
    }
      ul.B_crumbBox {
        font-size: 12px;
        opacity: 0.7;
      }    
      div.ya-share2 {
        width: 100%;
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        text-align: center;
        transform: scale(0.85);
        margin-top: 5px;
      }  
      div.ya-share2 ul:before {
        content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¹Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â:";
        margin:0 5px 0 2px;
        opacity:0.7;
      }
      .ya-share2__container_size_m .ya-share2__item {
          margin: 0px 3px 0px 0!important;
      }
      ul.pagination {
        justify-content:center;
        width: 100%;
      }
      ul.pagination li a, 
      ul.pagination li span {
          padding: 2px 10px;
          margin-right: 10px;
          line-height: 1.42857143;
          color: var(--main-link-color);
          text-decoration: none;
          /* background-color: #f1f1f1; */
          border: 1px solid var(--main-link-color);
          font-size: 16px;
          /* font-weight: 600; */
      } 
      .tabs {
      font-size: 14px;
      margin-bottom: 15px;
      }

    .fbut > div i {
        background-color: #fff;
        color: var(--add-link-color);
        border-radius: 20px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align:center;
        z-index:1002;
        font-size: 14px;
    } 

    .fbut > div i:hover,
    .fbut > div i:focus {
        background-color: #fff;
        color: var(--add-link-color);
    }      
}

/***************************************************************************************************
****************************************************************************************************/

@media (max-width: 480px) {
      .filter div:first-child {
        display:none;
      }
      .filter {
        padding-left:10px;
        padding-right:10px;
      }
      ul.B_crumbBox {
        /* display:none; */
      /*! margin-right: var(--margin-sides-480); */
      /*! margin-left: var(--margin-sides-480); */
        font-size: 11px;
        margin-bottom: unset;
        opacity: 1;
      } 
      div.ya-share2 {
        transform: scale(0.8);
        left: auto;
      } 
      div.ya-share2 ul {
        justify-content:center;
      }
      .tabs,
      .tabs * {
      font-size: 13px;
      }

    .fbut > div i {
        color: #fff;
        background-color: var(--add-link-color);
    } 
    .fbut > div i:hover,
    .fbut > div i:focus {
        color: #fff;
        background-color: var(--add-link-color);
    } 
}  