@import url('font-awesome.min.css');
@import url('bootstrap.min.css');
@import url('bootstrap-social.css');
@import url("https://fonts.googleapis.com/css?family=Open+Sans:700,400,300&subset=latin,latin-ext");
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300&subset=latin,latin-ext");
@import url('https://fonts.googleapis.com/css?family=Cairo&display=swap');
@import url('https://fonts.googleapis.com/css?family=Fira+Sans+Extra+Condensed');

@font-face {
    font-family: BebasNeue-Regular;
    src: url(../fonts/BebasNeue-Regular.ttf);
}

:root {
  --main_color: #DF0000;
  --grey_dark: #3b3b3b;
  --grey_light: #F9F9F9;
}

html, body {
  background-color: #F9F9F9;
  color: #5d5d5d;
  height: 100%;
  margin: 0;
  font-family: 'Cairo', sans-serif;
  _font-weight: 300;
  _line-height: 1.65em;
}
.wrapper-container {
  min-height: 100%;
  margin-bottom: -185px;
}
.push {
  height: 185px;
}
@media (min-width: 1200px) {
  .container{
    max-width: 1500px;
  }
}
@media (max-width: 992px) {
}
@media (min-width: 992px) {
}
@media (max-width: 768px) {
}

button {
  cursor: pointer;
}

select.form-control {
  position: relative;
  background: url(../img/select-arrow.png) no-repeat right;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 53px;
}
select.form-control::after {
  content: '\f0d7';
  position: absolute;
  top: 0;
  right: 0;
  height: 10px;
  width: 10px;
  font-family:FontAwesome;
  border: 1px solid red;
}
select.form-control::-ms-expand {
    display: none;
}
input.form-control::placeholder {
  opacity: 0.5;
}

.alert {
  border-radius: 0;
}

.btn.btn-brown {
  background: #713f04;
  color: #FFF;
}
.btn.btn-brown:hover {
  background: #ae5e00;
}
.btn.btn-navygrey {
  background-color: #000088;
  color: #FFF;
}
.btn-outline-dark-nohover:hover {
  background: none;
  color: var(--dark);
}
.btn.btn-navygrey:hover {
  background-color: #0000ff;
}
.btn.btn-default {
  background: rgba(0,0,0, 0.5);
  color: #FFF;
}
.bg-black {
  background-color: #000;
}
.bg-main {
  background-color: var(--main_color);
  color: #FFF;
}
.btn-lg {
  _font-size: 15px;
}
.text-amber {
}
.text-main {
  color: var(--main_color);
}
.text-secondary {
  opacity: 0.6
}
.btn-amber {
  background-color:#de550d;
  color: #FFF;
  border-radius: 0;
  font-weight: bold;
}
a.btn-amber:hover {
  color: #FFF;
  text-decoration: underline;
}
.btn-amber-o {
  background-color:#FFF;
  color: #de550d;
}
.bg-amber {
  background-color:#de550d;
}
a {
  color: #5d5d5d;
}
a:hover {
  text-decoration: underline;
  color: inherit;
}

.hide {
  display: none;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: -0.15em;
  content: "";
  border-top: 0.3em solid;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
}

.main-container {
}
@media (max-width: 992px) {
  .main-container {
  }
}

.btn.btn-main {
  font-family: "Roboto Slab", sans-serif;
  color: #FFF;
  background: var(--main_color);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}
.btn.btn-main.btn-sm,
.btn.btn-outline-main.btn-sm {
  font-size: 14px;
}
.btn.btn-outline-main {
  font-family: "Roboto Slab", sans-serif;
  color: var(--main_color);
  border: 1px solid var(--main_color);
  background: #FFF;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}
.btn.btn-outline-main:hover {
  background-color: var(--main_color);
  color: #FFF;
}
.btn.btn-basket {
  font-family: "Roboto Slab", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  padding: 15px 15px 15px 60px;
  height: 55px;
}
.btn.btn-basket:hover {
  background-color: rgba(0,0,0, 0.03);
}
.btn.btn-basket i {
  font-size: 34px;
  color: var(--main_color);
  position: absolute;
  top: 10px;
  left: 10px;
  transition-duration: 0.3s;
}
.btn.btn-basket:hover i {
  color: #000;
}
.btn.btn-basket .badge {
  position: absolute;
  top: 10px;
  right: 10px;
}
.btn.btn-basket.btn-fav {
  padding: 15px 35px 15px 35px;
}
.btn.btn-basket.btn-fav i {
  left: 15px
}

.navbar-nav .nav-item {
  margin:0;
}
.navbar-nav .nav-item a.nav-link {
	padding:15px 18px;
  border: none;
	border-right:1px solid rgba(255,255,255, 0.2);
	font-size:17px;
	transition-duration:0.3s;
	display:block;
}
.navbar-nav .nav-item a.btn-add {
  background-color: var(--main_color);
  color: #FFF;
}
.navbar-nav .nav-item a.nav-link.active,
.navbar-nav .nav-item a.nav-link:hover {
  background: var(--main_color);
  color: #FFF;
}
.navbar-main {
  position: relative;
}
.navbar-main .navbar-collapse,
.navbar-main .navbar-toggler {
  position: relative;
  z-index: 1;
}
.navbar-main button {
  border: 1px solid rgba(0,0,0, 0.1);
  color: rgba(0,0,0, 0.5);
}
.navbar-main .dropdown-menu {
  width: 380px !important;
}
@media (max-width: 992px) {
  .navbar-main .nav-item {
    width: 100%;
  }
}

header.main-header .langs .dropdown-toggle img {
  height: 20px;
  vertical-align: middle;
}
header.main-header .langs .dropdown-menu a {
  text-align: center;

  display: block;
  margin: 0 auto;
  min-height: 25px;
  background-repeat: no-repeat;
  background-position: 25px 5px;
  margin-bottom: 5px;
  padding-left: 42px;
}
header .langs .dropdown-menu  a.lang-pl {
  background-image: url(../img/lang-pl.png);
}
header .langs .dropdown-menu a.lang-ru {
  background-image: url(../img/lang-ru.png);
}
header .langs .dropdown-menu a.lang-uk,
header .langs .dropdown-menu a.lang-en {
  background-image: url(../img/lang-uk.png);
}
header .langs .dropdown-menu a.lang-dk {
  background-image: url(../img/lang-dk.png);
}
header .langs .dropdown-menu a:last-child {
  margin-bottom: 0;
}

.main-page .info-bar {
  background: #5d5d5d;
  color: #FFF;
}
.main-page .info-bar h3,
.main-page .info-bar h4 {
  font-weight: bold;
}
.main-page .info-bar h4 {
  margin: 5px 0 0;
}
.main-page .info-bar .btn {
  color: #FFF;
  font-weight: bold;
  font-size: 19px;
  border: 1px solid #FFF;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;
}
.main-page .info-bar .btn .fa {
  margin-left: 10px
}
.main-page .promo-ads h1 {
  font-size: 16px;
}
.main-page .news h1 {
  background: #5d5d5d;
  color: #FFF;
  font-size: 18px;
}
.main-page .card {
  border: 0;
  background: none;
}
.main-page .card .card-header {
  background: none;
  font-size: 1.5em;
  padding-left: 0;
}
.main-page .card .card-body {
  padding: 0 10px;
}

.items-list li {
  width: 24.2%;
  position: relative;
  vertical-align: top;
}
@media (max-width: 992px) {
  .items-list li {
    width: 49%;
  }
}
@media (max-width: 768px) {
  .items-list li {
    width: 100%;
  }
}
.items-list li::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  display: block;
  width: 1px;
  height: 100%;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(0,0,0,0.2) 50%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(0,0,0,0.2) 50%,rgba(255,255,255,1) 100%);
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(0,0,0,0.2) 50%,rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 );
}
.items-list li:nth-child(4n)::after {
  background: none
}
.items-list li h3 {
  color: #000;
  font-size: 16px;
  white-space: normal;
}
.items-promo li h3 {
  font-weight: bold;
}
.items-promo li .items-image {
  margin: 0 auto;
  max-width: 90%
}
.items-list .items-links {
}
.items-list .items-links a {
  display: inline-block;
  text-indent: 0;
  overflow: hidden;
  width: 30px;
  height: 30px;
}
.items-list .items-links a em {
  font-size: 18px;
}
.items-list .items-links .user-veryfi {
  font-size: 12px;
  text-transform: uppercase;
}
.items-list .items-links .user-veryfi em {
  font-size: 18px;
}

