/**** CSS variables ****/
:root {
  --color-yellow: #ffc83d;
  --color-dark-blue: rgba(55, 77, 97, 1);
  --color-blue: #2196F3;
  --color-buy: #2196F3;
  --color-sell: #4ca857;
  --color-trade: #deb03a;
  --color-offer-background: #edf2fa;
  --color-offer-title: #2196F3;
}
/**** custom scrollbar ****/
::-webkit-scrollbar:not(.default-scroll) {
  width: .35em;
  height: .35em;
}
::-webkit-scrollbar-thumb:not(.default-scroll) {
  background: var(--color-blue);
  border-radius: 5px;
}
::-webkit-scrollbar-track:not(.default-scroll) {
  background: #e3e6eb;
}
body {
  scrollbar-face-color: var(--color-blue);
  scrollbar-track-color: #e3e6eb;
}
/*.default-scroll::-webkit-scrollbar {
    width: auto;
    height: auto;
}
.default-scroll::-webkit-scrollbar-thumb {
    background: none;
}
.default-scroll::-webkit-scrollbar-track {
    background: none;
}
body.default-scroll {
    scrollbar-face-color: none;
    scrollbar-track-color: none;
}*/
/**** on website selection ****/
::-moz-selection {
  background-color: #000;
  color: #fff;
}
::selection {
  background-color: #000;
  color: #fff;
}
/**** reset settings ****/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0 !important;
}
html {
  background-color: #374D61;
  overflow-x: hidden;
  touch-action: manipulation;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  height: 100%;
  position: relative;
  z-index: 0;
  color: var(--color-dark-blue) !important;
}
/*body::before {
  content: '';
  position: absolute;
  z-index: -1;
  top:0; right:0; bottom:0; left:0;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACAQMAAABFZu8gAAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMAuLMp9oYAAAAMSURBVAjXY1jAwAAAAeQAoZizZQ8AAAAASUVORK5CYII=');
  background-color: rgba(0,0,0, 0.1);
  display: block;
  height: 100%;
}*/
strong {
  font-weight: 900;
}
h1,
h2,
h3,
h4,
h5,
h6,
.blog-title {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
h2 {
  font-size: 20px;
}
h3 {
  font-size: 18px;
}
h4,
h5,
h6,
p {
  font-size: 16px;
}
p {
  margin-bottom: 1em;
  min-height: 1px;
}
.blog-title {
  font-size: 1.64rem;
  line-height: 1;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
button:focus,
button:active,
select:focus,
textarea:focus {
  outline: 0 !important;
  box-shadow: 0px 0px 0px var(--color-yellow) !important;
}
a {
  text-decoration: none !important;
  transition: transform 0.3s;
}
a.disabled {
  color: rgba(255, 255, 255, 0.3);
}
a:focus:not(:active) {
  animation: scale-animation 0.2s ease-in-out;
}
@keyframes scale-animation {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(.95);
  }
}
/**** tables ****/
.responsive-table-box {
  overflow-x: auto;
}
/**** buttons ****/
.btn {
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Exo 2';
  padding: 0 1rem;
}
.btn i {
  font-size: 14px;
}
.btn-floating {
  padding: 0 !important;
}
.btn[type=button]:focus:not(:active) {
  animation: scale-animation 0.2s ease-in-out;
}
.btn.blue {
  background: #46546e;
}
.btn.dark-blue {
  background: #46546e !important;
}
@keyframes btn-pulse {
  0% {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 2px 4px 3px rgba(0, 0, 0, 0.24), 0 1px 5px 0 rgba(0, 0, 0, 0.22), 0 3px 1px -2px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  }
}
.btn-pulse {
  animation: btn-pulse;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
/**** text colors ****/
.dark-blue-text {
  color: #3e4e5b !important;
}
/**** tabs ****/
.tabs {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
}
.tabs .tab a {
  color: #3e4e5b !important;
}
.tabs .tab a.active {
  color: #3498db !important;
}
/**** pagination ****/
.pagination {
  text-transform: uppercase;
}
.pagination li span {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0 10px;
  line-height: 30px;
}
.pagination li:not(.disabled) span {
  color: #fff;
}
/**** breadcrumbs ****/
.breadcrumb {
  display: flex;
  color: inherit !important;
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .breadcrumb {
    font-size: 14px;
    display: block;
  }
  .breadcrumb > li {
    display: inline;
  }
}
.breadcrumb li::before {
  display: inline-block;
  padding-right: .5rem;
  padding-left: .5rem;
  color: #868e96;
  content: "/";
}
.breadcrumb li:first-child::before {
  padding-right: 0;
  padding-left: 0;
  content: "";
}
/**** main mavigation ****/
nav {
  font-family: 'Exo 2', sans-serif;
  background-color: transparent;
  line-height: normal;
  height: auto;
}
nav i {
  height: auto;
}
nav .navigation {
  background-color: rgba(0, 0, 0, 0.6);
  height: 65px;
  line-height: 65px;
}
nav .navigation .navbar-brand img {
  margin-top: 10px;
}
nav a {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
}
nav ul li.active,
nav ul li:hover a {
  background: none;
}
nav li.active a {
  color: #ffc83d !important;
  cursor: default;
}
nav a:hover,
nav a.disabled {
  color: rgba(255, 255, 255, 0.5) !important;
}
nav .nav-item a.nav-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 16px;
  background: rgba(0, 0, 0, 0.3);
  width: calc(100% - 6px);
  height: 34px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: scaleY(0);
}
nav .nav-link {
  padding: 0 10px;
}
nav .nav-item:hover a.nav-link::before,
nav .nav-item.active a.nav-link::before {
  transform: scaleY(1);
}
nav .ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100px;
  overflow: hidden;
}
nav .profile-avatar-box a {
  padding: 0 10px;
}
/**** navigation - right side / profile ****/
#my-profile-dropdown {
  min-width: 165px;
}
.profile-avatar-box {
  display: flex;
}
.profile-avatar {
  height: 100%;
  max-height: 65px;
  align-items: center;
  display: flex;
}
.profile-avatar img {
  overflow: hidden;
  display: block;
  width: 50px;
  height: 50px;
}
.profile-avatar .badge {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 0px;
  padding: 0px 9px 0px 9px;
  border-radius: 12px !important;
  min-width: auto !important;
  height: 24px;
}
nav .profile-avatar img {
  margin: 0 15px 0 0;
}
/**** mobile navigation - button / hamburger  ****/
.mobile-nav-button a {
  padding-top: 12px;
  line-height: 56px;
  transition: all 0.7s;
}
.mobile-nav-button i {
  line-height: 38px;
  font-size: 38px;
}
.mobile-nav-button i.fa {
  height: auto !important;
}
.mobile-nav-button .nav-item a.nav-link::before {
  height: 40px;
}
.mobile-nav-button a:focus:not(:active) {
  animation: scaleInOut 0.7s;
}
@-webkit-keyframes scaleInOut {
  25% {
    transform: scale(0)
  }
  100% {
    transform: scale(1)
  }
}
@keyframes scaleInOut {
  25% {
    transform: scale(0)
  }
  100% {
    transform: scale(1)
  }
}
/******** inputs ********/
input:focus,
textarea:focus {
  border-bottom: 1px solid var(--color-blue) !important;
}
.input-field label.active,
.input-field i.active {
  color: var(--color-blue) !important;
}
[type="radio"]:checked + label:after,
[type="radio"].with-gap:checked + label:before,
[type="radio"].with-gap:checked + label:after {
  border: 2px solid var(--color-blue);
}
[type="radio"]:checked + label:after,
[type="radio"].with-gap:checked + label:after {
  background-color: var(--color-blue);
}
[type="checkbox"]:checked + label:before {
  border-right: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
}
@media (max-width: 576px) {
  .input-field label {
    letter-spacing: -0.5px;
    transform: none;
    line-height: 1.2;
  }
  .input-field label.active {
    line-height: 1;
  }
}
/**** select ****/
.select-wrapper {
  background: var(--color-dark-blue);
  color: #fff;
  letter-spacing: .5px;
  font-family: 'Exo 2';
  font-weight: 700;
  font-size: 14px !important;
  border-radius: 2px;
}
.select-wrapper input.select-dropdown {
  border-bottom: 0px;
  text-transform: uppercase !important;
  padding: 0px 15px;
  width: calc(100% - 30px);
  height: 36px;
}
.select-wrapper .dropdown-content li {
  text-transform: uppercase !important;
  font-weight: 600;
}
.select-wrapper .dropdown-content li:hover {
  background: #e3e7eb !important;
}
.select-wrapper .dropdown-content li:hover span {
  color: rgb(33, 150, 243) !important;
}
.dropdown-content li > a, .dropdown-content li > span {
  color: var(--color-dark-blue);
}
.select-wrapper span.caret {
  color: #fff !important;
  right: 15px;
  display: none;
}
.select-wrapper::before {
  color: #fff !important;
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 15px;
  font-family: 'FontAwesome';
  content: "\f078";
}
/**** manu dropdown, nav doropdown ****/
.dropdown-content li {
  min-height: 42px;
}
.dropdown-content li a {
  padding: 10px 16px;
}
nav .dropdown-content {
  background: rgba(0, 0, 0, 0.9);
}
nav .dropdown-content .dropdown-item {
  color: rgba(255, 255, 255, 1);
}
nav .dropdown-content li:hover,
nav .dropdown-content a.dropdown-item:hover {
  color: rgb(33, 150, 243) !important;
  background: rgba(0, 0, 0, 0.9) !important;
}
nav .dropdown-content .divider {
  background-color: rgba(255, 255, 255, 0.1);
}
/**** dropdown ****/
.search-box .dropdown-content {
  top: auto !important;
}
.search-box .dropdown-content .dropdown-item {
  font-family: 'Exo 2';
  font-weight: 600;
  text-transform: uppercase;
  border: 0 !important;
  color: #3e4e5b !important;
}
.dropdown-content a.dropdown-item:hover {
  color: rgb(33, 150, 243) !important;
  background-color: #e3e7eb !important;
}
.search-box .dropdown-content .divider {
  background-color: rgba(0, 0, 0, 0.1);
}
/**** serach main box on index ****/
.search-box input:not([type]),
.search-box input[type=text]:not(.browser-default),
.search-box input[type=password]:not(.browser-default),
.search-box input[type=email]:not(.browser-default),
.search-box input[type=url]:not(.browser-default),
.search-box input[type=time]:not(.browser-default),
.search-box input[type=date]:not(.browser-default),
.search-box input[type=datetime]:not(.browser-default),
.search-box input[type=datetime-local]:not(.browser-default),
.search-box input[type=tel]:not(.browser-default),
.search-box input[type=number]:not(.browser-default),
.search-box input[type=search]:not(.browser-default),
.search-box textarea.materialize-textarea {
  height: 36px;
  color: #fff;
}
/**** carousel, slider ****/
.carousel {
  transition: all .3s;
}
.carousel-item {
  overflow: hidden;
  min-height: 100px;
}
.carousel .indicators .indicator-item {
  width: 16px;
  height: 16px;
  margin-bottom: 16px;
}
.carousel img {
  position: absolute;
}
/**** modal ****/
.modal {
  z-index: 10000 !important;
  max-height: 85% !important;
}
.modal .modal-content {
  padding: 12px;
}
.modal-footer:empty {
  display: none !important;
}
@media only screen and (max-width: 992px) {
  .modal {
    width: 90% !important;
  }
}
main .collection {
  border: 1px solid #e0e0e0;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08) !important;
}
main .collection .badge {
  background: none;
  color: #3e4e5b !important;
  min-width: auto;
  font-weight: 600;
}
main .collection a {
  font-family: 'Exo 2';
  font-weight: 600;
  text-transform: uppercase;
  border: 0 !important;
  color: #3e4e5b !important;
}
main .collection a:hover {
  color: rgb(33, 150, 243) !important;
  background-color: #e3e7eb !important;
}
main .collection a:hover .badge {
  color: rgb(33, 150, 243) !important;
}
/**** images preloader ****/
.imageLoader::before,
.profile-cover-wrapper::before,
.offer .offer-image::before {
  content: url('data:image/png;base64,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');
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 34px;
  height: 44px;
  animation: pulse 1s infinite linear;
  filter: grayscale(1);
  opacity: .3;
}
#offers {
  position: relative;
}
#smart-vendor-box {
  display: none;
  opacity: 0;
  position: fixed;
  top: -150px;
  z-index: 100;
  background-color: var(--color-blue);
  color: var(--color-offer-background);
  font-weight: 700;
  padding: 5px;
  margin: 0.75em;
  border-radius: 3px;
}
#smart-vendor-box .notification {
  line-height: 1.2;
}
#smart-vendor-box .close-button {
  cursor: pointer;
  position: absolute;
  line-height: 1;
  top: 8px;
  right: 8px;
}
.offer-list-switcher div {
  padding: 4px 8px;
}
.offer-list-switcher div.active a {
  color: #fff !important;
}
@keyframes pulse {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(0.5);
  }
  75% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(.5);
  }
}
.offer {
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08) !important;
  border-radius: 2px;
  position: relative;
  z-index: 0;
  width: 100%;
  display: inline-flex;
  transition: box-shadow 0.3s;
  margin-bottom: 20px;
}
.offer:hover {
  box-shadow: 0px 0px 32px rgba(0, 0, 0, 0.16);
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3) !important;
  transform: scale(1)
}
.offer .offer-image {
  background-color: #f3f3f3;
  width: 214px;
  height: 160px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  border-right: 1px solid #e0e0e0;
}
.offer .offer-image .four-by-three.aspect-ratio {
  display: none;
}
.offer .offer-image img {
  position: absolute;
  display: block;
  width: 214px;
  height: 160px;
}
.offer .offer-image .badge {
  position: absolute;
  z-index: 3;
  transform: rotateZ(-45deg) translateX(-30px) translateY(-15px);
  width: 110px;
  left: 0px !important;
  top: 0px !important;
  margin: 0px !important;
}
.offer .offer-content {
  padding: 16px;
  width: calc(100% - 214px);
  display: grid;
}
.offer .offer-box-info {
  display: flex;
  justify-content: space-between;
}
.offer .offer-title {
  font-family: 'Exo 2';
  overflow: hidden;
  max-height: 43px;
  word-break: break-word;
}
.offer .offer-title a {
  color: #263238;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
}
.offer .offer-title a:hover {
  opacity: .8;
}
.offer .offer-breadcrumbs {
  white-space: nowrap;
  font-size: 13px;
  margin-top: 3px;
  color: #ccc;
}
.offer .offer-breadcrumbs a {
  color: #888;
}
.offer .offer-breadcrumbs a:hover {
  color: #777;
}
.offer .offer-box-feedback {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
}
.offer .offer-box-feedback .left-box,
.offer .offer-box-feedback .right-box {
  display: flex;
  align-items: center;
}
.offer .offer-box-feedback .badges-wrapper {
  width: 160px;
}
.offer .offer-box-feedback .badges {
  display: flex;
}
.offer .offer-box-feedback .badges img {
  height: 24px;
  margin-right: 3px;
}
.offer .offer-box-feedback .account-stars {
  margin-top: -5px;
  margin-bottom: -5px;
  font-size: 16px;
}
.offer .offer-box-feedback .feedback-procent {
  font-size: 24px;
  margin: -5px auto -5px auto;
}
.offer .offer-box-feedback .feedback-text {
  font-size: 12px;
  margin-bottom: 5px;
}
.offer .offer-box-feedback .feedback-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer .offer-box-feedback .feedback-img img {
  width: auto;
  height: 38px;
  margin-right: 5px;
}
.offer .offer-box-right {
  display: flex;
  align-items: flex-start;
}
.offer .offer-price {
  font-size: 34px;
  font-family: 'Exo 2';
  font-weight: 700;
  margin-top: -15px;
}
.offer .promoted {
  background-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.35) !important;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transform: scale(1);
}
.offer-horizontal {
  display: block;
}
.offer-horizontal div {
  border: 0px solid red;
}
.offer-horizontal .offer-content {
  display: block;
  width: 100%;
}
.offer-horizontal .offer-image {
  display: block;
  position: relative;
  overflow: hidden;
  border: 0;
  width: auto;
  height: auto;
}
.offer-horizontal .offer-image .four-by-three.aspect-ratio {
  padding-bottom: 75%;
  display: block;
}
.offer-horizontal .offer-image-frame {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.offer-horizontal .offer-image-frame img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.offer-horizontal .offer-box-info {
  display: block;
  width: 100%;
}
.offer-horizontal .offer-title {
  height: 43px;
}
.offer-horizontal .offer-price {
  margin-top: 0px;
}
.offer-horizontal .offer-box-feedback {
  display: block;
  position: relative;
  z-index: 1000;
  right: 0;
  left: 0;
  transition: bottom 0.3s;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  padding: 16px;
  margin: 12px auto 0;
  opacity: 1;
  bottom: 0px;
}
@media screen and (max-width: 1024px) {
  .offer-horizontal .offer-box-feedback .fa {
    margin-left: 0 !important;
  }
  .offer-horizontal .offer-box-feedback .tooltipped {
    display: block;
  }
  .offer-horizontal .offer-box-feedback div {
    bottom: 15px !important;
  }
}
@media screen and (min-width: 1024px) {
  .offer-horizontal .offer-box-feedback {
    display: block;
    position: absolute;
    z-index: 1000;
    right: 0;
    left: 0;
    transition: bottom 0.3s;
    border: 1px solid #e0e0e0;
    padding: 16px;
    margin: 0px auto;
    opacity: 0;
    bottom: 20px;
  }
  .offer-horizontal:hover .offer-box-feedback {
    display: block;
    background: #fff;
    opacity: 1;
    bottom: 0px;
  }
}
.offer-horizontal .offer-box-feedback .right-box {
  justify-content: center;
  margin-top: 16px;
}
.up-arrow {
  position: relative;
  z-index: 101;
  background: #fff;
  border: 2px solid #e0e0e0;
}
.up-arrow:after, .up-arrow:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.up-arrow:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 16px;
  margin-left: -16px;
}
.up-arrow:before {
  border-color: rgba(224, 224, 224, 0);
  border-bottom-color: #e0e0e0;
  border-width: 17px;
  margin-left: -17px;
}
/**** offer ribbon colors ****/
.ribbon-buy {
  background: var(--color-buy) !important;
}
.ribbon-sell {
  background: var(--color-sell) !important;
}
.ribbon-trade {
  background: var(--color-trade) !important;
}
.ribbon-buy::first-letter,
.ribbon-sell::first-letter,
.ribbon-trade::first-letter {
  text-transform: uppercase;
}
/**** offer promoted offer colors ****/
.colored-background {
  background: var(--color-offer-background) !important;
}
.colored-title {
  color: var(--color-offer-title) !important;
}
.feedback-procent {
  font-size: 24px;
  margin: 8px auto -8px auto;
}
.feedback-img {
  display: flex;
  justify-content: left;
  align-items: center;
}
.feedback-img img {
  width: auto;
  height: 38px;
  margin-right: 5px;
}
.payment-box {
  position: relative;
}
.payment-badge {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 38px;
  transform: translateY(-15%) translateX(50%);
}
/**** offer preview ****/
#offerShowCarousel .carousel-item span.badge {
  position: absolute;
  transform: rotate(-45deg) scale(1.5);
  padding: 1px 50px;
  margin: 0 !important;
  top: 30px;
  left: -20px;
}
.offer-preview .offer-preview-image img {
  width: 100%;
}
#offerShowCarousel {
  height: 100%;
  max-height: 500px;
  max-width: 600px;
}
#offerShowCarousel.carousel .indicators .indicator-item {
  background-color: gray;
}
#offerShowCarousel.carousel .indicators .indicator-item.active {
  background-color: var(--color-blue);
}
#offerShowCarousel.carousel img {
  max-height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.offer-preview .breadcrumb {
  margin-top: -10px;
}
.disabled-link {
  filter: grayscale(100%);
}
.offer-preview h3 {
  font-size: 34px;
}
.offer-preview .badges {
  display: flex;
}
.offer-preview .badges img {
  height: 24px;
  margin-right: 3px;
}
.offer-preview .profile-avatar-wrapper {
  position: relative;
  width: 85px;
  height: 85px;
  overflow: hidden;
}
.offer-preview .profile-avatar-wrapper img {
  width: 100%;
  height: 100%;
}
.offer-preview .profile-avatar-wrapper .status {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  background: #4CAF50;
  border-radius: 50%;
  border: 3px solid #fff;
}
/**** profile preview ****/
.profile-avatar-wrapper.big {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}
.profile-avatar-wrapper .profile-avatar-box {
  max-width: 160px;
  max-height: 100%;
  position: relative;
  margin: 0px auto;
}
.profile-avatar-wrapper.big img {
  width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 50%;
}
.profile-avatar-wrapper .status {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 30px;
  height: 30px;
  background: #4CAF50;
  border-radius: 50%;
  border: 3px solid #fff;
}
.profile-avatar-wrapper #inputAvatarImage {
  opacity: 0;
  width: 160px;
  height: 160px;
  position: absolute;
  cursor: pointer;
}
.profile-preview .badges img {
  height: 38px;
  margin-right: 3px;
}
.profile-preview .feedback-wrapper {
  min-height: 160px;
}
.profile-cover-wrapper {
  width: 100%;
  padding-top: 15%;
  overflow: hidden;
  display: block;
  position: relative;
}
.profile-cover-wrapper #inputCoverImage {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
  z-index: 100;
}
.profile-cover-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.profile-cover-picture img {
  position: relative;
  width: 100%;
  top: 0px;
}
.profile-cover-button {
  position: absolute;
  top: -50px;
  left: 16px;
  z-index: 10;
  transition: top 0.3s;
}
.profile-cover-wrapper:hover .profile-cover-button {
  top: 16px;
}
.collapsible {
  font-family: 'Exo 2';
  font-weight: 600 !important;
}
.collapsible-header {
  display: block;
  padding: 10px 12px;
  color: var(--color-dark-blue) !important;
  text-transform: uppercase;
}
.collapsible-header a {
  color: var(--color-dark-blue);
}
.collapsible-header.active {
  background: #e3e6eb;
  color: #2196F3 !important;
}
.collapsible-header .fa {
  font-size: 16px;
}
.collapsible-body {
  padding: 0;
  background-color: #f5f5f5;
}
.collapsible-body ul li {
  line-height: 44px;
}
.collapsible-body ul li a {
  padding-left: 32px;
  padding-right: 32px;
  display: block;
  color: #98b0c8;
  text-transform: uppercase;
}
.collapsible-body ul li a:hover {
  color: var(--color-blue);
}
.collapsible-body ul li.active a {
  color: var(--color-blue);
}
.account-name > h1 {
  font-size: 1.64rem;
  line-height: 110%;
  margin: .82rem 0 .656rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-name.mobile-text > h1 {
  font-size: 1.25rem;
}
/**** chat ****/
.message-text {
  font-size: 13px;
}
/**** list of games ****/
.games {
  transition: height 0.3s;
}
.game-wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  width: auto;
  height: auto;
}
.game-wrapper::after {
  content: '';
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 5%, transparent);
  width: 100%;
  height: 30%;
  position: absolute;
  z-index: 5;
  bottom: 0;
}
.game-wrapper-ratio {
  padding-bottom: 45%;
  display: block;
}
.game-image,
.game-name,
.game-badge {
  position: absolute;
  z-index: 10;
}
.game-image {
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.game-image img {
  width: 100%;
}
.game-name {
  left: 5px;
  bottom: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.game-badge {
  right: 5px;
  bottom: 5px;
}
.game-button {
  position: absolute;
  top: -50px;
  right: 5px;
  z-index: 10;
  transition: all 0.3s;
}
.game-wrapper:hover .game-button {
  top: 5px;
}
.game-filter a.btn {
  padding-left: 10px;
  padding-right: 10px;
}
/*******************/
.fixed-action-btn.horizontal ul li {
  margin: 0;
}
/********* dropzone *********/
.dropzone .dz-image {
  border-radius: 3px !important;
}
.dropzone .dz-preview .dz-remove {
  background: #F44336 !important;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Exo 2', serif;
  font-weight: 600;
  border-radius: 2px;
  height: 36px;
  line-height: 36px;
  padding: 0 0.9rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
.dropzone .dz-message .fa-plus-circle {
  display: none;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dropzone.dz-started .dz-message {
  position: relative;
  width: 120px;
  height: 156px;
  margin: 16px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  border-radius: 3px !important;
  border: 1px solid rgba(0, 0, 0, 0.14);
}
.dropzone.dz-started .dz-message .dz-default-message {
  display: none;
}
.dropzone.dz-started .dz-message .fa-plus-circle {
  display: block;
}
.dropzone .dz-preview .dz-error-message {
  top: -40px !important;
  width: 200px !important;
  text-align: center;
}
.dropzone .dz-preview .dz-error-message:after {
  top: 50px !important;
  border-bottom: unset !important;
  border-top: 6px solid #be2626;
}
.dropzone .dz-preview .dz-error-mark g {
  fill: #F44336;
}
/**** social media icons ****/
.social-icon {
  margin: 2px !important;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0px solid #fff;
  border-radius: 50%;
  border-radius: 3px;
  font-size: 18px;
  color: #fff !important;
  text-decoration: none;
}
.text-facebook:hover {
  color: #3b5999;
}
.text-twitter:hover {
  color: #55acee;
}
.text-google-plus:hover {
  color: #dd4b39;
}
.text-skype:hover {
  color: #00AFF0;
}
.text-youtube:hover {
  color: #cd201f;
}
.bg-facebook, .bg-facebook-hover:hover {
  background: #3b5999;
}
.bg-twitter, .bg-twitter-hover:hover {
  background: #55acee;
}
.bg-google-plus, .bg-google-hover:hover {
  background: #dd4b39;
}
.bg-skype, .bg-skype-hover:hover {
  background: #00AFF0;
}
.bg-youtube, .bg-youtube-hover:hover {
  background: #cd201f;
}
.bg-teamspeak, .bg-teamspeak-hover:hover {
  background: #445277;
}
.btn-facebook {
  background-color: #3b5998 !important;
}
.btn-facebook:hover, .btn-facebook:active {
  background-color: #2d4373 !important;
}
.btn-twitter {
  background-color: #55acee !important;
}
.btn-twitter:hover, .btn-twitter:active {
  background-color: #2795e9 !important;
}
.btn-google-plus {
  background-color: #dd4b39 !important;
}
.btn-google-plus:hover, .btn-google-plus:active {
  background-color: #c23321 !important;
}
.btn-steam {
  background-color: #171a21 !important;
}
.btn-steam:hover, .btn-steam:active {
  background-color: #060910 !important;
}
.btn-trustpilot {
  background-color: #007a51 !important;
}
.btn-trustpilot:hover, .btn-trustpilot:active {
  background-color: #005830 !important;
}
footer.footer-color,
footer.page-footer .footer-copyright {
  background-color: rgba(0, 0, 0, 0.7) !important;
}
footer img {
  max-width: 100px;
}
.rounded-shadow {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 12px;
}
/**** responsive breakpoints ****/
@media (max-width: 600px) {
  main.my-3 {
    margin-bottom: 0px !important;
  }
  main .container {
    max-width: calc(100%) !important;
    width: 100% !important;
  }
  main .rounded-shadow {
    padding-left: 0px;
    padding-right: 0px;
  }
  h3 {
    font-size: 28px;
  }
  h5 {
    font-size: 18px;
  }
  .details {
    font-size: 12px !important;
  }
  .game-button {
    top: 5px;
  }
  .payment-badge {
    width: 30px;
  }
  .container {
    max-width: 95% !important;
    width: 95% !important;
  }
  .search-box {
    margin-top: 8px;
  }
  .rounded-shadow {
    border-radius: 5px;
    padding: 8px;
  }
  footer {
    text-align: center;
  }
}
@media (min-width: 601px) {
  .container {
    max-width: 90% !important;
    width: 90% !important;
  }
  .search-box {
    margin-top: 8px;
  }
}
@media (min-width: 993px) {
  .container {
    max-width: 85% !important;
    width: 85% !important;
  }
  .search-box {
    margin-top: 0px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 80% !important;
    max-width: 1600px !important;
  }
}
/******************************** cookie *********************************/
#cookies-message {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  width: 100%;
}
/******************************** HELPERS ********************************/
/**** ****/
.reverse {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.hidden {
  display: none;
}
/**** margin and padding ****/
.m-0, .mt-0, .my-0 {
  margin-top: 0px !important;
}
.m-1, .mt-1, .my-1 {
  margin-top: 10px !important;
}
.m-2, .mt-2, .my-2 {
  margin-top: 15px !important;
}
.m-3, .mt-3, .my-3 {
  margin-top: 30px !important;
}
.m-0, .mr-0, .mx-0 {
  margin-right: 0px !important;
}
.m-1, .mr-1, .mx-1 {
  margin-right: 10px !important;
}
.m-2, .mr-2, .mx-2 {
  margin-right: 15px !important;
}
.m-3, .mr-3, .mx-3 {
  margin-right: 30px !important;
}
.m-0, .mb-0, .my-0 {
  margin-bottom: 0px !important;
}
.m-1, .mb-1, .my-1 {
  margin-bottom: 10px !important;
}
.m-2, .mb-2, .my-2 {
  margin-bottom: 15px !important;
}
.m-3, .mb-3, .my-3 {
  margin-bottom: 30px !important;
}
.m-1, .ml-1, .mx-1 {
  margin-left: 10px !important;
}
.m-2, .ml-2, .mx-2 {
  margin-left: 15px !important;
}
.m-3, .ml-3, .mx-3 {
  margin-left: 30px !important;
}
.m-0, .ml-0, .mx-0 {
  margin-left: 0px !important;
}
.p-1, .pt-1, .py-1 {
  padding-top: 10px !important;
}
.p-2, .pt-2, .py-2 {
  padding-top: 15px !important;
}
.p-3, .pt-3, .py-3 {
  padding-top: 30px !important;
}
.p-0, .pt-0, .py-0 {
  padding-top: 0px !important;
}
.p-1, .pr-1, .px-1 {
  padding-right: 10px !important;
}
.p-2, .pr-2, .px-2 {
  padding-right: 15px !important;
}
.p-3, .pr-3, .px-3 {
  padding-right: 30px !important;
}
.p-0, .pr-0, .px-0 {
  padding-right: 0px !important;
}
.p-1, .pb-1, .py-1 {
  padding-bottom: 10px !important;
}
.p-2, .pb-2, .py-2 {
  padding-bottom: 15px !important;
}
.p-3, .pb-3, .py-3 {
  padding-bottom: 30px !important;
}
.p-0, .pb-0, .py-0 {
  padding-bottom: 0px !important;
}
.p-1, .pl-1, .px-1 {
  padding-left: 10px !important;
}
.p-2, .pl-2, .px-2 {
  padding-left: 15px !important;
}
.p-3, .pl-3, .px-3 {
  padding-left: 30px !important;
}
.p-0, .pl-0, .px-0 {
  padding-left: 0px !important;
}
.m-auto {
  margin: auto !important;
  float: none !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
}
/********************/
/**** display, block inline-block ****/
.opacity-0 {
  opacity: 0 !important;
}
/********************/
/**** display, block inline-block ****/
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-end {
  justify-content: flex-end;
}
.align-items-center {
  align-items: center;
}
.text-break {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
/**** radius ****/
.rounded {
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/**** border color ****/
.border-0 {
  border: 0px solid #e0e0e0 !important;
}
.border {
  border: 1px solid #e0e0e0 !important;
}
.border-top, .border-y {
  border-top: 1px solid #e0e0e0 !important;
}
.border-right, .border-x {
  border-right: 1px solid #e0e0e0 !important;
}
.border-bottom, .border-y {
  border-bottom: 1px solid #e0e0e0 !important;
}
.border-left, .border-x {
  border-left: 1px solid #e0e0e0 !important;
}
.border-active {
  border-color: var(--color-blue) !important;
}
/**** text ****/
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-highlighted {
  background: bisque;
}
.nowrap {
  white-space: nowrap;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
/**** width ****/
.w-100 {
  width: 100%;
}
.w-75 {
  width: 75%;
}
.w-50 {
  width: 50%;
}
.w-33 {
  width: 33%;
}
.w-25 {
  width: 25%;
}
.w-20 {
  width: 20%;
}
.h-100 {
  height: 100%;
}
.h-75 {
  height: 75%;
}
.h-50 {
  height: 50%;
}
.h-25 {
  height: 25%;
}
/**** jumbotron ****/
.jumbotron {
  background-color: #f5f5f5;
  padding: 16px;
}
/**** scale ****/
.scale-5 {
  transform: scale(0.5);
}
/**** position ****/
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.top-0 {
  top: 0 !important;
}
.right-0 {
  right: 0 !important;
}
.bottom-0 {
  bottom: 0 !important;
}
.left-0 {
  left: 0 !important;
}
/******************************** ********************************/
/**** colors ****/
.yellow {
  background-color: #ffc83d !important
}
/**** box shadow ****/
.box-shadow {
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.08) !important;
}
.box-shadow-hover:hover {
  transition: box-shadow 0.3s;
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.3) !important;
}
/******* selecty zawsze do dołu ********/
.dropdown-content.select-dropdown {
  top: 0px !important;
  max-height: 300px;
}
.category-description ul, .news ul,
.category-description ol, .news ol {
  font-size: 16px;
  padding-left: 30px;
}
.category-description ul > li, .news ul > li {
  list-style-type: circle;
}
/******* ckeditor images *******/
figure.image img {
  max-width: 100%;
  height: auto;
}
/* tiny mceditor */
.tox.tox-tinymce {
  min-height: 500px;
}
/* offer filter buttons */
.collection-item {
  cursor: pointer;
}
.collection-item.filter-category {
  min-height: 36px;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  line-height: 1rem !important;
}
/* offers filter preloader */
.preloader-wrapper {
  margin: 30px auto;
  display: block;
}
/* latest news */
@media screen and (min-width: 992px) {
  .latest-news__row {
    height: 110px;
    overflow: hidden;
    text-overflow: fade;
  }
}
.latest-news__title {
  word-break: break-word;
}
/* tiny mce responsive images */
.responsywny {
  max-width: 100%;
  height: auto;
}
/* footer - popularne */
.footer-popular::after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 1px solid #9e9e9e;
  padding-top: 20px;
}
/**** style tabelki w newsach ****/
.news-table {
  color: #3e4e5b;
}
.news-table tr:nth-child(odd) {
  background: rgb(243, 243, 243);
}
.news-table th {
  background: #3e4e5b;
  color: #fff;
  text-align: left;
  border: none;
}
.news-table td {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.news-table td:first-child {
  border-left: none;
}
.news-table td:last-child {
  border-right: none;
}
.news-table td, th {
  padding: 1em 0.8em;
}
/* bannery */
#mainContent {
  width: calc(100% - 330px);
}
#sideContent {
  width: 330px;
}
@media screen and (max-width: 1200px) {
  #mainContent {
    width: 100%;
  }
  #sideContent {
    width: 100%;
  }
}
#sideBanner {
  position: relative;
  width: 300px;
  min-height: 300px;
  max-height: 600px;
  margin-left: auto;
  margin-right: auto;
}
#sideBanner.fixed {
  position: fixed;
  top: 100px;
  margin-left: 4px;
  margin-right: 4px;
}
#sideBanner.bottom {
  position: absolute;
  bottom: 726px;
  margin-left: 4px;
  margin-right: 4px;
}
#sideBanner a.buy-banner {
  position: absolute;
  bottom: -25px;
  right: 0;
}
#sideBanner ul.indicators,
#wideBanner ul.indicators {
  display: none;
}
#wideBanner {
  overflow: hidden;
  max-width: 970px;
  height: 90px;
}
#buyBannerLink {
  max-width: 970px;
}
.adsbygoogle {
  width: 100%;
  height: 100%;
}
.isMobile #wideBanner {
  width: 300px;
  max-width: 300px;
  height: 300px;
}
.isMobile #buyBannerLink {
  max-width: 970px;
}
