/* COLORS */
.colors {
  color:    #2B2D42; // darker
  color:    #37394F; // dark
  color:    #8D99AE; // grey
  color:    #EDF2F4; // light
  color:    #EF233C; // red
  color:    #EC0868; // redder
}

/* BTN */
.button {
  background-color: #EC0868;
}
.button:active,
.button:focus,
.button:hover {
  background-color: #e61b70;
  color: white;
}
.registerButton {
  margin-top: 40px;
  padding: 40px 20px !important;
  text-align: center;
  border-radius: 4px;
}
.openForm:hover {
  cursor: pointer;
}
.hashTag {
  background-color: #EC0868;
  padding: 2px 4px;
  border-radius: 2px;
  color: white;
}
.backButton {
  position: fixed;
  z-index: 100;
  top: 14%;
  left: 10%;
}

/* HEADER - START */
.header {
  position: relative;
  height: auto;
  background-color: white;
  z-index: 10;
}
.logoInner {
  display: block;
  height: 100%;
  max-width: 300px;
  width: auto;
  margin: 20px 0;
}
.headerMenu {
  line-height: 30px;
  height: auto;
  font-size: 30px;
  margin: 65px auto;
}
.menuInner {
  margin: auto 5%;
  max-width: 90%;
}
.menuInner i {
  font-size: 30px;
}
.addBalance {
  display: block;
  margin-top: -5px;
  line-height: 1;
  font-size: 12px;
  text-align: left;
}
.menuNotifications {
  position: relative;
  margin-right: 20px;
  color: #8D99AE;
  cursor: pointer;
}
.newNotifications {
  position: absolute;
  font-size: 12px;
  background-color: #EC0868;
  line-height: 12px;
  padding: 4px 5px;
  top: -5px;
  border-radius: 3px;
  color: white;
  left: 20px;
}
.notification {
  padding: 10px;
  background-color: #fafbfb;
}
.notification:hover {
  background-color: #f7f8f8;
}
.notificationNotSeen {
  background-color: #fffae7;
}
.notificationNotSeen:hover {
  background-color: #fffce1;
}
.notificationLink {
  background-color: #37394F;
  color: white;
  padding: 3px 7px;
  border-radius: 3px;
  margin-left: 15px;
  font-size: 10px;
}
.notificationLink:hover {
  background-color: #EC0868;
}
.modalNotifications {
  left: auto;
}
.modalNotifications .modal-content {
  padding: 20px;
}
.modalNotifications.bottom-sheet {
  top: 0;
  width: auto;
  max-width: 600px;
}
.modalProbe img {
  border-radius: 4px;
}
.user-view .background:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #2B2D42, #FFFFFF);
  opacity: .6;
}
.user-view .background {
  background: url('../images/entry-bg.jpg') center center;
  width: 100%;
  bottom: 0;
  top: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-size: cover;
}
.tooltipInner {
  max-width: 300px;
  line-height: 1.5;
}
.smallEntry {
  font-size: 14px;
  border-radius: 4px;
  line-height: 1.1;
  margin-bottom: 10px;
  margin-right: 10px;
  position: relative;
  height: 60px;
}
.smallEntry .truncate {
  max-width: 200px;
}
.commentEntry:hover {
  background-color: #EDF2F4;
}
.commentEntry {
  height: auto;
}
.messageEntry {
  height: auto;
  padding: 0;
}
.smallRaceEntry {
  height: 120px;
  margin-right: 20px;
}
.smallEntry img {
  margin: 0 -20px 0 10px;
  height: 60px;
  width: 60px;
}
.smallEntry div {
  padding: 15px 5px;
}
.messageForm div {
  padding: 0;
}
.smallLeftImg {
  margin: 0 10px 0 -12px !important;
  border-radius: 4px 0 0 4px;
}
.smallTopImg {
  border-radius: 0 4px 0 0 !important;
}
.smallBottomImg {
  border-radius: 0 0 4px 0 !important;
}
/* HEADER - END */