.item-add label {
  font-size: 16px;
  font-weight: bold;
}
.item-add .file-add input {
  display: none;
}
.item-add .file-add label {
  cursor: pointer;
  text-align: center;
  display: block;
  position: relative;
  padding: 95px 0 0 0;
  height: 140px;
  border:4px dashed var(--main_color);
  border-radius: 10px;
  text-transform: uppercase;
  color: rgba(0,0,0, 0.3);
}
.item-add .file-add label i {
  display: block;
  font-size: 5em;
  position: absolute;
  top: 5%;
  left: 38.5%;
  opacity: 0.3;
}
.item-add .fa-image,
.item-add .fa-paperclip, {
  font-size: 24px;
}
.item-add .custom-file {
  cursor: pointer;
}
.item-add .custom-file-label::after {
  display: none;
}
.item-add .card {
  counter-increment: inst;
  position: relative;
}
.item-add .card::before {
  width: 29px;
  text-align: center;
  content: counter(inst);
  position: absolute;
  top: 8px;
  left: 48px;
  font-weight: bold;
  font-size: 22px;
}
.item-add.item-payment .card::before {
  content: '';
}
.item-add .card .input-ft input {
  width: 42%;
}
.item-add .title {
  margin-left: 27px;
}
.item-add.item-payment .title {
  margin-left: 0;
}
.item-add .ck-editor__editable {
  min-height:400px;
  max-height:400px;
}
.item-add .cats-select select {
  margin-bottom: 10px;
}
.item-add .cats-select select:last-child {
  margin-bottom: 0;
}
.item-add .lang-list {
}
.item-add .lang-list label {
  background-repeat: no-repeat;
  background-position:0 100%;
}
.item-add input[name=date_start] {
  min-width: 200px;
}
.item-add input[name=date_start_hour],
.item-add input[name=date_start_minute] {
  width: 80px;
}
.user-register-form .nav-tabs {
  position: relative;
  top: 2px;
}
.user-register-form a.nav-link {
  font-family: "Roboto Slab", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.user-register-form a.nav-link.active {
  background: var(--main_color);
  color: #FFF;
  border: none;
}
.user-register-form .lang-list span {
  display: inline-block;
  width: 32px;
  height: 23px;
  margin: 5px 15px 0 0;
  padding-bottom: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  position: relative;
  top: -8px
}
.item-add .lang-list .pl,
.user-register-form .lang-list .pl {
  background-image: url(../img/lang-pl.png);
}
.item-add .lang-list .ru,
.user-register-form .lang-list .ru {
  background-image: url(../img/lang-ru.png);
}
.item-add .lang-list .en,
.user-register-form .lang-list .en {
  background-image: url(../img/lang-uk.png);
}
.item-add .lang-list label input {
  margin-bottom: 20px
}
.item-add .select-langs option {
  background: url(../img/lang-uk.png) no-repeat;
  border: 1px solid red;
  font-weight: bold;
}
.item-add .photos button {
  border: none;
  background: none;
  cursor: pointer;
}
.item-add .photos.photos-modal img {
  transition-duration: 0.3s;
}
.item-add .photos.photos-modal img:hover {
  background: rgba(0,0,0, 0.1);
  cursor: pointer;
}
.item-add .promo-list label {
  font-weight: normal;
}
.item-add .promo-list .alert {
  padding: 5px;
  font-size: 14px;
}
.item-add .promo-list span {
  font-weight: bold;
}

.items .search-bar label {
  font-weight: bold;
}
.items .search-bar .query-input {
  position: relative;
}
.items .search-bar .query-input .search-box {
  border: 1px solid var(--main_color);
  position: relative;
  z-index: 9;
}
.items .search-bar.search-bar-header .query-input button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  border: 1px solid var(--main_color);
  _color: var(--main_color);
  background-color: var(--main_color);
  color: #FFF;
  _left: 76%;
  right: -1px;
  top: 0;
}
@media (max-width: 992px) {
  .items .search-bar .query-input button {
    _left: 85%;
  }
}
.items .search-bar input[type=text],
.items .search-bar select,
.items .search-bar input[type=number],
.items .search-bar .chkbox-dropdown {
  border-radius: 8px;
}
.items .search-bar input[type=text] {
  display: block;
  width: 100%;
  border: 0;
  height: 100%;
}
.items .search-bar input[type=text]:focus {
  border: 0;
  outline: 0;
}
.items .search-bar .form-control {
  _border: none
}
.items .search-bar .chkbox-dropdown .form-control {
  _width: 100%;
}
@media (max-width: 992px) {
  .items .search-bar .inputs-default input[name=string],
  .items .search-bar .inputs-default input[type=text],
  .items .search-bar .inputs-default select {
    width: 100%;
  }
}
.items .search-bar .inputs-default select:last-child {
  margin-right: 7px;
  margin-left: auto;
}
.items .search-bar .inputs-default .btn {
  width: 19.4%;
  margin-bottom: 7px;
}
@media (max-width: 992px) {
  .items .search-bar .inputs-default .btn {
    width: 100%;
  }
}
.items .search-bar .inputs-default .btn::after,
.items .search-bar .inputs-default select::after {
}
.items .search-bar .filter-list {
  border-top: 1px solid #EEE;
  margin-top: 15px;
  padding-top: 10px;
}
.items .search-bar .filter-list .form-control {
  margin-bottom: 5px;
}
.items .search-bar .filter-list input[type=number] {
  max-width: 49%;
  display: inline-block;
}
.items .search-bar .filter-list .btn {
  padding-top: 0px;
  padding-bottom: 0px;
  height: 38px;
}
.items .items-list .item.item-tiles {
  _height: 340px
}
.items .items-list .item {
  border: 1px solid #EEE;
  background-color: #FFF;
  padding:10px 0;
  margin: 10px -10px;
  position: relative;
  _overflow: hidden;
  transition-duration: 0.3s;
}
.items .items-list .item:hover {
  background: rgba(0,0,0, 0.01);
}
.items .items-list .item.distinction {
  border-color: var(--main_color);
  border-left-width: 12px;
}
.items .items-list .item.backlight {
  background-color: rgba(37,141,200, 0.1) !important;
}

