@charset "UTF-8";
.radio-btn 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #ffffff;
  min-height: 30px;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; 
}

.hint-text 
{
  color: #a0adb8;
/*  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  padding-bottom: 15px; */
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  padding-bottom: 15px;
  padding-top: 15px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  display: none; 
}

.choice-item 
{
  padding: 0 20px;
  background-color: #ffffff; 
  min-height: 60px;
  line-height:60px;
}
.choice-item.filter-item--vertical { line-height:20px; }

.choice-item__inner 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 30px; 
}

.choice-item__title 
{
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  margin-right: 14px; 
}

.field 
{
  position: relative;
  width: 100%;
  height: 60px; 
}

.field.is-valid:after 
{
  content: '';
  display: block;
  background: url(../img/done-green.svg) center no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 3px; 
}

.field.is-valid .field__input 
{
  border-color: #7ed800; 
}

.field.is-error .field__input 
{
  border-color: #ff0000; 
}

.field--no-border .field__input 
{
  border-bottom-color: transparent; 
}

.field__input 
{
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 2px solid #e6e6e6;
  background-color: transparent;
  height: 100%;
  padding-top: 5px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  padding-right: 30px; 
}

.field__input:focus 
{
  outline: none; 
}

.field__label 
{
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  pointer-events: none;
  left: 0px;
  //top: 27px;
  top: 5px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; 
}

.field-wrap 
{
  margin-bottom: 20px; 
}

.field + .field 
{
  margin-top: 20px; 
}

.field.is-error .field__label,
.field__input:focus ~ .field__label,
.field__input:valid ~ .field__label 
{
  top: 5px; 
}

.field-textarea__label 
{
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all; 
}

.field-textarea__input 
{
  display: block;
  width: 100%;
  height: 200px;
  border: none;
  border-bottom: 2px solid #e6e6e6;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; 
}

.field__msg--error 
{
  color: #ff0000;
  font-family: "Proxima Nova Rg";
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  text-align: right;
  width: 100%;
  display: block; 
}

.popup-menu 
{
  height: 100vh;
  background-color: #fff; 
}

.popup-menu__head 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  background-color: #ffffff;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 5px 40px;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2; 
}

.popup-menu__head .btn-filter-refresh 
{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 5px; 
}

.popup-menu__list 
{
  max-height: 400px;
  overflow-y: auto;
  background-color: #fff;
  margin-top: 1px; 
}

.popup-menu-apply 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  background-color: #ffffff;
  position: relative;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 5px 40px;
  width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 1; 
}

.popup-menu-current-item 
{
  height: 60px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  color: #1a1a1a;
  font-weight: 700;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2; 
}

.btn-close-popup 
{
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  padding: 5px; 
}

.btn-close-popup__icon 
{
  margin-left: 10px;
  color: #a0adb8;
  font-size: 20px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.popup-menu-item 
{
  color: #1a1a1a;
  font-weight: 700;
  height: 60px;
  width: 100%;
  padding: 5px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.popup-menu-item:hover 
{
  color: #9000ed; 
}

.popup-menu-item__count 
{
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase; 
}

.mfp-close 
{
  display: none !important; 
}

.general-jumbotron 
{
  position: relative;
  min-height: 240px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #301242; 
}

@media (max-width: 1023px) 
{
  .filter 
{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px; 
}
}

@media (max-width: 1023px) 
{
  .section-filter 
{
    overflow-x: hidden; 
}
}

.filter-row 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start; 
}

@media (min-width: 1024px) 
{
  .filter-row 
{
    margin-left: -10px;
    margin-right: -10px; 
}
}

@media (max-width: 1023px) 
{
  .filter-row 
{
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; 
}
}

.filter-row--wrap 
{
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; 
}

.filter-category 
{
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  width: 180px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; 
}

@media (min-width: 1024px) 
{
  .filter-category 
{
    margin-right: 10px;
    margin-left: 10px; 
}
}

@media (max-width: 1023px) 
{
  .filter-category 
{
    width: 100%;
    padding: 5px 20px;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; 
}
}

.filters-list 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 100%; 
}

.filter-element 
{
  background-color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 180px;
  margin-bottom: 20px;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer; 
}

.filter-element.checkbox 
{
  min-height: 60px;
  padding: 5px 20px; 
}