/* FORM - START */
.formStatus {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 10px 15px !important;
  text-align: center;
}
.formStatus.error {
  background-color: #EC0868;
  color: white;
}
.formStatus.success {
  background-color: #8D99AE;
  color: #2B2D42;
}
.formStatus.info {
  background-color: black;
  color: white;
}
.formStatus a {
  color: white !important;
}
/* FORM - END */

/* GENERAL - START */
.wrapper {
  z-index: 10;
  position: relative;
  background-color: #f1f1f1;
  overflow: hidden;
}
.wideContainer {
  width: 75%;
  margin-left: 12.5%;
  margin-bottom: 100px;
}
.wrapper > .content {
  padding-bottom: 70px;
}
.wrapper.home > .content {
  padding-bottom: 0;
}
.wrapper.login > .content,
.wrapper.register > .content {
  padding-bottom: 0;
}
.subpage.posts.api .wrapper {
  margin-bottom: 0 !important;
}
.img-bg {
  z-index: 9;
  background-color: #f6f9fc;
}
.buttonContainer {
  position: relative;
  overflow: hidden;
  max-height: 100px;
  -webkit-transition: all .7s; /* Safari */
  transition: all .7s;
  -webkit-transition-delay: .4s; /* Safari */
  transition-delay: .4s;
  z-index: 9;
}
.buttonOverlay {
  position: absolute;
  opacity: 1;
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
}
.buttonIcon {
  position: absolute;
  opacity: 1;
  cursor: default;
  top: 11px;
  right: 15%;
  z-index: 100;
}
.buttonSections {
  background-color: #2B2D42;
  margin-top: -220px;
  max-height: 300px;
  -webkit-transition: all .7s; /* Safari */
  transition: all .7s;
  -webkit-transition-delay: .4s; /* Safari */
  transition-delay: .4s;
}
.buttonContainer:hover {
  max-height: 2000px;
}
.buttonContainer:hover .buttonSections {
  margin-top: 0;
  max-height: 1500px;
}
.buttonContainer:hover .buttonOverlay,
.buttonContainer:hover .buttonIcon {
  opacity: 0;
}
.buttonSectionInner {
  position: relative;
  background-color: #37394F;
  color: #EDF2F4;
  padding: 70px 20px;
  margin: 5%;
  border-radius: 4px;
  overflow: hidden;
}
.buttonSectionRed,
.buttonSectionInner:active,
.buttonSectionInner:focus,
.buttonSectionInner:hover {
  background-color: #EC0868;
  color: #EDF2F4;
  cursor: pointer;
  z-index: 10;
}
.buttonSectionSoon:active,
.buttonSectionSoon:focus,
.buttonSectionSoon:hover {
  background: none;
  color: #EDF2F4;
  cursor: default;
}
.buttonSectionInner:hover .buttonSectionCounter {
  opacity: 0;
}
.buttonSectionSoon .buttonSectionCounter {
  opacity: 0;
}
.buttonSectionSoon:hover .buttonSectionCounter {
  opacity: 1;
}
.buttonSectionImage {
  position: absolute;
  background-size: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .2;
  background-position: center center;
}
.buttonSectionSoon .buttonSectionImage {
  opacity: .2;
}
.buttonSectionUsers {
  background-image: url('../images/userBg.png');
}
.buttonSectionCars {
  background-image: url('../images/carBg.png');
}
.buttonSectionEvents {
  background-image: url('../images/eventBg.png');
}
.buttonSectionGroups {
  background-image: url('../images/groupBg.jpg');
}
.buttonSectionRaces {
  background-image: url('../images/raceBg.jpg');
}
.buttonSectionArticles {
  background-image: url('../images/articleBg.jpg');
}
.buttonSectionText {
  position: relative;
}
.buttonSectionTitle {
  font-size: 24px;
}
.buttonSectionCounter {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 15px;
  font-size: 12px;
  z-index: 5;
  color: #8D99AE;
}
.buttonSectionCounter > strong {
  color: white;
}
.buttonLoader,
.buttonLoader:hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: .7;
  cursor: default;
  background: url('../images/loader.gif') no-repeat white center center;
  background-size: 15px;
}
.bottomImage:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*background-image: linear-gradient(to bottom right,#2B2D42,#FFFFFF);*/
  opacity: .4;
}
.bottomImage {
  /*background: url('../images/tlo.png') 30% 30%;*/
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.4;
  width: 100%;
  bottom: 0;
  top: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  background-size: cover;
}
.regionFilter {
  float: left;
  background-color: #8D99AE;
  color: white;
  padding: 4px 11px;
  margin: 0 10px 10px 0;
  border-radius: 2px;
  cursor: pointer;
}
.regionActive {
  background-color: #EC0868;
}
.ajaxContainer {
  min-height: 500px !important;
}
.ajaxBlocked {
  pointer-events: none;
  opacity: .7;
}
.dropzone {
  border: 2px dashed #8D99AE;
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 20px;
}
.dropzone .dz-message {
   margin: 0;
}
.dropzone .dz-preview {
  width: 30%;
  margin: 0 1.5%;
  min-height: 0;
}
.dropzone .dz-image {
  min-height: 100px;
}
.dropzone .dz-image > img {
  width: 100%;
}
.dropzone .dz-error-mark {
  z-index: 100;
}
.dropzone .dz-preview.dz-image-preview {
  background: none;
}
.dropzone .dz-preview .dz-image {
  border-radius: 2px;
  opacity: .7;
  width: 100%;
  height: auto;
}
.dropzone .dz-preview .dz-progress {
  opacity: .7 !important;
  bottom: 0;
  top: auto;
  height: 15px;
  left: 0;
  margin-left: 0;
  width: 100%;
  -webkit-transform: none;
  border-radius: 0;
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 0;
  height: auto;
  font-size: 14px;
  background: url('../images/dirty-air.jpeg') #000000 center top;
}
.progress {
  background-color: #8D99AE;
}
.sharePopup {
  max-width: 400px;
}
.rulesContainer {
  white-space: pre-line;
}
.copyToClipboard {
  cursor: pointer;
  font-weight: bold;
}
/* GENERAL - END */