.items .items-list .item .corner-ribbon {
  position: absolute;
  bottom: 0px;
  top: auto;
  right: 0px;
  width: 170px;
  height: 170px;
  overflow: hidden;
}
.items .items-list .item .corner-ribbon span {
  width: 170px;
  padding: 10px 0;
  background: var(--main_color);
  position: absolute;
  bottom: 25px;
  right: -40px;
  z-index: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}
.items .items-list .item .corner-ribbon.corner-ribbon-promo {
  top: 0;
}
.items .items-list .item .corner-ribbon.corner-ribbon-promo span {
  top: 20px;
  right: -50px;
  bottom: auto;
  padding: 5px 0;
  font-size: 12px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1;
}

.items .items-list .item-box:nth-child(odd) .item {
  background-color: #F9F9F9;
}
.items .items-list .item:first-child {
  margin-top: 0;
}
.items .items-list .item .msg-icon {
  opacity: 0.5;
}
@media (max-width: 992px) {
  .items .items-list .item .msg-icon {
  }
}
.items .items-list .item .msg-icon.active {
  opacity: 1;
  color: #000;
  background-color: #FFF;
}
.items .items-list .item .msg-icon:hover {
  color: #FFF;
  background-color: var(--grey_dark);
}
.items .items-list .item .msg-icon::before {
  font-family:FontAwesome;
  content: '\f0e0';
  margin-right: 8px;
}
.items .items-list .item .msg-icon.active::before {
  color: var(--main_color);
}
.items .items-list .item .msg-icon::after {
  font-family:FontAwesome;
  content: '\f0da';
  margin-left: 8px;
}
.items .items-list .item .msg-icon.active::after {
  color: var(--main_color);
}
.items .items-list .item .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-indent: -999em;
  overflow: hidden;
}
.items .items-list .item .options {
  position: absolute;
  top: 0;
  right: 0;
  text-align: left;
}
@media (max-width: 992px) {
  .items .items-list .item .options {
    position: relative;
  }
}
.items .items-list .item .options a {
  display: block;
  font-size: 14px;
  transition-duration: 0.3s;
}
.items .items-list .item .options a:hover {
  background-color: rgba(0,0,0, 0.05);
  text-decoration: none;
  color: #000;
}
.items .items-list .item.item-user .link {
  width: 83%;
}
.items .items-list .item .img {
  position: relative;
  height: 200px;
  max-height: 200px;
  overflow: hidden;
}
.items .items-list .item .img.img-height {
  _height: 100px;
}
.items .items-list .item .img img:not(.main-pic img) {
  width: 100%;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
}

.items .items-list .preview {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: -25%;
  left:-10px;
  width: 600px;
  padding: 10px;
  border-radius: 3px;
  background-color: rgba(255,255,255, 1);
  border: 1px solid rgba(0,0,0, 0.2);
  transition-duration: 0.2s;
}
.items .items-list .img:hover .preview {
  opacity: 1;
  z-index: 1;
}

.items .items-list .item h2 {
  color: #000;
  font-size: 18px;
}
.items .items-list .item h2.bold {
  font-weight: bold;
}
.items .items-list .item p {
  font-size: 13px;
  line-height: 20px
}
.items .items-list .item .user a {
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}
.items .items-list .item .item-price strong {
  font-size: 26px;
  letter-spacing: 0px;
  font-family: sans-serif;
}
.items .items-list .item .price-promo .badge {
  font-size: 18px;
}
.items .items-list .item .user .veryfi::after,
.item-info .veryfi::after {
  margin-left: 5px;
  font-family:FontAwesome;
  content: '\f00c';
  color: var(--main_color);
  /*
  font-weight: bold;
  font-size: 10px;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 30px;
  margin-bottom: -5px;
  background: url(../img/item-veryfi.png) no-repeat 100% 0;
  */
}
.item-info .veryfi {
  margin: 0 0 0 auto;
  float: right;
}
.items .items-list .item .details {
}
.items .items-list .item .details .info.price strong {
  font-size: 18px;
}
.items .items-list .item .details .info::after {
  content: '/';
  margin: 0 5px 0 10px;
}
.items .items-list .item .details .info:last-child::after {
  content: '';
  margin: 0;
}
.items .items-list .item .details.details-tiles .info {
  display: block;
}
.items .items-list .item .details.details-tiles .info::after {
  content: '';
  margin: 0;
}
.items .items-list .item .details strong {
  font-weight: bold;
}
.items .items-list .item .langs {
  font-size: 13px;
}
.items .items-list .item .langs span {
  display: inline-block;
  width: 27px;
  height: 19px;
  margin-top: -5px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
}
.items .items-list .item .langs .pl {
  background-image: url(../img/lang-pl.png);
}
.items .items-list .item .langs .ru {
  background-image: url(../img/lang-ru.png);
}
.items .items-list .item .langs .en {
  background-image: url(../img/lang-uk.png);
}
/*.items .items-list .item .show {
  min-height: 100%;
  text-indent: 999em;
  overflow: hidden;
  background: url(../img/show-item.png) no-repeat center;
}
.items .items-list .item .show:hover {
  background-image: url(../img/show-item-href.png);
}*/
.items .view-mode {
}
.items .view-mode a {
  font-size: 26px;
  color: #CCC;
  margin-right: 10px
}
.items .view-mode a.active {
  color: #000;
}
.items .pagination li a {
  border: none;
  color: #000;
}
.items .pagination li.active a {
  background: none;
  color: var(--main_color);
  font-size: 30px;
  font-weight: bold;
  position: relative;
  top: -13px
}

