@media (max-width: 1200px) {
  .wrapper {
    min-width: 300px;
  }

  .spacer {
    margin-bottom: 15px;
  }

  h3 {
    font-size: 30px;
    line-height: 36px;
  }

  h4 {
    font-size: 26px;
    line-height: 30px;
  }

  .personalAccountWrapper {
    display: block;
    background: #EEF2FB;
    padding: 10px 15px 50px 15px;
  }

  .sidebarBlock {
    display: none;
  }

  .mobileHeader {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 80px;
  }

  .mobileHeader .mobileOpenMenuIcon {
    width: 41px;
    height: 41px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-box-shadow: 0 20px 40px rgba(206, 206, 224, 0.6);
    -moz-box-shadow: 0 20px 40px rgba(206, 206, 224, 0.6);
    box-shadow: 0 20px 40px rgba(206, 206, 224, 0.6);
    background: url("../images/mobileOpenMenu_icon.svg") 50% 50% no-repeat #fff;
  }

  .mobileHeader .mobileChatIcon a {
    display: block;
    width: 41px;
    height: 41px;
    background: url("../images/mobileChat_icon.svg") left top no-repeat;
  }

  .mobileHeader .userIcon a {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 1px solid #E9F1FB;
    display: block;
    width: 41px;
    height: 41px;
    background: url("../images/user_icon.svg") 50% 50% no-repeat #FFFFFF;
  }

  .mobileSidebarMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    height: 100%;
    background: #fff;
    z-index: 999;
    display: block;
    overflow: auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .mobileMenuShadow.compact {
    display: block !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
  }

  .mobileSidebarMenu.compact {
    -webkit-transform: translateX(-200%);
    -moz-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    -o-transform: translateX(-200%);
    transform: translateX(-200%);
    overflow: hidden;
  }

  .mobileCloseMenuIcon {
    width: 47px;
    height: 47px;
    background: url("../images/mobileCloseMenu_icon.svg") left top no-repeat;
  }

  .mobileSidebarMenu .innerNavBlcok {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 30px 15px;
  }

  .mobileHeadingMenuBLock {
    font-weight: 900;
    font-size: 24px;
    color: #3C4456;
    margin-left: 30px;
  }

  .mobileMenuShadow {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 998;
    background: linear-gradient(90deg, rgba(60, 68, 86, 0.32) 0%, rgba(60, 68, 86, 0) 100%);
    width: 100%;
    height: 100%;
  }

  .mobileSidebarMenu .menuBlock ul {
    margin: 15px 0 0 0;
    padding: 0;
  }

  .mobileSidebarMenu .menuBlock ul li {
    list-style: none;
    padding: 18px 20px;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .mobileSidebarMenu .menuBlock a {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: end;
    align-items: end;
    width: 100%;
  }

  .mobileSidebarMenu .menuBlock a span {
    display: block;
  }

  .mobileSidebarMenu .menuBlock a span.text {
    width: 150px;
    margin-left: 30px;
    font-size: 16px;
    color: #9398A5;
    height: 21px;
    line-height: 21px;
    white-space: nowrap;
  }

  .mobileSidebarMenu .menuBlock svg {
    vertical-align: top;
  }

  .mobileSidebarMenu .menuBlock ul li svg path {
    fill: #AAAFBB;
  }

  .mobileSidebarMenu .menuBlock ul li.active, .sidebarBlock .menuBlock ul li:hover {
    background: #F4F9FF;
  }

  .mobileSidebarMenu .menuBlock ul li.active svg path {
    fill: #3485FF;
  }

  .mobileSidebarMenu .menuBlock ul li.active a .text {
    color: #3485FF;
  }

  .mobileSidebarMenu .menuBlock ul li a .msgCount {
    background: #3485FF;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    padding: 2px 9px;
    position: relative;
  }

  .allContentBlock .contentBlock {
    background: transparent;
    padding: 0;
  }

  .allContentBlock .headerBlock {
    display: none;
  }

  .allContentBlock .headerMobileBlock {
    display: block;
  }

  .headerMobileBlock .headerBlockInner.myAccountBlock {
    margin: 0 0 0 20px;
  }

  .headerMobileBlock .idInfoBlock {
    font-size: 1rem;
    font-weight: 300;
    color: #858fa5;
  }

  .headerMobileBlock .headerBlockInner.myAccountBlock .accSettingsBlock {
    margin-left: auto;
    position: relative;
    left: -10px;
  }

  .headerMobileBlock .moneyBlock, .headerMobileBlock .currenciesBlock {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .headerMobileBlock .moneyBlock svg {
    width: 20px;
    position: relative;
    top: 1px;
    margin-right: 5px;
  }

  .currenciesBlock > div {
    font-size: 16px;
    padding: 0 10px;
  }

  .currenciesBlock > div:last-child {
    border-right: none;
  }

  .apiAlertBLock {
    padding: 20px;
  }

  .apiAlertIcon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    line-height: 44px;
  }

  .apiAlertBLock .text {
    font-size: 14px;
  }

  .refLinkBlock {
    padding: 20px;
  }

  .faqMenuBlock > div {
    padding-right: 0;
  }

  .faqMenuBlock a .heading {
    white-space: nowrap;
  }

  .sAnswerBlock {
    padding: 30px 23px;
  }

  .sAnswerBlock .answer .answerText {
    padding-left: 0;
  }

  .sAnswerBlock .answer .heading {
    font-size: 18px;
    line-height: 24px;
  }

  .sourceContentBlock .col-12 > .row {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    overflow: auto;
    margin-top: 34px;
    padding-bottom: 33px;
    background: url("../images/scroll.gif") right 50% bottom 10px no-repeat;
  }

  .sourceMenuBlock a span {
    white-space: nowrap;
  }

  .changeStatusBlock .formElementBlock .dropdown {
    width: 100% !important;
  }

  .createSourceBLock .upperLayerBlock {
    padding: 24px 27px;
  }

  .statisticsFilterBlock h4 {
    font-size: 20px;
  }

  .statisticsFilterBlock > .inner .upperLayerBlock {
    padding: 22px 20px;
  }

  .lidInfoStatBlock .upperLayerBlock > .row > .col-12 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .lidInfoStatBlock .upperLayerBlock {
    padding: 34px 20px;
  }

  .lidInfoStatBlock .sLidStatBlock:last-child {
    margin-bottom: 0;
  }

  .sNewsBlock > .inner {
    padding: 20px;
    display: block;
  }

  .sNewsBlock .upperLayerBlock > .newsDateBlock {
    display: none;
  }

  .sNewsBlock .mobileFlexBlock {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: 0;
  }

  .sNewsBlock .mainNewsBlock {
    margin-left: 0;
    max-width: 100%;
    -webkit-box: none;
    -moz-box: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }

  .mainNewsBlock .heading {
    margin-left: 20px;
  }

  .mainNewsBlock .text {
    margin-top: 20px;
  }

  .mainNewsBlock .newsDateBlock {
    display: block;
  }

  .flowSettingsBlock .upperLayerBlock,
.trafAlertBlock .upperLayerBlock,
.trafSourceBlock .upperLayerBlock,
.offerCreateContentBlock .newsContentBlock .upperLayerBlock,
.mainProdInfoBlock .upperLayerBlock,
.mainDeductionsBlock .upperLayerBlock,
.addFlowMainInfoBLock .upperLayerBlock,
.mainOfferSettingsBlock .upperLayerBlock,
.bottomOfferSettingsBlock .upperLayerBlock,
.additionalDataTransferBLock .upperLayerBlock,
.lastFlowSettingsBLock .upperLayerBlock,
.standardBlock {
    padding: 30px 20px;
  }

  .mainRulesBlock {
    padding: 20px 20px;
  }

  .trafSourceColumn {
    padding: 0;
  }

  .singleLandingBlock {
    margin-bottom: 30px;
  }

  .offerCreateContentBlock .sNewsBlock > .newsDateBlock {
    display: none;
  }

  .RefContentBlock .relInfoMainBlock + .spacer, .RefContentBlock .relInfoMainBlock + .spacer + .spacer {
    display: none;
  }

  .ticketBlock {
    padding: 10px;
  }

  .ticketChatBlock {
    padding: 10px 20px;
  }

  .ticketMsg {
    max-width: 80%;
  }

  .flowSettingsMenuBlock > .col-12 {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    overflow: auto;
    margin-top: 34px;
    padding-bottom: 33px;
    background: url("../images/scroll.gif") right 50% bottom 10px no-repeat;
  }

  .filterFormBlock .row {
    margin-top: 0;
  }

  .statisticsFilterBlock .formButtonsBlock > .row {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .statisticsFilterBlock .filterFormBlock {
    margin-top: 20px;
  }

  #getPaymentModal .infoBlock {
    margin-bottom: 50px;
  }

  #getPaymentModal .buttonBlock {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .searchOffersResult .countriesBlock, .searchOffersResult .mainOfferStatBlock {
    width: 100%;
    overflow: auto;
  }

  .searchOffersResult .countriesBlock > .row, .searchOffersResult .mainOfferStatBlock > .row2 {
    margin: 0;
    min-width: 310px;
  }

  .mainDeductionContentBlock .prodContentBlock .countriesBlock .sInfoBlock {
    margin-bottom: 10px;
  }

  .mainDeductionContentBlock .callIcon {
    top: 0;
  }

  .prodContentBlock .sInfoBlock .sInfoHeading {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 30px !important;
  }

  .statisticsFilterBlock .btnExcel {
    margin-top: 30px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .lidInfoStatBlock .sLidStatBlock {
    width: 50%;
  }
}
@media (max-width: 359px) {
  .mobileHeader .logo img {
    width: 150px;
  }
}
@media (max-width: 345px) {
  .searchOffersBlock .row3 .btn,
.landingSettingsBlock .buttonsBlock .btn,
.preLandingSettingsBlock .buttonsBlock .btn, .statisticsFilterBlock .formButtonsBlock .btn {
    padding: 0 25px;
  }
}
@media (min-width: 346px) and (max-width: 767px) {
  .landingEnableBlock label {
    display: inline-block;
  }
}
@media (min-width: 768px) and (max-width: 1340px) {
  .searchOffersBlock .row3 .btn {
    padding: 0 25px;
  }
}
@media (max-width: 767px) {
  .indicatorsBlock {
    padding-left: 0;
  }

  .workHoursBlock {
    margin-top: 30px;
  }

  .statisticsFilterBlock .formButtonsBlock {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .statisticsFilterBlock > .inner .upperLayerBlock {
    padding: 22px 20px 90px 20px;
  }

  .statisticsFilterBlock.filterHidden > .inner .upperLayerBlock {
    padding: 22px 20px;
  }

  .paymentInfoBlock > .inner {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -moz-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
  }

  .paymentInfoBlock > .inner > div:first-child {
    display: none;
  }

  .lidInfoStatBlock .sLidStatBlock {
    margin-bottom: 30px;
    width: 100%;
  }

  .resultProduct .row1 .imageBlock {
    max-width: 100% !important;
    text-align: center;
  }

  .offersContentBlock .prodContentBlock .row.row1 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }

  .offersContentBlock .prodContentBlock .row.row1 .col {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }

  .prodContentBlock .prodName {
    width: 100%;
    margin: 20px 0 0 0;
    text-align: center;
  }

  .prodContentBlock .prodName a {
    white-space: normal;
  }

  .prodContentBlock .prodMainInfo {
    margin-left: 0;
    margin-right: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .prodContentBlock .prodSku {
    margin-right: 20px;
  }

  .prodContentBlock .row1 .btnBlock {
    top: 0;
    margin-bottom: 20px;
  }

  .prodContentBlock .hrLine {
    display: none;
  }

  .resultsListBlock .resultProduct {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .prodContentBlock .countriesBlock .sInfoBlock:nth-child(1),
.prodContentBlock .countriesBlock .sInfoBlock:nth-child(2),
.prodContentBlock .countriesBlock .sInfoBlock:nth-child(3) {
    /*@include flex(auto);*/
  }
}
@media (max-width: 575px) {
  #createTicketModal .buttonBlock, #getAccessModal .buttonBlock {
    text-align: center;
    position: absolute;
    bottom: -80px;
    width: 100%;
  }

  #createTicketModal .modal-footer {
    margin-bottom: 30px;
  }

  #createTicketModal .fileInputBlock .btn {
    font-size: 0px;
    background: url(../images/fileBg.svg) center center no-repeat #F2F6FF;
    padding: 0 50px;
  }

  .ticketContentBlock .fileInputBlock .btn {
    font-size: 0px;
    background: url(../images/fileBg.svg) center center no-repeat #F2F6FF;
    padding: 0 40px;
    height: 45px;
    line-height: 45px;
  }

  .ticketContentBlock {
    padding-bottom: 50px;
  }

  .ticketFormBlock .buttonBlock {
    text-align: center;
    position: relative;
    top: 40px;
  }

  .indicatorsBlock, .conditionsBlock {
    padding: 0 15px;
    border: none;
  }

  .conditionsBlock {
    margin-top: 20px;
  }

  .ticketMsg {
    max-width: 100%;
    min-width: auto;
  }
}
@media (max-width: 900px) {
  .lidInfoStatBlock .sLidStatBlock {
    margin-bottom: 30px;
    width: 50%;
  }

  .getPaymentBlock > .inner {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .getPaymentBlock .inner .withShadow {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .lidInfoStatBlock .sLidStatBlock {
    margin-bottom: 30px;
    width: 100%;
  }
}
.col-title-w-160 {
  width: 160px !important;
}

.min-w-70 {
  min-width: 70px;
}

.min-w-80 {
  min-width: 80px;
}

.min-w-90 {
  min-width: 90px;
}

.min-w-100 {
  min-width: 100px;
}

.min-w-110 {
  min-width: 110px;
}

.min-w-120 {
  min-width: 120px;
}

.min-w-130 {
  min-width: 130px;
}

.min-w-140 {
  min-width: 140px;
}

.min-w-150 {
  min-width: 150px;
}

.min-w-160 {
  min-width: 160px;
}

.min-w-170 {
  min-width: 170px;
}

.min-w-180 {
  min-width: 180px;
}

.min-w-190 {
  min-width: 190px;
}

.min-w-200 {
  min-width: 200px;
}

.min-w-210 {
  min-width: 210px;
}

.min-w-220 {
  min-width: 220px;
}

.min-w-230 {
  min-width: 230px;
}

.min-w-240 {
  min-width: 240px;
}

.min-w-250 {
  min-width: 250px;
}

.min-w-260 {
  min-width: 260px;
}

@media (min-width: 576px) {
  .lidInfoStatBlock {
    padding-right: 5px;
  }

  .moneyInfoBlock {
    padding-left: 5px;
  }

  .lidInfoStatBlock_v2 {
    padding-right: 0;
  }

  .moneyInfoBlock_v2 {
    padding-left: 0;
  }
}
@media (min-width: 1515px) {
  .personalManagerNewsBlock {
    margin-top: -170px;
  }

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

  .lidInfoStatBlock_new .personalManagerNewsBlock,
.lidInfoStatBlock_new .personalManagerOffersBlock {
    margin-top: 0;
  }
}
@media (max-width: 1514px) {
  .personalManagerBlock {
    height: auto;
  }
}
@media (min-width: 576px) {
  .lidInfoStatBlock > .inner {
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
  }

  .moneyInfoBlock > .inner {
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
  }
}
@media (max-width: 767px) {
  .lidInfoStatBlock_new .lidInfoStatBlock_v2, .lidInfoStatBlock_new .moneyInfoBlock_v2 {
    margin-top: 15px !important;
  }
}
.bootstrap-select .dropdown-menu {
  max-width: 100% !important;
}

/*# sourceMappingURL=adaptive_lk.css.map */