@media (max-width: 1023px) 
{
  .filter-element 
{
    width: 100%; 
}
  .filter-element:not(.checkbox) 
{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; 
}
}

@media (min-width: 1024px) 
{
  .filter-element 
{
    margin-right: 10px;
    margin-left: 10px; 
}
}

.filter-element.active .filter-element__icon 
{
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg); 
}

.filter-element__title 
{
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; 
}

.filter-element__head 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 60px;
  padding: 5px 30px 5px 20px; 
}

@media (max-width: 1023px) 
{
  .filter-element__head 
{
    background-color: #f2f2f2; 
}
}

.filter-element__icon 
{
  border-bottom: 2px solid #a0adb8;
  border-right: 2px solid #a0adb8;
  content: '';
  display: block;
  height: 5px;
  width: 5px;
  pointer-events: none;
  margin-left: auto;
  -webkit-transform-origin: 66% 66%;
      -ms-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.filter-element .menu 
{
  -webkit-transition: opacity .1s ease;
  transition: opacity .1s ease;
  z-index: 11;
  will-change: transform, opacity; 
}

.filter-menu 
{
  padding: 40px;
  background: #fff;
  min-width: 100%;
  min-width: 220px;
  display: none; 
}

@media (max-width: 1023px) 
{
  .filter-menu 
{
    padding: 20px; 
}
}

@media (min-width: 1024px) 
{
  .filter-menu 
{
    position: absolute;
    top: -40px;
    left: -10px;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); 
}
}

.filter-menu__inner 
{
  //max-height: 300px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%; 
}

@media (min-width: 1024px) 
{
  .filter-menu__inner 
{
    width: 300px; 
}
}

.filter-menu__head 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  width: 100%; 
}

@media (max-width: 1023px) 
{
  .filter-menu__head 
{
    background-color: #f2f2f2;
    display: none; 
}
}

.filter-menu__close 
{
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; 
}

.filter-menu__close-icon 
{
  margin-left: 10px;
  color: #a0adb8;
  font-size: 18px; 
}

.filter-menu__title 
{
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; 
}

.visible.transition 
{
  display: block !important;
  visibility: visible !important; 
}

.filter-item 
{
  height: 60px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; 
}

.filter-menu__inner .filter-item-chkl 
{
    height: 30px;
}

.filter-item__title 
{
  margin-bottom: 5px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700; 
}

.filter-item__inner 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%; 
}

.filter-item--vertical 
{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; 
}

.filter-item--vertical .filter-item__title 
{
  -webkit-box-flex: 0;
  -webkit-flex: 0;
      -ms-flex: 0;
          flex: 0;
  margin-bottom: 5px; 
}

.filter-item.active .filter-item__icon:after 
{
  background-color: #9000ed; 
}

.filter-item__subtitle 
{
  width: 100%;
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  line-height: 1;
  margin-bottom: auto; 
}

.filter-item__input 
{
  border: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700; 
}

.filter-item__icon 
{
  width: 16px;
  height: 16px;
  background-color: #f2f2f2;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; 
}

.filter-item__icon:after 
{
  content: '';
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
          border-radius: 50%; 
}

.filter-item__buttons 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -5px;
  margin-right: -5px; 
}

.filter-item-button 
{
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 4px solid #f2f2f2;
  background-color: #ffffff;
  margin-left: 5px;
  margin-right: 5px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.filter-item-button:hover 
{
  background-color: #f2f2f2; 
}

.filter-item-button:after 
{
  content: '';
  border-bottom: 2px solid #a0adb8;
  border-right: 2px solid #a0adb8;
  display: block;
  height: 6px;
  width: 6px;
  margin-top: -4px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
      -ms-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; 
}

.filter-item-button--left:after 
{
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg); 
}

.filter-item-button--right:after 
{
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); 
}

.filter-list-selected 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 5px;
  padding-bottom: 20px;
  border-bottom: 4px solid #fff; 
}

@media (max-width: 1023px) 
{
  .filter-list-selected 
{
    display: none; 
}
}

.selected-item 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
  color: #a0adb8;
  font-size: 11px;
  font-weight: 700;
  margin-right: 25px;
padding: 5px 10px;
    border: 1px solid #9fadb8;
    border-radius: 25px;
}

.selected-item:hover 
{
color: #9000ed;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); 
}