.item-info .avatar {
  border: 1px solid rgba(0,0,0, 0.1);
}
.item-info h1 {
  font-size: 28px;
}
.item-info .send-msg {
}
@media (max-width: 992px) {
  .item-info .send-msg {
  }
}
.item-info .send-msg:hover {
  text-decoration: underline;
}
.item-info .user-info .veryfi {
  border-top: 2px solid #de550d;
  border-bottom: 2px solid #de550d;
  line-height: 20px;
  position: relative;
}
.item-info .user-info .veryfi::before,
.item-info .user-info .veryfi::after {
  margin-left: 5px;
  font-family:FontAwesome;
  content: '\f00c';
  color: var(--main_color);
  /*
  background: url(../img/item-veryfi.png) no-repeat;
  display: block;
  width: 28px;
  height: 25px;
  position: absolute;
  top: 8px;
  */
}
.item-info .user-info .veryfi::after {
  right: 0
}
.item-info .account-type {
  background: #202b29;
  color: #FFF;
}
.item-info .contact {
  font-size: 14px;
}
.item-info .contact .must-login::before {
  font-family:FontAwesome;
  content: '\f023';
  margin-right: 5px
}
.item-info .top-info {
  font-size: 12px
}
.item-info .top-info .fa-power-off {
  font-size: 16px;
  font-weight: lighter;
}
.item-info .lang-chng {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  text-align: right;
  margin: 20px 0
}
.item-info .lang-chng a {
  border-left: 1px solid #DDD;
  padding: 0 15px;
  font-weight: bold;
}
.item-info .multimedia {
  position: relative;
}
.item-info .multimedia .title {
  background: #FFF;
  margin-left: 20px;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-weight: bold;
  z-index: 1;
}
.item-info .multimedia::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd;
  position: absolute;
  top: 11px;
  z-index: 0;
}
.item-info .gallery img {
  cursor: pointer;
}
.item-info .gallery li {
  margin: 0;
  padding: 0;
  _margin-left: -15px;
}
.item-info .price-info div {
  border-left: 1px solid #EEE
}
.item-info .price-info div:first-child {
  border: none
}
.item-info .price-info big {
  font-size: 22px
}
.item-info .price-info .watch a {
  display: block;
  width: 100%;
}
.item-info .price-info .watch i {
  font-size: 24px;
}
.item-info .offer-list .row {
  border-bottom: 1px solid #DDD;
  margin-bottom: 10px;
}
.item-info .offer-list .offer-desc {
  font-size: 14px;
  text-align: justify;
  line-height: 20px;
}
.item-info .item-desc .nav-pills .nav-link {
  text-transform: uppercase;
  padding: 5px 30px;
}
.item-info .item-desc .nav-pills .active {
  background-color: var(--main_color);
}

.breadcrumb {
  background: none;
  font-size: 15px;
}
.breadcrumb-item + .breadcrumb-item::before {
  font-family:FontAwesome;
  content: '\f105';
}
.breadcrumb-item {
  position: relative;
}
.breadcrumb-item .brdcrmbs-item-ucats {
  display: none;
  position: absolute;
  z-index: 999;
  top: 110%;
}
.breadcrumb-item:hover > .brdcrmbs-item-ucats {
  display: block;
}
.breadcrumb-item .brdcrmbs-item-ucats ul {
  display: flex;
  _flex-direction: column;
  _flex-wrap: wrap;
  flex-flow: column wrap;
  _max-height: 20em;
  _width: auto;
}
.breadcrumb-item .brdcrmbs-item-ucats li {
  white-space: nowrap;
}

.news-list h4 {
  font-size: 16px;
  font-weight: bold;
}
.news-list p {
  font-size: 14px;
}
.news-list a {
  font-size: 14px;
}
.news-list li {
  width: 18%;
  margin-left: 8.35%;
}
@media (max-width: 992px) {
  .news-list li {
    width: 49%;
  }
}
@media (max-width: 768px) {
  .news-list li {
    width: 100%;
  }
}
.news-list li:first-child {
  margin-left: 0
}
.user-form-short select {
  padding: 0
}
.user-form-short {
  white-space: nowrap;
  font-size: 14px
}
.user-form-short .radio {
  overflow: hidden;
}
.user-form-short .radio:nth-child(2) label {
  width: 60px;
  background: url(../img/gender-1.png) no-repeat 30px 3px;
}
.user-form-short .radio:nth-child(3) label {
  width: 60px;
  background: url(../img/gender-2.png) no-repeat 30px 3px;
}
.user-form-short .radio:nth-child(4) label {
  width: 73px;
  background: url(../img/gender-3.png) no-repeat 30px 3px;
}
.user-form-short .radio label span {
  display: none;
}
.user-form-short .rules {
  white-space: normal;
}
.main-page {
}