/* HOMEPAGE - START */
.homepage .entryImg {
  opacity: 1;
}
/* HOMEPAGE - END */


/* LOGIN - END */
.openPasswordForm {
  line-height: 36px;
  margin-top: 15px;
}
/* LOGIN - END */


/* CARS - START */
.entry {
  line-height: 36px;
  margin-top: 20px;
  border-radius: 4px;
}
.entryImg {
  display: block;
  height: 170px;
  object-fit: cover;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  opacity: .4;
  -webkit-transition: all .4s; /* Safari */
  transition: all .4s;
}
.entry:hover .entryImg {
  opacity: 1;
}
.entryInner {

}
.entryContent {
  padding: 25px 20px !important;
  line-height: 1.5;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.entryTech {
  background-color: #37394F;
  float: left;
  width: 100%;
  padding: 25px 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.entryEvents .entryImg {
  height: auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.carTech {
  background: url('../images/chart.png') #2B2D42 left top 20%;
}
.entryImage {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  max-height: 400px;
  width: auto;
  max-width: 100%;
}
.chipRightImg {
  float: right !important;
  margin: -7px -20px 0 10px !important;
}
/* CARS - END */


/* EVENTS - START */
.eventInfoBg {
  background: url('../images/eventBg.png') #2B2D42 left top 20%;
}
/* EVENTS - END */


/* USERS - START */
.entriesUsers .entryContent {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.userButton {
  opacity: .4;
  -webkit-transition: all .4s; /* Safari */
  transition: all .4s;
}
.userButton:hover {
  opacity: 1;
}
/* USERS - END */


/* RACES - START */
.racesContent {
  position: relative;
}
.entryLeft {
  position: relative;
  padding-right: 0 !important;
}
.entryRight {
  padding-left: 0 !important;
}
.entryLeft .entryImg {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.entryRight .entryImg {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
.entryVS {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 50px;
  right: -35px;
  text-align: center;
  background-color: white;
  border-radius: 50px;
  line-height: 70px;
  z-index: 100;
  font-size: 24px;
  font-weight: bold;
  opacity: 1;
  -webkit-transition: all .4s; /* Safari */
  transition: all .4s;
}
/* RACES - END */


/* GROUPS - START */
.newMessage, .replyMessage, .hideMessage {
  cursor: pointer;
}
#groupMessageFormStatus .formStatus {
  border-radius: 4px 4px 0 0;
}
/* GROUPS - END */


/* NEW STYLES - START */
.btn:active, .btn:focus, .btn:hover, .btn:visited {
  color: white;
}

.network {
  cursor: pointer;
  position: relative;
}
.network.darl-bg {
  cursor: default;
}

.shadow {
  padding: 15px;
  border-radius: 5px;
  margin: 0 0 1.5rem;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.09);
  box-shadow: 0 0 20px 0 rgba(0,0,0,.09);
}

.configurator .shadow {
  font-weight: bold;
}

.shadowNoPad {
  padding: 15px 5px;
  overflow: visible;
}

.configurator .shadow > label {
  font-weight: bold;
}

.configurator .shadow > * {
  font-weight: normal;
}

.configurator .shadow > span,
.configurator .shadow label > span {
  display: block;
  font-weight: 200;
  font-size: 12px;
  line-height: 12px;
}

.input-field label {
  /*top: 0;*/
  font-weight: bold;
}

.input-field.res-mb > input {
  margin-bottom: 0;
}

.selectedNetwork {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  line-height: 10px;
  color: white;
  background-color: #007BEB;
  /*background-color: #156FFB;*/
  padding: 3px 4px;
  border-radius: 2px;
  font-weight: 100;
}

.selectedNetwork .selectedLink {
  display: block;
}

.selectedNetwork .unselectLink {
  display: none;
}

.network:hover .selectedNetwork .selectedLink {
  display: none;
}

.network:hover .selectedNetwork .unselectLink {
  display: block;
}

/*.networkSelected,*/
/*.optionUpdate .shadow {*/
  /*background-color: #fbfbfb;*/
/*}*/

.optionUpdate.networkActive,
.optionUpdate .shadow {
  /*background-color: #fffff4;*/
  background-color: #8D99AE;
  color: white;
}
.optionUpdate .shadow > * {
  color: white;
}

.chips {
  margin-bottom: 0;
}

.chips .input {
  width: 100% !important;
}

.chipsHidden {
  border-bottom: 0;
  margin-bottom: 0;
  box-shadow: 0 1px 0 0 white;
}

.character-counter {
  margin-top: -25px;
}

/*.dropdown-content li {*/
  /*min-height: 10px;*/
/*}*/

/*.dropdown-content li>a, .dropdown-content li>span {*/
  /*font-size: 12px;*/
  /*line-height: 14px;*/
  /*padding: 7px 10px;*/
/*}*/

.summary {
  text-align: left;
  font-weight: normal;
}

.summary .title {
  text-align: right;
  font-weight: bold;
}

.promoPrice,
.discount {
  display: none;
}

/*.price:before {*/
  /*content: "$";*/
  /*font-size: 70%;*/
  /*vertical-align: 4px;*/
/*}*/

.totalPrice {
  font-size: 22px;
  font-weight: bold;
}

.postPriceSection {
  font-size: 12px;
}

.discount:before {
  content: "-";
}

.discount:after {
  content: "%";
}

.facebookAmount {
  position: relative;
}

.targetPopular > div,
.postDiscount > div {
  position: relative;
}

.postDiscount .discount {
  display: block;
  position: absolute;
  top: 40px;
  right: 11px;
  font-size: 10px;
  line-height: 10px;
  color: white;
  background-color: #EC0868;
  padding: 3px 4px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  font-weight: 100;
}

.targetPopular .popular {
  display: block;
  position: absolute;
  top: -5px;
  right: 25px;
  font-size: 10px;
  line-height: 10px;
  color: white;
  background-color: #EC0868;
  padding: 3px 4px;
  border-radius: 2px;
  font-weight: 100;
}

.codeButton {
  background-color: #EC0868;
  width: auto;
  color: white;
  border-radius: 2px;
  font-size: 12px;
  padding: 0 14px;
}

.totalSection,
.promoSection {
  display: inline-block;
  width: auto;
  margin-bottom: 4px;
}

.totalSection {
  margin-right: 11px;
  margin-bottom: 7px;
}

.promoPrices {
  position: relative;
}

.discountPrice {
  text-decoration: line-through;
}

.promoPrice {
  display: inline-block;
  background-color: gold;
  padding: 6px 11px;
  color: black;
}

.promoDiscount {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 10px;
  padding: 2px 4px;
  background-color: #EC0868;
  color: white;
}

.btnSubmit {
  background-color: #EC0868;
  width: auto;
  color: white;
  border-radius: 2px;
  font-size: 15px;
  padding: 7px 14px;
}

.effective.shadow {
  background: linear-gradient(135deg, rgba(169, 6, 75, 0.77), rgba(236, 147, 52, 0.77)), url('../../frontend/images/polygon.png');
  background-size: cover;
  color: white;
}
.experience.shadow {
  background: linear-gradient(135deg, rgba(236, 124, 29, 0.77), rgba(236, 207, 17, 0.77)), url('../../frontend/images/polygon.png');
  background-size: cover;
  color: white;
}
.target.shadow {
  background: linear-gradient(135deg, rgba(204, 201, 22, 0.77), rgba(150, 214, 49, 0.77)), url('../../frontend/images/polygon.png');
  background-size: cover;
  color: white;
}
.global.shadow {
  background: linear-gradient(135deg, rgba(114, 207, 46, 0.77), rgba(54, 196, 66, 0.77)), url('../../frontend/images/polygon.png');
  background-size: cover;
  color: white;
}
.accounts.shadow {
  background: linear-gradient(135deg, rgba(0, 179, 254, 0.77), rgba(109, 71, 217, 0.77)), url('../../frontend/images/polygon.png');
  background-size: cover;
  color: white;
}


@media only screen and (max-width: 600px) {
  .mobileScrollable {
    overflow-x: scroll;
  }

  .mobileScrollable > .col {
    width: 690px !important;
  }

  .mobileScrollable > .col .col {
    width: 220px !important;
    margin-left: 0;
  }

  .api .mobileScrollable {
    overflow-x: hidden;
  }

  .api .mobileScrollable > .col {
    width: 100% !important;
  }

  .api .mobileScrollable > .col .col {
    width: 100% !important;
    margin-left: 0;
  }

  .shadow {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .targetPopular .popular {
    top: 5px;
  }
}

@media only screen and (max-width: 1200px) {
  .selectedNetwork .selectedLink {
    display: none;
  }

  .selectedNetwork .unselectLink {
    display: block;
  }
}

@media only screen and (max-width: 1500px) {
  .wideContainer {
   width: 95%;
   margin-left: 2.5%;
  }
}

@media only screen and (max-width: 1700px) {
  .wideContainer {
   width: 90%;
   margin-left: 5%;
  }
}
/* NEW STYLES - END */





























/* HELPERS */
@font-face {
  font-family: UpalamLite;
  src: url(../fonts/FireyeGF_3_Lite.ttf);
}

@font-face {
  font-family: UpalamBold;
  src: url(../fonts/FireyeGF_3_Bold.ttf);
  font-weight: bold;
}

body {
  font-family: Roboto, sans-serif;
  letter-spacing: 1px;
  background-color: #f6f9fc;
  color: #757780;
  font-weight: 300;
}
body.homepage .buttonContainer {
  max-height: 100%;
  height: auto;
}
body.homepage .buttonSections {
  margin-top: auto;
  max-height: 100%;
}
body.homepage .buttonIcon {
  display: none;
}
/*.container {*/
/*width: 100% !important;*/
/*max-width: 100% !important;*/
/*margin: 0 !important;*/
/*padding: 0 !important;*/
/*}*/
.container .row {
  margin: 0 !important;
}
._flex {
  display: block !important;
}
@media (min-width: 993px) {
  ._flex {
    display: flex !important;
  }
}
.row ._left { position: relative; z-index: 10; }
.row ._right { position: relative; flex: 1; }
.row ._center { position: relative; flex: 1; }

@media (max-width: 600px) {
  .row ._left {
    width: 100%;
    padding: 20px;
  }
  .row ._right {
    width: 100%;
    padding: 20px;
  }
  .row ._left100 {
    width: 100%;
    padding: 10px;
    height: 100px;
  }
  .row ._right100 {
    width: 100%;
    padding: 10px;
    height: 100px;
  }
  .row ._center {
    width: 100%;
    padding: 10%;
  }
  .wrapper {
    margin-bottom: 150px;
  }
  .footer {
    height: 150px;
  }
}
@media (min-width: 600px) {
  .row ._left {
    width: 100%;
    padding: 30px 5%;
  }
  .row ._right {
    width: 100%;
    padding: 30px 5%;
  }
  .row ._left100 {
    width: 100%;
    padding: 15px 5%;
    height: 100px;
  }
  .row ._right100 {
    width: 100%;
    padding: 15px 5%;
    height: 100px;
  }
  .row ._center {
    width: 100%;
    padding: 30px 10%;
  }
  .wrapper {
    margin-bottom: 100px;
  }
  .footer {
    height: 100px;
  }
}
@media (min-width: 993px) {
  .row ._left {
    width: 50%;
    padding: 40px 40px 40px 10%;
  }
  .row ._right {
    width: 50%;
    padding: 40px 10% 40px 40px;
  }
  .row ._left100 {
    width: 50%;
    padding: 20px 20px 20px 10%;
  }
  .row ._right100 {
    width: 50%;
    padding: 20px 10% 20px 20px;
  }
  .row ._center {
    width: 100%;
    padding: 40px 15%;
  }
  .wrapper {
    margin-bottom: 100px;
  }
  .footer {
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .row ._left {
    width: 50%;
    padding: 40px 40px 40px 15%;
  }
  .row ._right {
    width: 50%;
    padding: 40px 15% 40px 40px;
  }
  .row ._left100 {
    width: 50%;
    padding: 20px 20px 20px 15%;
  }
  .row ._right100 {
    width: 50%;
    padding: 20px 15% 20px 20px;
  }
  .row ._center {
    width: 100%;
    padding: 70px 15%;
  }
  .wrapper {
    margin-bottom: 100px;
  }
  .footer {
    height: 100px;
  }
}

.clear {
  clear: both;
}

.darker-bg {
  background-color: #333745;
  color: #757780;
}
.darker-c {
  color: #333745;
}
.dark-bg {
  background-color: #333745 !important;
  color: white !important;
}
.dark-c {
  color: #333745 !important;
}
.grey-bg {
  background-color: #8D99AE;
  color: #2B2D42;
}
.grey-c {
  color: #8D99AE;
}
.light-bg {
  background-color: #f6f9fc;
  color: #2B2D42;
}
.light-c {
  color: #f6f9fc;
}
.white-bg {
  background-color: #FFFFFF;
  color: #2B2D42;
}
.white-c {
  color: #FFFFFF;
}
.red-bg {
  background-color: #e61b70;
  color: #EDF2F4;
}
.red-c {
  color: #e61b70;
}
.redder-bg {
  background-color: #EC0868;
  color: #EDF2F4;
}
.redder-c {
  color: #EC0868;
}
.green-bg {
  background-color: #16b14b;
  color: #EDF2F4;
}
.green-c {
  color: #16b14b;
}

h1 { font-size: 26px; margin: 15px 0; line-height: 1.2; }
h2 { font-size: 22px; margin: 15px 0; line-height: 1.2; }
h3 { font-size: 18px; margin: 10px 0; line-height: 1.1; }
h4 { font-size: 14px; margin: 10px 0; line-height: 1.1; }
h5 { font-size: 12px; margin: 5px 0; line-height: 1; }
h6 { font-size: 10px; margin: 5px 0; line-height: 1; }

a:active,
a:hover,
a:visited {
  color: #EC0868;
}

.lh-1 {
  line-height: 1;
}

.lh-125 {
  line-height: 1.25;
}

.lh-15 {
  line-height: 1.5;
}

.lh-2 {
  line-height: 2;
}

.txt-xxxs { font-size: 10px; }
.txt-xxs { font-size: 12px; }
.txt-xs { font-size: 14px; }
.txt-sm { font-size: 18px; }
.txt-md { font-size: 22px; }
.txt-lg { font-size: 28px; }

.txt-bl {
  text-decoration: underline;
}

.txt-wb {
  font-weight: bold;
}

.txt-wn {
  font-weight: normal;
}

.txt-wl {
  font-weight: lighter;
}

.txt-al {
  text-align: left;
}

.txt-ac {
  text-align: center;
}

.txt-ar {
  text-align: right;
}

.nowrap {
  white-space: nowrap;
}

.dis-n {
  display: none;
}

.dis-b {
  display: block;
}

.dis-ib {
  display: inline-block;
}

.dis-i {
  display: inline;
}

.dis-t {
  display: table;
}

.dis-tc {
  display: table-cell;
}

.dis-if {
  display: inline-flex;
}

.dis-it {
  display: inline-table;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.pos-fix {
  position: fixed;
}

.pos-sta {
  position: static;
}

.pos-t10 {
  top: 10%;
}

.pos-t20 {
  top: 20%;
}

.pos-t30 {
  top: 30%;
}

.pos-t40 {
  top: 40%;
}

.pos-t50 {
  top: 50%;
}

.pos-l10 {
  left: 10%;
}

.pos-l20 {
  left: 20%;
}

.pos-l30 {
  left: 30%;
}

.pos-l40 {
  left: 40%;
}

.pos-l50 {
  left: 50%;
}

.pos-r10 {
  right: 10%;
}

.pos-r20 {
  right: 20%;
}

.pos-r30 {
  right: 30%;
}

.pos-r40 {
  right: 40%;
}

.pos-r50 {
  right: 50%;
}

.pos-b10 {
  bottom: 10%;
}

.pos-b20 {
  bottom: 20%;
}

.pos-b30 {
  bottom: 30%;
}

.pos-b40 {
  bottom: 40%;
}

.pos-b50 {
  bottom: 50%;
}

.fl,
.row .col.fl {
  float: left;
}

.fr,
.row .col.fr {
  float: right;
}

.fn,
.row .col.fn {
  float: none;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.mar-5 {
  margin: 5px;
}

.mar-10 {
  margin: 10px;
}

.mar-15 {
  margin: 15px;
}

.mar-20 {
  margin: 20px;
}

.mar-25 {
  margin: 25px;
}

.mar-30 {
  margin: 30px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.res-mar {
  margin: 0 !important;
}

.res-mt {
  margin-top: 0 !important;
}

.res-ml {
  margin-left: 0 !important;
}

.res-mr {
  margin-right: 0 !important;
}

.res-mb {
  margin-bottom: 0 !important;
}

.pad-5 {
  padding: 5px;
}

.pad-10 {
  padding: 10px;
}

.pad-15 {
  padding: 15px;
}

.pad-20 {
  padding: 20px;
}

.pad-25 {
  padding: 25px;
}

.pad-30 {
  padding: 30px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.res-pad {
  padding: 0 !important;
}

.res-pt {
  padding-top: 0 !important;
}

.res-pl {
  padding-left: 0 !important;
}

.res-pr {
  padding-right: 0 !important;
}

.res-pb {
  padding-bottom: 0 !important;
}

.border-dash-b {
  border-bottom: 1px dashed #7d7d7d;
}

.noBorder {
  border: 0;
}

.noBorderImg {
  border: 0;
  padding: 0;
}

.font-bold {
  font-family: Roboto, sans-serif;
  font-weight: bold;
}

.font-normal {
  font-family: Roboto, sans-serif;
  font-weight: normal;
}

.font-lite {
  font-family: Roboto, sans-serif;
  font-weight: lighter;
}

.upl-bold {
  font-family: UpalamBold, Roboto, sans-serif;
}

.upl-lite {
  font-family: UpalamLite, Roboto, sans-serif;
}

/* ECO PROVINCE */

.eco-province {
  position: relative;
}

img.eco-image {
  position: absolute;
  width: 100%;
  max-width: 200px;
  top: -85px;
  right: -20px;
  -ms-transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}

a.eco-link {
  position: absolute;
  background: white;
  padding: 5px 10px;
  right: -15px;
  top: 0;
  border-radius: 4px;
  box-shadow: 0 0 10px grey;
  opacity: .9;
  cursor: pointer;
}

.slovenButton {
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 20px 10px !important;
  text-align: center;
  margin-bottom: 20px;
}

.eco-province:hover img.eco-image,
.eco-province:hover a.eco-link {
  /*-webkit-filter: grayscale(0);*/
  /*filter: grayscale(0);*/
  opacity: 1;
}

img.not-eco {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 1;
}

@media (max-width: 600px) {
  .eco-province {
    max-width: 175px;
    float: right !important;
    margin-top: -20px;
    margin-right: -30px;
    margin-bottom: -40px;
  }
  img.eco-image {
    position: initial;
    top: -70px;
    right: -20px;
  }
  a.eco-link {
    right: auto;
    left: 15px;
    top: 70px;
    font-size: 10px;
  }
}

/* PACKAGES */
.package {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 3px solid #e8e8e8;
  border-radius: 7px;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 24px;
  text-align: center;
  float: left;
  transition: margin-top 0.5s linear;
  position: relative;
  margin-right: 11px;
  background-color: white;
}
/*.package:hover {*/
  /*margin-top: -30px;*/
  /*transition: margin-top 0.3s linear;*/
/*}*/
.name {
  color: #565656;
  font-weight: 300;
  font-size: 3rem;
  margin-top: -5px;
}
.price {
  margin-top: 7px;
  font-weight: bold;
  font-size: 20px
}
.price::after {
  content: " / miesięcznie";
  font-weight: normal;
}
hr {
  background-color: #dedede;
  border: none;
  height: 1px;
}
.trial {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 2px 21px 2px 21px;
  color: #36c442c4;
  border: 1px solid #e4e4e4;
  display: inline-block;
  border-radius: 15px;
  background-color: white;
  position: relative;
  bottom: -20px;
}
ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 29px;
}
li {
  margin-bottom: 15px;
}
.checkIcon {
  content: "\0000B0";
}
li::before {
  content: "\0000B0";
  font-size: 1.3rem;
  color: #36c442c4;
  margin-right: 3px;
}
.brilliant .name {
  font-weight: bolder;
}
.brilliant {
  border-color: #36c442c4;
  padding-top: 55px;
  margin-top: 0;
  margin-bottom: 0;
}
/* Triangle */
.brilliant::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 48px;
  border-color: #36c442c4;
  border-radius: 0 0 7px 0;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
}
.brilliant::after {
  content: "popularny";
  color: white;
  position: absolute;
  left: 9px;
  top: 6px;
  text-shadow: 0 0 2px #36c442c4;
  font-size: 1rem;
}

/* REQUESTS */
.request {
  position: relative;
}
.paid-request {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 10px;
  padding: 4px 7px;
  border-radius: 0 0 0 7px;
}
.paid .media-icons > img {
  background-color: #333745;
  padding: 2px;
  border-radius: 7px;
}
.paid .added-time {
  color: #333745;
}
.paymentStatus {
   max-width: 700px;
   padding: 10px;
   margin: 0 auto 70px;
   border: 1px dashed grey;
   text-align: center;
   color: mediumseagreen;
   font-weight: bold;
 }

.paymentFailedStatus {
  max-width: 700px;
  padding: 10px;
  margin: 0 auto 70px;
  border: 1px dashed grey;
  text-align: center;
  color: darkred;
  font-weight: bold;
}

.request-offer {
  font-weight: bold !important;
  font-size: 14px !important;
  padding: 14px 0 7px;
}

.request-name {
  background: -webkit-linear-gradient(45deg, #017a27, #36c442);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  width: -moz-fit-content;
}