.selected-item__icon 
{
  color: #ff0000;
  margin-left: 10px;
  font-size: 20px; 
}

@media (min-width: 1024px) 
{
  .filter-more 
{
    display: none; 
}
}

.btn-filter-refresh 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 30px;
          border-radius: 30px;
  background-color: #ffffff;
  color: #a0adb8;
  font-size: 20px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.btn-filter-refresh:hover 
{
  color: #9000ed;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); 
}

.filter-actions 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px; 
}

@media (max-width: 1023px) 
{
  .filter-actions--top 
{
    display: none; 
}
}

.filter-results 
{
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase; 
}

@media (max-width: 767px) 
{
  .filter-results 
{
    display: none; 
}
}

.btn-filter-more 
{
  color: #9000ed;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.btn-filter-more--center 
{
  margin-left: auto;
  margin-right: auto; 
}

.btn-filter-more:hover 
{
  color: #9000ed; 
}

.btn-filter-more.filter-is-open .btn-filter-more__icon 
{
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg); 
}

.btn-filter-more__icon 
{
  font-size: 20px;
  margin-left: 5px;
  color: #a0adb8;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.filter-card 
{
  min-height: 240px;
  width: 100%;
  padding: 20px;
  padding-right: 40px;
  color: #1a1a1a;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin-bottom: 20px; 
}

@media (max-width: 1023px) 
{
  .filter-card 
{
    padding: 20px; 
}
}

@media (min-width: 1024px) 
{
  .filter-card:hover .filter-card-item__description-text 
{
    opacity: 1; 
}
}

.filter-card--new:before 
{
  content: 'new';
  width: 60px;
  height: 20px;
  background-image: linear-gradient(270deg, #0479f5 0%, #9000ed 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 40px; 
}

@media (max-width: 767px) 
{
  .filter-card--new:before 
{
    left: auto;
    right: 20px; 
}
}

.filter-card--sale .filter-card__price 
{
  color: #ff0000; 
}

.filter-card--sale:before 
{
  content: 'sale';
  width: 60px;
  height: 20px;
  background-image: -webkit-gradient(linear, right top, left top, from(#ff0077), to(#ff0000));
  background-image: linear-gradient(270deg, #ff0077 0%, #ff0000 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 40px; 
}

@media (max-width: 767px) 
{
  .filter-card--sale:before 
{
    left: auto;
    right: 20px; 
}
}

.filter-card.active .filter-card-item:not(.active),
.filter-card.active .filter-card-item__button, .filter-card.active:before,
.filter-card.active .filter-card__price 
{
  opacity: 0.1; 
}

.filter-card__elements 
{
  margin-bottom: -20px; 
}

.filter-card:not(.active) 
{
  background-color: #ffffff; 
}

.filter-card:not(.active):after 
{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border-width: 16px 0 0 16px;
  border-style: solid;
  border-color: #e6e6e6 #f2f2f2;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.filter-card:not(.active):hover:after 
{
  border-color: #fff; 
}

.filter-card:not(.active):hover 
{
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); 
}

.filter-card:not(.active):hover .card__title 
{
  color: #9000ed; 
}

.filter-card__row 
{
  width: 100%; 
}

.filter-card__price 
{
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  text-align: right; 
}

a.filter-card-item:hover .filter-card-item__title 
{
  color: #9000ed; 
}

.filter-card__elements-row 
{
  margin-bottom: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; 
}

.filter-card-item 
{
  min-height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
  text-align: left;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; 
}

.filter-card-item.active .filter-card-item__icon 
{
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg); 
}

.filter-card-item__button 
{
  height: 60px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  color: #9000ed;
  background: none;
  border: 4px solid #f2f2f2;
  background-size: 200% !important; 
}

.filter-card-item__button:disabled,
.filter-card-item__button [disabled] 
{
  background-color: #f2f2f2;
  color: #666666; 
}

.filter-card-item__button:not(:disabled):hover 
{
  background: linear-gradient(-45deg, #4a00ed 0%, #9000ed 100%);
  color: #fff;
  background-position-x: 100%; 
}

.filter-card-item__subtitle 
{
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px; 
}

.filter-card-item__description-text 
{
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  margin-top: 4px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.t-location .location-desc 
{
    width: 70px;
}

  .filter-card-item__description-text 
{
}

.filter-card-item__title 
{
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.filter-card-item__icon 
{
  border-bottom: 2px solid #a0adb8;
  border-right: 2px solid #a0adb8;
  content: '';
  display: block;
  height: 5px;
  width: 5px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
      -ms-transform-origin: 66% 66%;
          transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  margin-left: 16px; 
}

.filter-card-item__flag 
{
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  height: 20px; 
}

.description 
{
  margin-bottom: 20px; 
}

.description__help-block 
{
  padding: 2px; 
}

.description__help-text 
{
  color: #a0adb8;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase; 
}

.counter 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 15px; 
}

.counter__input 
{
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  border: none;
  max-width: 30px;
  text-align: center;
  background-color: transparent; 
}

.counter__button 
{
  width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #a0adb8;
  font-size: 15px;
  font-weight: 700;
  -webkit-transition: all .3s ease;
  transition: all .3s ease; 
}

.counter__button:hover 
{
  color: #9000ed; 
}

.description 
{
  display: none; 
}

@media (max-width: 1024px) 
{
  .filter-card-item-wrap 
{
    margin-bottom: 10px; 
}
}

@media (min-width: 1024px) 
{
  .filter-card-item-wrap 
{
    width: 280px; 
}
}

@media (min-width: 1024px) 
{
  .filter-cards-mobile 
{
    display: none; 
}
}

.filter-cards-mobile .filter-card-item 
{
  padding-left: 0; 
}

.filter-cards-mobile .filter-card__elements-row 
{
  margin-bottom: 0; 
}

.filter-cards-mobile .filter-card-wrap 
{
  margin-bottom: 20px; 
}

@media (max-width: 1023px) 
{
  .filter-cards-desktop 
{
    display: none; 
}
}

.mfp-bg 
{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; 
}

.mfp-wrap 
{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; 
}

.mfp-container 
{
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; 
}

.mfp-container:before 
{
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; 
}

.mfp-align-top .mfp-container:before 
{
  display: none; 
}

.mfp-content 
{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; 
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content 
{
  width: 100%;
  cursor: auto; 
}

.mfp-ajax-cur 
{
  cursor: progress; 
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close 
{
  cursor: -webkit-zoom-out;
  cursor: zoom-out; 
}

.mfp-zoom 
{
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in; 
}

.mfp-auto-cursor .mfp-content 
{
  cursor: auto; 
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter 
{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; 
}

.mfp-loading.mfp-figure 
{
  display: none; 
}

@media (max-width: 1023px) 
{
  .mfp-hide 
{
    display: none !important; 
}
}

.mfp-preloader 
{
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; 
}

.mfp-preloader a 
{
  color: #CCC; 
}

.mfp-preloader a:hover 
{
  color: #FFF; 
}

.mfp-s-ready .mfp-preloader 
{
  display: none; 
}

.mfp-s-error .mfp-content 
{
  display: none; 
}

button.mfp-close,
button.mfp-arrow 
{
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; 
}

button::-moz-focus-inner 
{
  padding: 0;
  border: 0; 
}

.mfp-close 
{
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; 
}

.mfp-close:hover,
.mfp-close:focus 
{
  opacity: 1; 
}

.mfp-close:active 
{
  top: 1px; 
}

.mfp-close-btn-in .mfp-close 
{
  color: #333; 
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close 
{
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; 
}

.mfp-counter 
{
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; 
}

.mfp-arrow 
{
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; 
}

.mfp-arrow:active 
{
  margin-top: -54px; 
}

.mfp-arrow:hover,
.mfp-arrow:focus 
{
  opacity: 1; 
}

.mfp-arrow:before,
.mfp-arrow:after 
{
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; 
}

.mfp-arrow:after 
{
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; 
}

.mfp-arrow:before 
{
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; 
}

.mfp-arrow-left 
{
  left: 0; 
}

.mfp-arrow-left:after 
{
  border-right: 17px solid #FFF;
  margin-left: 31px; 
}

.mfp-arrow-left:before 
{
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; 
}

.mfp-arrow-right 
{
  right: 0; 
}

.mfp-arrow-right:after 
{
  border-left: 17px solid #FFF;
  margin-left: 39px; 
}

.mfp-arrow-right:before 
{
  border-left: 27px solid #3F3F3F; 
}

.mfp-iframe-holder 
{
  padding-top: 40px;
  padding-bottom: 40px; 
}

.mfp-iframe-holder .mfp-content 
{
  line-height: 0;
  width: 100%;
  max-width: 900px; 
}

.mfp-iframe-holder .mfp-close 
{
  top: -40px; 
}

.mfp-iframe-scaler 
{
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; 
}

.mfp-iframe-scaler iframe 
{
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; 
}

img.mfp-img 
{
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; 
}

.mfp-figure 
{
  line-height: 0; 
}

.mfp-figure:after 
{
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; 
}

.mfp-figure small 
{
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; 
}

.mfp-figure figure 
{
  margin: 0; 
}

.mfp-bottom-bar 
{
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; 
}

.mfp-title 
{
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; 
}

.mfp-image-holder .mfp-content 
{
  max-width: 100%; 
}

.mfp-gallery .mfp-image-holder .mfp-figure 
{
  cursor: pointer; 
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) 
{
  .mfp-img-mobile .mfp-image-holder 
{
    padding-left: 0;
    padding-right: 0; 
}
  .mfp-img-mobile img.mfp-img 
{
    padding: 0; 
}
  .mfp-img-mobile .mfp-figure:after 
{
    top: 0;
    bottom: 0; 
}
  .mfp-img-mobile .mfp-figure small 
{
    display: inline;
    margin-left: 5px; 
}
  .mfp-img-mobile .mfp-bottom-bar 
{
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; 
}
  .mfp-img-mobile .mfp-bottom-bar:empty 
{
    padding: 0; 
}
  .mfp-img-mobile .mfp-counter 
{
    right: 5px;
    top: 3px; 
}
  .mfp-img-mobile .mfp-close 
{
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; 
}
}

@media all and (max-width: 900px) 
{
  .mfp-arrow 
{
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75); 
}
  .mfp-arrow-left 
{
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0; 
}
  .mfp-arrow-right 
{
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%; 
}
}

.order-item__section-title 
{
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding-left: 20px;
  margin-bottom: 35px; 
}

@media (max-width: 1023px) 
{
  .order-item__section-title 
{
    padding-left: 0;
    padding-right: 0;
    text-align: center; 
}
}

.iconz { color: #1a1a1a; font-size: 11px; font-weight: 700; margin-left:20px; }
@media (max-width:1023px) { .iconz {margin-left:0} }
.iconz > i { display:inline-block; height:20px; width:20px; margin-right:10px; margin-left:20px; vertical-align:middle;}
.iconz > i:first-child {margin-left:0;}
.iconz .gpu { background:url(/assets/images/main/icons/gpu.svg) no-repeat 100% 50%; }
/*.iconz .kvm { background:url(/assets/images/main/icons/ipkvm.svg) no-repeat 100% 50%; }*/

.iconz .kvm { 
display: inline-block;
width: 20px;
height: 20px;
background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAsMCwyNTYsMjU2IgpzdHlsZT0iZmlsbDojMDAwMDAwOyI+CjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xNi42NCwtMTYuNjQpIHNjYWxlKDEuMTMsMS4xMykiPjxnIGZpbGw9IiM5MDAwZWQiIGZpbGwtcnVsZT0ibm9uemVybyIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lY2FwPSJidXR0IiBzdHJva2UtbGluZWpvaW49Im1pdGVyIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS1kYXNoYXJyYXk9IiIgc3Ryb2tlLWRhc2hvZmZzZXQ9IjAiIGZvbnQtZmFtaWx5PSJub25lIiBmb250LXdlaWdodD0ibm9uZSIgZm9udC1zaXplPSJub25lIiB0ZXh0LWFuY2hvcj0ibm9uZSIgc3R5bGU9Im1peC1ibGVuZC1tb2RlOiBub3JtYWwiPjxnIHRyYW5zZm9ybT0ic2NhbGUoMTYsMTYpIj48cGF0aCBkPSJNMi41LDJjLTAuODI0MjIsMCAtMS41LDAuNjc1NzggLTEuNSwxLjV2OWMwLDAuODI0MjIgMC42NzU3OCwxLjUgMS41LDEuNWgxMWMwLjgyNDIyLDAgMS41LC0wLjY3NTc4IDEuNSwtMS41di05YzAsLTAuODI0MjIgLTAuNjc1NzgsLTEuNSAtMS41LC0xLjV6TTIuNSwzaDExYzAuMjgxMjUsMCAwLjUsMC4yMTg3NSAwLjUsMC41djAuNWgtMTJ2LTAuNWMwLC0wLjI4MTI1IDAuMjE4NzUsLTAuNSAwLjUsLTAuNXpNMiw1aDEydjcuNWMwLDAuMjgxMjUgLTAuMjE4NzUsMC41IC0wLjUsMC41aC0xMWMtMC4yODEyNSwwIC0wLjUsLTAuMjE4NzUgLTAuNSwtMC41ek00LjY2MDE2LDYuNjQ4NDRsLTAuNzA3MDMsMC43MDMxM2wxLjY0ODQ0LDEuNjQ4NDRsLTEuNjQ4NDQsMS42NDQ1M2wwLjcwNzAzLDAuNzEwOTRsMi4zNTU0NywtMi4zNTU0N3pNOCwxMHYxaDR2LTF6Ij48L3BhdGg+PC9nPjwvZz48L2c+Cjwvc3ZnPg==') 50% 50% no-repeat;
background-size: 100%; }

.iconz .freeinst { 
display: inline-block;
width: 20px;
height: 20px;
background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAsMCwyNTYsMjU2IgpzdHlsZT0iZmlsbDojMDAwMDAwOyI+CjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0zOS42OCwtMzkuNjgpIHNjYWxlKDEuMzEsMS4zMSkiPjxnIGZpbGwtb3BhY2l0eT0iMCIgZmlsbD0iI2VkMDAwMCIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PHBhdGggZD0iTTMwLjI5MDA4LDIyNS43MDk5MnYtMTk1LjQxOTg1aDE5NS40MTk4NXYxOTUuNDE5ODV6IiBpZD0iYmdSZWN0YW5nbGUiPjwvcGF0aD48L2c+PGcgZmlsbD0iIzkwMDBlZCIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLWRhc2hhcnJheT0iIiBzdHJva2UtZGFzaG9mZnNldD0iMCIgZm9udC1mYW1pbHk9Im5vbmUiIGZvbnQtd2VpZ2h0PSJub25lIiBmb250LXNpemU9Im5vbmUiIHRleHQtYW5jaG9yPSJub25lIiBzdHlsZT0ibWl4LWJsZW5kLW1vZGU6IG5vcm1hbCI+PGcgdHJhbnNmb3JtPSJzY2FsZSg4LDgpIj48cGF0aCBkPSJNMTUsNHYxMC4wNjI1bC0yLjI4MTI1LC0yLjI4MTI1bC0xLjQzNzUsMS40Mzc1bDQsNGwwLjcxODc1LDAuNjg3NWwwLjcxODc1LC0wLjY4NzVsNCwtNGwtMS40Mzc1LC0xLjQzNzVsLTIuMjgxMjUsMi4yODEyNXYtMTAuMDYyNXpNOC4yNSw4bC0wLjIxODc1LDAuNzVsLTMsMTFsLTAuMDMxMjUsMC4xMjV2Ny4xMjVoMjJ2LTcuMTI1bC0wLjAzMTI1LC0wLjEyNWwtMywtMTFsLTAuMjE4NzUsLTAuNzVoLTQuNzV2MmgzLjI1bDIuNDM3NSw5aC0xNy4zNzVsMi40Mzc1LC05aDMuMjV2LTJ6TTcsMjFoMTh2NGgtMTh6TTIyLDIyYy0wLjU1MDc4LDAgLTEsMC40NDkyMiAtMSwxYzAsMC41NTA3OCAwLjQ0OTIyLDEgMSwxYzAuNTUwNzgsMCAxLC0wLjQ0OTIyIDEsLTFjMCwtMC41NTA3OCAtMC40NDkyMiwtMSAtMSwtMXoiPjwvcGF0aD48L2c+PC9nPjwvZz4KPC9zdmc+') 50% 50% no-repeat;
background-size: 100%; }


.iconz .vlan { background:url(/assets/images/main/icons/vlan.svg) no-repeat 100% 50%; }
.iconz .raid { background:url(/assets/images/main/icons/hwraid.svg) no-repeat 100% 50%; width:23px;}