.main-banner {
}
.main-banner .carousel-control-prev-icon,
.main-banner .carousel-control-next-icon {
  min-height: 111px;
  max-width: 32px;
}
.main-banner .carousel {
  height: auto;
  max-height: auto;
}
.main-banner .carousel h1 {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: bold;
}
.main-banner .carousel .carousel-inner {
  max-height: 350px !important;
}
.main-banner .carousel .price span {
  background: #98a5a5;
  color: #FFF;
  font-weight: bold;
  font-size: 28px;
  padding: 5px 10px;
}
.main-banner .carousel .slide-info {
  position: relative;
  float: right;
  text-align: right;
  top: -40px;
  right: 40px;
}
.main-banner .carousel .carousel-item {
  height: 350px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.main-banner .carousel .carousel-item .image {
  position: relative;
  top: 100px
}
.main-banner .carousel .carousel-item .link {
  position: absolute;
  top: 80%;
  right: 0;
}
.main-banner .carousel .carousel-item img {
  width: 100%;
  _height: 466px;
}
.main-banner .carousel .carousel-caption {
  background: rgba(255,255,255, 0.2);
  padding: 20px;
  border-radius: 5px;
  width: 90%;
  left: 5%;
}
.main-banner .carousel .carousel-item a {
  position: relative;
}
.main-banner .carousel .carousel-item a .fa-comment {
  position: absolute;
  color: orange;
  top: 5px;
  right: 5px;
  font-size: 20px
}
@media (max-width: 768px) {
  .carousel-item a {
    _width: 18%;
    _height: 120px;
  }
}
@media (max-width: 576px) {
  .carousel-item a {
    _width: 30.6%;
    _height: 100px;
    _margin-right:0;
  }
}
.carousel-item a:last-child {
  margin-right: 0;
}
.main-banner .carousel .carousel-control-prev {
  left: 10px;
  width: auto;
}
.main-banner .carousel .carousel-control-next {
  right: 10px;
  width: auto;
}
.main-banner .carousel .carousel-control-prev-icon,
.main-banner .carousel .carousel-control-next-icon {
  height: 41px;
  width: 41px;
  position: relative;

}
.main-banner .carousel .carousel-control-prev-icon {
  background: url(../img/slider-back.png);
  opacity: 0.5;
}
.main-banner .carousel .carousel-control-next-icon {
  background: url(../img/slider-forward.png);
  opacity: 0.5;
}
.main-banner .carousel {
  width: 100%;
  margin: 0 auto;
}
.main-banner .carousel .carousel-inner {
  _height: 480px;
}
@media (max-width: 768px) {
  .main-banner .carousel {
    background: #FFF;
    width: 100%;
    padding-top:5px;
  }
  .main-banner .carousel .carousel-control-prev {
    display: none
  }
  .main-banner .carousel .carousel-control-next {
    display: none
  }
}
.template .main {
  padding: 0;
  margin: 0
}
.template .section-name {
  text-transform: uppercase;
  font-size: 17px;
  font-weight: bold;
  padding: 15px 0;
  margin: 10px 0;
  border-bottom: 1px solid rgba(0,0,0, 0.3);
}
.template .section-name.border-none {
  border-bottom: none;
}
.contents .text {
  background: #FFF;
  color: #000;
}
.contents .text h1.title {
  font-size: 22px;
  font-weight: bold;
}

footer {
  position: relative;
}
footer a {
  color: #F0F0F0;
  font-size: 16px;
  line-height: 30px;
}
footer a:hover {
  color: #FFF;
  opacity: 1;
}
footer .copyright {
  font-size: 12px;
  opacity: 0.3;
  color: #F0F0F0;
}
footer .copyright a {
  font-size: 12px;
}
footer .contact .fa {
  font-size: 30px;
  vertical-align: middle;
  margin-top: -5px
}

.border-secondary {
  border-color: rgba(0,0,0, 0.2) !important;
}
.user-payment {
  background: #FFF;
}
.user-payment .list-group,
.user-payment .list-group-item {
  border-radius: 0
}
.user-payment .list-operators img {
  max-height: 80px
}
.redirect {
  background: none;
}
.payment-redirect {
	width:1000px;
	height:100%;
	position:relative;
	z-index:0;
	margin:0 auto -23px;
	text-align:center;
	background:#FFF;
}

.payment-redirect img.logo {
	display:block;
	margin:0 auto 30px;
	padding:10px 0 0;
	max-height:150px;
}

.payment-redirect img.logoOperator {
	display:block;
	margin:0 auto;
  max-width: 40%;
}

.payment-redirect img.loading {
	display:block;
	margin:3em auto;
  width: 550px;
  max-width: 40%;
}
.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.tooltip-inner {
}
.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before {
}
.none {
  display: none;
}

section.contact {
  background: #FFF;
}
.contact ul.nav {
  border: none;
}
.contact ul.nav li.nav-item a {
  border: 1px solid #AAA;
  color: #AAA;
  padding: 5px 25px;
  border-radius: 3px;
  margin-right: 20px
}
.contact ul.nav li.nav-item a.active {
  background: #AAA;
  color: #FFF;
}
img.emojiMco {
    height: 2em;
    width: auto;
}
.alert-sm {
  font-size: 12px;
  padding: 5px;
}
.alert {
  z-index: 1;
}
#userData {
  background: #FFF
}

.step {
  color: #202b29;
}
.step .num {
  font-weight: bold;
  font-size: 20px;
}
.step .title {
  display: inline-block;
}
.step .title a {
  color: #000;
  font-style: italic;
  font-weight: bold;
  font-size: 12px;
}
.user-member .packages li:first-child {
  margin-left: 0;
}
.user-member .packages li:last-child {
  margin-right: 0;
}
@media (min-width: 992px) {
  .user-member .packages li {
    width: 24.1%;
    padding:0
  }
}
@media (max-width: 992px) {
  .user-member .packages li {
    width: 33%;
    padding:0 20px
  }
}
@media (max-width: 992px) {
  .user-member .packages li {
    width: 48%;
    padding:10px 10px 0
  }
}
@media (max-width: 768px) {
  .user-member .packages li {
    width: 100%;
    padding:10px 0 0;
  }
}
.user-member .packages .name{
  text-align: center;
  margin: 0 8% -3px;
  padding: 10px 0;
  font-size: 30px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0, 0.5);
  position: relative;
  z-index: 1
}
.user-member .others .submit {
  position: relative;
}
.user-member .others .submit .free,
.user-member .packages .name .free {
  position: absolute;
  top: -13px;
  right: -13px;
  text-transform: uppercase;
  font-size: 12px;
  transform: rotate(10deg);
}
.user-member .others .submit .free {
  top: 0
}
.user-member .packages .options {
  color: #FFF;
  font-size: 15px;
  padding: 5px;
  line-height: 15px;
}
.user-member .packages .options .chng button {
  background: none;
  border: none;
  font-size: 14px;
  color: #FFF;
  cursor: pointer;
  line-height: 34px;
  white-space:nowrap;
}
.user-member .packages .options .chng button .fa {
  background: #fff;
  color: #
}
.user-member .packages .options .chng .dropdown-menu {
  padding: 5px;
  min-width: 200px;
  color: #FFF;
}
.user-member .packages .options .chng label {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255, 0.5);
  white-space: nowrap;
}
.user-member .packages .options .chng label span {
  display: inline-block;
  white-space: nowrap;
  width: 45%;
  text-align: center;
}
.user-member .packages .options .chng label strong {
  display: inline-block;
  white-space: nowrap;
  width: 40%;
  text-align: right;
}
.user-member .packages .options .chng label input {
  margin-left: 5px;
  position: relative;
  top: 3px;
}
.user-member .packages .options .chng button em {
  padding: 2px 3px
}
.user-member .packages .options .price {
  border-left: 1px solid #FFF;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
}
.user-member .packages .details {
  background: #f5f5f5;
}
.user-member .packages .details span {
  display: block;
  border-bottom: 1px solid #FFF;
  font-size: 16px;
  padding: 15px 20px;
  position: relative;
}
.user-member .packages .details span.check::after {
  content: '\f00c';
  font-family:FontAwesome;
  color: #b3d60f;
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 22px
}
.user-member .packages .order {
  display: block;
  width: 100%;
  text-align: center;
  color: #FFF;
  text-shadow: 0 0 5px rgba(0,0,0, 1);
  border: none;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
  cursor: pointer;
  transition-duration: 0.3s;
  border-radius: 0 0 5px 5px;
}
.user-member .packages .order:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.user-member .packages .order::after {
  content: '\f054';
  font-family:FontAwesome;
  position: absolute;
  top: 10px;
  right: 20px;
}
.user-account .user-menu {
  top: 0px;
}
.user-account .user-menu .list-group {
  background-color: none;
}
.user-account .user-menu .list-group-item {
  background-color: transparent;
  border: none;
  color: #FFF;
  padding: 18px 20px;
  margin-bottom: 0px;
  position: relative;
}
.user-account .user-menu .list-group-collapse .collapse .list-group-item {
  padding: 10px;
}
.user-account .user-menu .list-group-item:hover,
.user-account .user-menu .list-group-item:active,
.user-account .user-menu .list-group-item.active {
  background-color: rgba(255,255,255, 0.1);
  border: none;
}
.user-account .user-menu .list-group-item .badge {
  position: absolute;
  right: 10%;
  top: 38%;
}

.user-account .account-title {
  font-family: "Roboto Slab", sans-serif;
}

.user-account .nav-main .nav {
  border-bottom: none
}
.user-account .nav-main h5 {
  background: #de550d;
  color: #FFF;
  font-weight: bold;
  font-size: 18px
}
.user-account .nav-main li {
  position: relative;
}
.user-account .nav-main .active {
  font-weight: bold;
}
.user-account .nav-main a {
  font-size: 16px
}
.user-account .nav-main .mini-link {
  font-size: 11px;
  margin-left: 13px
}

.user-account .nav-module {
  position: relative;
}
.user-account .nav-module .nav-item .nav-link {
  border-radius: 0;
}
.user-account .nav-module .nav-item .nav-link::first-letter {
  text-transform: uppercase;
}
.user-account .nav-module .nav-item .nav-link.active {
  background-color: transparent;
  font-weight: bold;
  border-bottom: 3px solid var(--main_color);
  color: var(--grey_dark);
  border-radius: 0
}
.user-account .nav-module .btns {
  position: absolute;
  right: 0;
}

.user-items .item {
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(0,0,0,0.2) 50%, rgba(255,255,255,1) 100%);
  border-image-slice: 1;
  padding-bottom: 10px
}
.user-items .options {
}
.user-items.user-orders .item-box .item {
  margin-bottom: 20px;
  border: 1px solid #dee2e6;
}
.user-items.user-orders .item-box .item,
.user-items.user-orders .items .items-list .item-box:nth-child(odd) .item {
  background-color: var(--grey_light);
}
.user-items.user-orders .item-box .item {
  _height: 180px;
}
.user-items.user-orders .order-info  .item-box .item {
  _height: 150px;
}
.user-items.user-orders .order-info .item-box .item,
.user-items.user-orders .order-info .item-box:nth-child(odd) .item {
  margin: 0;
  border: none;
}
.user-items.user-orders .order-info .item-box:not(:first-child) .order-date  {
  display: none;
}

.user-watching .nav {
  border: none;
}
.user-watching .nav li {
  border: none;
}
.user-watching .nav .active {
}
.user-watching .nav a {
}
.user-watching .cats-list ul {
  list-style: none
}
.user-watching .cats-list .active::before {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: -35px;
  width:22px;
  height: 22px;
}
.user-watching .cats-list a {
  font-size: 16px;
  text-transform: uppercase;
  float: right;
}
.user-watching .cats-list .category:hover,
.user-watching .cats-list .list-under li:hover {
  background-color: #EEE;
}
.user-watching .cats-list .list-under li {
  color: #999;
}
.user-watching .users-list li {
  border-bottom: 1px solid #CCC;
}

.user-register-form .flag {
    width: 30px;
}
.user-register-form .remove{
    width: 20px;
}
.user-register-form .card-body {
}

span#loading span {
	position:fixed;
	top:0;
	left:0;
	display:block;
	width:100%;
	height:100%;
	background:rgba(0,0,0, 0.5);
	z-index:999;
	color:#FFF;
}

span#loading span p {
	top:35%;
  text-align: center;
	position:relative;
	text-align:center;
	font-size:18px;
	font-weight:bold;
}
.crop-text-2 {
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  line-clamp: 2;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.adv-show {
  text-align: center;
  margin: 20px 0
}
.adv-show img {
  max-width: 100%;
}

.main-sec .cats-list {
}
.main-sec .cats-list .list-group-item-secondary {
  background-color: #F0F0F0;
  font-weight: bold;
}
.main-sec .cats-list .list-group-item {
  border-radius: 0;
}
.main-sec .cats-list .cat-link {
  position: relative;
  z-index: 9;
}
.main-sec .cats-list .cat-link a img {
  height: 20px;
}
.main-sec .cats-list .cat-link a .icon {
  margin-left: -8px;
  width: 25px;
  display: inline-block;
  text-align: center;
}
.news .cats-list .cat-link a img {
  min-width: 100%;
  min-height: 100%;
}
.news .cats-list .cat-link a .icon {
  margin: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.main-sec .cats-list .cat-link .cat-link-under {
  display: none;
  _visibility: hidden;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  transition-duration: 0.3s;
  opacity: 0;
  _transition: all 0.5s;
}
.main-sec .cats-list .cat-link:hover .cat-link-under {
  _visibility: visible;
  display: block;
  left: calc(100% - 1px);
  z-index: 1;
  opacity: 1;
}
.main-sec .cats-list a {
  display: block;
  width: 100%;
  transition-duration: 0.3s;
  position: relative;
}
.main-sec .cats-list a:after {
  content: '\f105';
  font-family:FontAwesome;
  position: absolute;
  right: 10px;
  top: 23%;
  font-size: 16px;
  color: rgba(0,0,0, 0.3);
}
.news .cats-list a:after {
  top: 33%;
}
.news .cats-list a:after {
  content: '';
}
.main-sec .cats-list a:hover {
  border-left: 5px solid var(--main_color);
  background-color: var(--grey_light);
}
.main-sec .cats-list .cat-up {
  font-weight: bold;
  background-color: #F9F9F9;
}
.main-sec .cats-list .cat-up i,
.main-sec .cats-list .active i {
  float: right;
  margin-top: 5px;
}
.main-sec .cats-list a.active {
  padding-left: 10px;
  background-color: var(--main_color);
  border: none;
  border-radius: 0;
}
.main-sec .cats-list a.active:after {
  content: '';
}

.chkbox-dropdown {
  position: relative;
  z-index: 9;
}
.chkbox-dropdown dd,
.chkbox-dropdown dt {
  margin: 0px;
  padding: 0px;
}
.chkbox-dropdown ul {
  margin: -1px 0 0 0;
}
.chkbox-dropdown dd {
  position: relative;
}
.chkbox-dropdown a,
.chkbox-dropdown a:visited {
}
.chkbox-dropdown dt a {
  display: block;
  overflow: hidden;
  background: url(../img/select-arrow.png) no-repeat right;
}
.chkbox-dropdown dt a span,
.chkbox-dropdown .multiSel span {
  cursor: pointer;
  display: inline-block;
}
.chkbox-dropdown dd ul {
  background-color: #fff;
  border: 1px solid #DDD;
  display: none;
  left: 0px;
  padding: 5px 10px;
  position: absolute;
  top: 2px;
  width: 100%;
  max-width: 100%;
  list-style: none;
  height: auto;
  overflow: auto;
}
.chkbox-dropdown span.value {
  display: none;
}
.chkbox-dropdown dd ul li a {
  padding: 5px;
  display: block;
}
.chkbox-dropdown dd ul li a:hover {
}
.promo-list {
  margin: 0;
}
.promo-list li {
  position: relative;
}
.promo-list li .box {
  margin: 0 5px;
  box-shadow: 0 0 10px rgba(0,0,0, 0.2);
  border-radius:5px;
  height: 350px;
  position: relative;
}
.promo-list li .box:hover {
  cursor: pointer;
}
.promo-list li label div {
  font-size: 14px;
  line-height: 24px;
}
.promo-list li label p {
  opacity: 0.8;
}
.promo-list li label .icon {
  font-size: 2.5em;
  margin: 0.7em 0 1.2em;
}
.promo-list li input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.promo-list li input[type=checkbox] + label {
  border: 2px solid var(--info);
  position: relative;
}
.promo-list li input[type=checkbox] + label .select {
  font-size: 12px
}
.promo-list li input[type=checkbox] + label .select::before {
  font-family:FontAwesome;
  content: '\f00c';
  color: #FFF;
  font-size: 22px;
  position: relative;
  top: 4px;
  left: -5px;
  display: inline-block;
  border: 1px solid rgba(0,0,0, 0.1);
  width: 25px;
  height: 25px;
}
.promo-list li input[type=checkbox]:checked + label .select::before {
  font-family:FontAwesome;
  content: '\f00c';
  color: var(--orange);
}
.promo-list li input[type=checkbox]:checked + label {
  border-color: var(--orange);
  box-shadow: 0 0 13px rgba(0,0,0, 0.5);
}
.promo-list li input[type=checkbox]:checked + label .icon,
.promo-list li input[type=checkbox]:checked + label h6 {
  color: var(--orange);
}

.to-top-arrow {
  position: fixed;
  z-index:999;
  bottom: 5%;
  right: 5%;
  background: rgba(0,0,0,0.2);
  opacity: 0.5;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: none;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}
.to-top-arrow:hover {
  text-decoration: none;
  opacity: 1;
}
.to-top-arrow::after {
  content: '\f0de';
  font-family:FontAwesome;
  font-size: 4em;
  color: var(--main_color);
  position: relative;
  top: -5px;
  left: 12px;
  _opacity: 0.5;
}

.row.item-gallery > .column {
  padding: 0 8px;
}
.row.item-gallery:after {
  content: "";
  display: table;
  clear: both;
}
/* Create four equal columns that floats next to eachother */
.item-gallery .column {
  display: inline-block;
  width: 25%;
}
/* The Modal (background) */
.modal.item-gallery-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding:0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(255,255,255, 0.5);
  transition: 0.3s ease;
}
/* Modal Content */
.item-gallery-modal .modal-content {
  position: relative;
  margin: auto;
  padding: 20px 0 0;
  width: 100%;
  height: 100%;
  border: none;
  background-color: rgba(255,255,255, 1);
}
.item-gallery-modal .modal-content h1 {
  font-weight: 600;
}
.item-gallery-modal .modal-content .price {
  font-size: 32px;
  color: var(--main_color);
}
.item-gallery-modal .close {
  color: black;
  position: absolute;
  top: -20px;
  right: -5px;
  font-size: 4em;
  padding: 10px 20px;
  font-weight: bold;
  z-index: 1;
}
.item-gallery-modal .close:hover,
.item-gallery-modal .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
/* Hide the slides by default */
.item-gallery-modal .mySlides {
  display: none;
  width: 100%;
  height: 80vh;
  max-height: 80vh;
  margin: 0 auto;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(0,0,0, 0.1);
  padding: 20px 0 0;
}
.item-gallery-modal .mySlides img {
  max-width: 100%;
  height: 65vh;
}
@media (max-width: 992px) {
  .item-gallery-modal .mySlides img {
    height: auto;
  }
}
/* Next & previous buttons */
.item-gallery-modal .prev,
.item-gallery-modal .next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 20px 20px;
  font-weight: bold;
  font-size: 3em;
  transition: 0.3s ease;
  border-radius: 3px;
  user-select: none;
  -webkit-user-select: none;
  background: rgba(0,0,0, 0.1);
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}
/* Position the "next button" to the right */
.item-gallery-modal .next {
  right: 5%;
}
.item-gallery-modal .prev {
  left: 5%;
}
/* On hover, add a black background color with a little bit see-through */
.item-gallery-modal .prev:hover,
.item-gallery-modal .next:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFF;
  opacity: 1;
}
/* Number text (1/3 etc) */
.item-gallery-modal .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* Caption text */
.item-gallery-modal .caption-container {
  text-align: center;
  padding: 2px 16px;
  color: white;
}
.item-gallery-modal .thumbs {
}
.item-gallery-modal .column {
  display: inline-block;
  width: 8.85%;
  height: 120px;
  overflow: hidden;
  text-align: center;
}
.item-gallery-modal .column img {
  cursor: pointer;
  max-width: 95%;
}
.item-gallery-modal .column img.demo {
  opacity: 0.6;
}
.item-gallery-modal .column img.active,
.item-gallery-modal .column .demo:hover {
  opacity: 1;
}
.item-gallery-modal .column img.hover-shadow {
  transition: 0.3s;
}
.item-gallery-modal .modal-content .send-msg {
  position: absolute;
  top: 50px;
  right: 7%;
  text-align: center;
}
.item-gallery-modal .modal-content .phone-msg {
  position: absolute;
  top: 10px;
  right: 7%;
  text-align: center;
}

header .search-bar {
}
header .search-bar input[type=text] {
  min-width: 100%;
}
header .search-bar .inputs-default .query-input button {
  left: 90%;
}
.top-bar ul li a {
  border-right: 1px solid rgba(0,0,0, 0.1) !important;
  padding: 0 15px;
}
.top-bar ul li:last-child a {
  border-right: 0 !important;
}

.badge.item-type-268 {
  background-color: var(--success);
  color: #FFF;
  padding: 5px 8px;
}
.badge.item-type-267 {
  background-color: var(--orange);
  color: #FFF;
  padding: 5px 8px;
}

#cookies-msg {
  padding: 20px;
  text-align: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: #FFF;
  background-color:rgba(0,0,0, 0.5);
  width: 400px;
  z-index: 999;
  box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
  border-radius: 5px;
}
@media (max-width: 992px) {
  #cookies-msg {
    bottom:0;
    right: 0;
    left: 0;
    width: 100%;
  }
}
#cookies-msg a:not(.btn) {
  color: #FFF !important;
  text-decoration: underline;
}
#cookies-msg .btn {
  margin: 20px 0 0;
}

.items-basket .table-items,
.items-basket .table-items .form-control {
  font-size: 14px;
}
.items-basket .table-items th,
.items-basket .table-items td {
  padding: 5px;
}

#loadingForm {
  display: none;
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 10%;
  left: 0;
  background-color: rgba(255,255,255, 0.8);
  z-index: 999;
  color: #fff;
  text-align: center;
  background-image: url(../img/loading.gif);
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.news-mp {
  color: #FFF;
}
.news-mp h1 {
  border-bottom: 2px solid var(--main_color);
}
.news-mp .news-bg {
  background: url(../img/news-bg..png) no-repeat center top;
  background-size: cover;
  position: relative;
}
.news-mp .news-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--grey_dark);
  opacity: 0.5
}
.border-main {
  border-color: var(--main_color);
}

.user-shops {
  position: relative;
}
.user-shops .btn.add-shop {
  position: absolute;
  right: 0;
  top: -70px;
}

.user-cats .cats-main span::after {
  content: '/';
  margin: 0 5px;
}
.user-cats .cats-main span:last-child::after {
  content: '';
  margin: 0;
}

.u-name-info {
  white-space: nowrap;
}
.u-name-info a {
  color: #428bca
}
.u-name-info i {
  margin-left:4px;
  font-size: 16px;
}
.u-name-info img.super {
  position: relative;
  top:-2px;
  margin: 0 0 0 3px;
}
.u-name-info i:nth-child(1) {
  color: var(--main_color) !important;
}
.u-name-info i:nth-child(2) {
  color: #ffac36 !important;
}
.u-name-info .u-name-info-pts {
  margin: 0 0 0 3px;
  position: relative;
  top:-3px;
  font-size: 12px;
}
.u-name-info .u-name-info-pts img {
  position: relative;
  top:-2px;
  margin-right: 3px;
  _width: 17px;
  height: 17px;
}

.rating .rating-stars {
  float: right;
  display: inline-block;
  height: 16px;
  width: 80px;
  _background: url(../img/star-off.png) repeat-x;
  position: relative;
  top: 3px;
}
.rating .rating-stars::before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 80px;
  position: relative;
  top: -2px;
  background: url(../img/star-on.png) repeat-x;
}
.rating .rating-stars.rating-stars-5::before {
  width: 80px;
}
.rating .rating-stars.rating-stars-4::before {
  width: 64px;
}
.rating .rating-stars.rating-stars-3::before {
  width: 48px;
}
.rating .rating-stars.rating-stars-2::before {
  width: 32px;
}
.rating .rating-stars.rating-stars-1::before {
  width: 16px;
}
.filter-list .chk-list label {
  display: block;
}
.filter-list .chk-list label:nth-child(n+4) {
  display: none;
}
.filter-list .chk-list span {
  cursor: pointer;
  font-size: 14px;
}

.menu-sticky {
	position: fixed;
	top:0;
	left:0;
	width:100%;
	display: none;
	z-index:999;
  border-bottom:1px solid #E1E1E1;
	box-shadow:0 0 8px rgba(0,0,0, 0.5);
}

.cmts-info .cmts-summ small::after {
  content: '';
  display: inline-block;
  background: url(../img/star-on.png) no-repeat center;
  height: 16px;
  width: 16px;
  margin: 0 0 0 5px;
}

.circle {
  box-shadow: 0 2px 2px rgba(0,0,0, 0.2);
  border:1px solid rgba(0,0,0, 0.05);
  display: inline-block;
  width: 40px;
  text-align: center;
  padding: 5px 10px;
  border-radius: 99px;
}

.news .cmts-vote-button {
  border: none;
  background: none;
  outline: none;
}
.news .cmts-fav-add {
  outline: none;
}
.news .cats-list .circle {
  position: relative;
  top: 20px;
  right: 20px;
}
