@font-face {
  font-family: "proxima";
  src: url("../fonts/ProximaNova-Light.ttf") format("ttf"), url("../fonts/ProximaNova-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Light.woff") format("woff"), url("../fonts/ProximaNova-Light.woff2") format("woff2"), url("../fonts/ProximaNova-Light.svg#OpenSansRegular") format("svg");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "proxima";
  src: url("../fonts/proximanovacond-reg.ttf") format("ttf"), url("../fonts/proximanovacond-reg.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanovacond-reg.woff") format("woff"), url("../fonts/proximanovacond-reg.svg#OpenSansRegular") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "proxima";
  src: url("../fonts/ProximaNova-Semibold.ttf") format("ttf"), url("../fonts/ProximaNova-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova-Semibold.svg#OpenSansRegular") format("svg");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "proxima";
  src: url("../fonts/proximanovacond-bold.ttf") format("ttf"), url("../fonts/proximanovacond-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/proximanovacond-bold.woff") format("woff"), url("../fonts/proximanovacond-bold.woff2") format("woff2"), url("../fonts/proximanovacond-bold.svg#OpenSansRegular") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "proxima";
  src: url("../fonts/ProximaNova-Black.ttf") format("ttf"), url("../fonts/ProximaNova-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNova-Black.woff") format("woff"), url("../fonts/ProximaNova-Black.woff2") format("woff2"), url("../fonts/ProximaNova-Black.svg#OpenSansRegular") format("svg");
  font-weight: 900;
  font-style: normal;
}

html{
  font-family: 'proxima';
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

button, a:hover{
  cursor: pointer;
}

.main{
  position: relative;

  background: #fff;
}

.main__header{
  padding-top: 50px;
  margin-bottom: 100px;
}

.main__title{
  color: #2B1B35;
  font-size: 34px;
  line-height: 44px;
  font-weight: 900;
  text-align: center;
}

.container{
  max-width: 1275px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.main .breadcrumbs{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;

  margin: 0;
  padding: 0;
  list-style: none;
}

.main .breadcrumbs__item{
  margin-right: 30px;
}

.main .breadcrumbs__item:last-child{
  margin-right: 0;
}

.main .breadcrumbs__item:last-child .breadcrumbs__link{
  color: #2B1B35;
  pointer-events: none;
}

.main  .breadcrumbs__link{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;

  color: #A2B6D6;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.882353px;
  text-transform: uppercase;

  transition: 0.5s;
}

.main .breadcrumbs__link:hover{
  transition: 0.5s;
}

.cabinet{
  padding-bottom: 100px;
}

.cabinet__nav{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;

  margin-top: 87px !important;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 100px;
  padding: 0;

  list-style: none;
}

.cabinet__nav-item{
  margin-right: 40px;
  position: relative;
}

.cabinet__nav-item:before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  margin: 0 auto;
  width: 8px;
  height: 8px;
  background: #0049BC;
  border-radius: 50%;

  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.cabinet__nav-item:last-child{
  margin-right: 0;
}

/*.cabinet__nav-item:last-child .cabinet__nav-link{
  color: #D0021B;
}*/

/*.cabinet__nav-item:last-child .cabinet__nav-link:hover{
  color: #000;
}
*/
.cabinet__nav-item.js-current-item .cabinet__nav-link{
  color: #2B1B35;
  transition: 0.5s;
}

.cabinet__nav-item.js-current-item:before{
  opacity: 1;
  transition: 0.5s;
  visibility: visible;
}

.cabinet__nav-link{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;

  position: relative;

  color: #0049BC;
  font-size: 14px;
  transition: 0.5s;
  line-height: 12px;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.cabinet__title{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;

  margin-bottom: 82px;

  color: #2B1B35;
  font-weight: 900;
  font-size: 28px;
  line-height: 44px;
}

.orders__grid{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;

  padding-bottom: 20px;
}

.orders__form-input{
  position: relative;
  z-index: 1;
  width: 129px;
  height: 16px;
  resize: none;
  margin-left: 10px;
  border: 0;
  white-space: nowrap;
  overflow: hidden;
}

.orders__form-input-placeholder{
    position: absolute;
    left: 30px;
    top: 7px;
    z-index: 5;
    font-size: 14px;
    line-height: 15px;
    letter-spacing: 0.5px;
    color: #AAA4AE;
    font-family: 'proxima';
    pointer-events: none;
}

.orders__form-field{
  position: relative;
}

.orders__form-input::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.5px;
  color: #AAA4AE;
  font-family: 'proxima';
}

.orders__form-input::-moz-placeholder {
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.5px;
  color: #AAA4AE;
  font-family: 'proxima';
}

.orders__form-input:-moz-placeholder {
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.5px;
  color: #AAA4AE;
  font-family: 'proxima';
}

.orders__form-input:-ms-input-placeholder {
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.5px;
  color: #AAA4AE;
  font-family: 'proxima';
}

.orders__column{
  width: 22%;
}

.orders__column:last-child{
  width: 12%;
  padding-right: 60px;

  text-align: right;
}

.orders__column-title{
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.5px;
  color: #AAA4AE;

}

.orders__row{
  border-bottom: 1px solid #E9E9E9;
}

.orders-card{
  position: relative;
}

.orders-card__grid{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;

  position: relative;

  padding: 40px 0;
}

.orders-card__grid:hover{
  cursor: pointer;
}

.orders-card__grid:after{
  content: '\f107';

  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;

  position: absolute;
  right: 0;
  top: 0;

  height: 100%;

  font-size: 25px;
  color: #0049BC;
  font-family: 'FontAwesome';
}

.orders-card__grid.is-active:after{
  content: '\f106';
}

.orders-card__column{
  width: 22%;
}

.orders-card__column:last-child{
  width: 12%;
  padding-right: 67px;

  text-align: right;
}

.orders-card__text{
  color: #2B1B35;
  font-size: 20px;
  font-weight: 300;
  line-height: 26px;
    display: block;
    width: 90%;
}

.orders-card__text--bold{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;

  font-weight: 700;
  font-size: 24px;
  line-height: 26px;
}

.orders-card__text--price{
  color: #2B1B35;
  font-weight: 400;
  font-size: 26px;
  line-height: 26px;
  text-transform: uppercase;
}

.orders-card__dropdown{
  padding-top: 55px;
  padding-bottom: 100px;

  display: none;
}

.orders-card__dropdown-inner{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.orders-card__content{
  width: 67%;
  padding-right: 128px;
}

.orders-card__aside{
  width: 33%;
}

.orders-card__table{
  width: 100%;
  margin: 0 -10px;
}

.orders-card__table-column{
  position: relative;

  padding: 0 0 15px 0;

  z-index: 1;
  vertical-align: -webkit-baseline-middle;
}

.orders-card__table-column:nth-child(1){
  min-width: 212px;
}

.orders-card__table-column:nth-child(1):after{
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  width: 100%;
  border-bottom: 1px dotted #B0B0B0;
  z-index: -1;
}

.orders-card__table-text{
  display: inline-block;
  max-width: 480px;

  padding: 0 10px;

  color: #2B1B35;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  background: #fff;
  z-index: 1;
}

.goods{
  margin-top: 76px;
}

.goods__row{
  margin-bottom: 40px;
}

.goods__row:last-child{
  margin-bottom: 0;
}

.goods-card{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}

.goods-card__left{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.goods-card__img{
  max-width: 70px;
  margin-right: 40px;
}

.goods-card__title{
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;

  color: #2B1B35;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  transition: 0.5s;
}

.goods-card__title:hover{
  color: #0049bc;
  transition: 0.5s;
}

.goods-card__right{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.goods-card__price{
  color: #2B1B35;
  font-size: 26px;
  font-weight: 400;
  line-height: 26px;
  text-transform: uppercase;
}

.goods-card__price-old{
  display: block;

  margin-top: 5px;

  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #2B1B35;
  opacity: 0.4;
  margin-right: -2px;
}

.orders-card__total-wiget{
  position: sticky;
  top: 0;
}

.total-wiget{
  padding: 50px 40px 40px 40px;

  background: #F1F6FF;
}

.total-wiget__header{
  padding-bottom: 40px;
  margin-bottom: 40px;

  border-bottom: 1px solid #BBCEF1;
}

.total-wiget__content{
  margin-bottom: 38px;
}

.total-wiget__content .total-wiget__column:first-child .total-wiget__text{
  font-weight: 700;
}

.total-wiget__row{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 30px;
}

.total-wiget__row:last-child{
  margin-bottom: 0;
}

.total-wiget__column{
  width: 70%;
}

.total-wiget__column:last-child{
  width: 30%;
  text-align: right;
}

.total-wiget__text{
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  -ms-align-items: center;
  align-items: center;

  position: relative;
  color: #2B1B35;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
}

.total-wiget__column:last-child .total-wiget__text{
  font-weight: 400;
  font-size: 26px;
  line-height: 20px;
}

.total-wiget__text-icon{
  margin-left: 20px;
}

.total-wiget__text-icon:hover{
  cursor: pointer;
}

.total-wiget__text:hover .total-wiget__text-dropdown{
  opacity: 1;
  visibility: visible;
  transition: 0.1s;
}

.total-wiget__text-dropdown{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;

  position: absolute;
  bottom: 80%;
  left: 100%;

  width: 220px;

  padding: 15px;

  background: #fff;

  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}

.total-wiget__dropdown-text{
  font-size: 16px;
}

.total-wiget__button{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;

  height: 49px;
  min-width: 331px;
  width: 100%;

  margin: 0 auto;
  padding: 0;

  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.2353px;
  text-transform: uppercase;

  color: #fff;
  background: #0049BC;

  border: 0;
  outline: 0;
  border-radius: 25px;
  transition: 0.5s;
}

.total-wiget__button:hover{
  opacity: 0.8;
  transition: 0.5s;
}

#placeholderDiv br{
  display: none;
}

.orders-card__table-text br{
  display: none;
}

.cabinet__tab{
  display: none;
}

.cabinet__tab.js-current-tab{
  display: block;
}

.cabinet__form{
  max-width: 630px;
  margin: 0 auto;
}

.cabinet__form--secondary{
  max-width: 735px;
  margin: 0;
  text-align: left;
}

.cabinet__form--secondary .cabinet__form-footer{
  justify-content: flex-start;
}

.cabinet__form--margin{
  margin-top: 72px;
}

.cabinet__form-header{
  margin-bottom: 77px;
}

.cabinet__form-input{
  width: 100%;
  height: 49px;

  padding: 0 20px;

  transition: 0.5s;
  font-size: 20px !important;
  background: #FFFFFF;
  border: 1px solid #C4C4C4;
  border-radius: 100px;
}

.cabinet__form-input:focus, .cabinet__form-input:active{
	transition: 0.5s;
  border-color: #0049BC;
  box-shadow: 0 0 5px rgba(0, 73, 188, 1);
}

.cabinet__form-input::-webkit-input-placeholder{
  color: #AAA4AE;
  font-weight: 300;
  font-size: 20px;
}

.cabinet__form-input::-moz-placeholder{
  color: #AAA4AE;
  font-weight: 300;
  font-size: 20px;
}
.cabinet__form-input:-moz-placeholder{
  color: #AAA4AE;
  font-weight: 300;
  font-size: 20px;
}

.cabinet__form-input:-ms-input-placeholder{
  color: #AAA4AE;
  font-weight: 300;
  font-size: 20px;
}

.cabinet__form-field{
  position: relative;
  margin-bottom: 55px;
}

.cabinet__form-field:last-child{
  margin-bottom: 0;
}

.cabinet__form-placeholder{
  position: absolute;
  left: 15px;
  top: -25px;

  display: none;

  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.5px;
  color: #AAA4AE;

}

.cabinet__form-footer{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;

  margin-top: 60px;
}

.cabinet__form-button{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;

  width: 226px;
  height: 49px;

  color: #FFFFFF;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.2353px;
  text-transform: uppercase;

  border: 0;
  outline: 0;
  transition: 0.5s;
  background: #0049BC;
  border-radius: 100px;
}

.cabinet__form-button:hover{
  opacity: 0.8;
  transition: 0.5s;
}

.details__button{
  font-weight: 400;
}

.signup{
  margin-top: 87px;
}

.details .form{
  width: 735px;

  text-align: left;
}

.form__details{
  position: relative;
  margin-bottom: 55px;
}

.details__list{
    column-count: 2;
    width: 340px;
    column-gap: 10px;
}

.details__text{
  font-family: Proxima Nova;
  font-size: 20px;
  line-height: 32px;

  color: #2B1B35;
}

.details__info{
  margin-bottom: 60px;
}


.details__table{
  width: 50%;
  margin: 0 -10px;
}

.details__heading{
  margin-top: 100px;
  margin-bottom: 56PX;
  font-family: Proxima Nova;
  font-size: 24px;
  line-height: 26px;

  color: #2B1B35;
}


.details__table-column{
  position: relative;

  padding: 9px 0;

  min-width: 170px;

  z-index: 1;
  vertical-align: -webkit-baseline-middle;
}

.details__table-column:nth-child(1){
  min-width: 170px;
}

.details__table-column:nth-child(1):after{
  content: '';
  position: absolute;
  right: 0;
  top: 32px;
  width: 100%;
  border-bottom: 1px dotted #B0B0B0;
  z-index: -1;
}

.details__table-text{
  display: inline-block;
  max-width: 320px;

  padding: 0 10px;

  color: #2B1B35;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  background: #fff;
  z-index: 1;
}

.details__table-text--label{
  width: 170px;
}

.details-card__table-secundary{
  display: flex;
}

.details__table-column--label:nth-child(1):after{
  top: 64px;
}

.details__table-column--secundary{
  vertical-align: bottom;
}

.detials__title{
  margin-bottom: 30px;

  font-family: Proxima Nova;
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;

  color: #2B1B35;
}

.detials__title--big{
	font-size: 24px;
	margin-bottom: 50px;
}

.details__nav{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;

  margin-top: 35px;
}

.details__link{
  display: block;

  margin-right: 50px;
}

.details__link:last-child{
  margin-right: 0px;
}

.details__link{
  font-family: Proxima Nova;
  font-size: 14px;
  line-height: 12px;
  letter-spacing: 1.35px;
  text-transform: uppercase;
  font-weight: bold;

  color: #0049BC;
}


.jq-checkbox{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
}

.mailing{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
}

.mailing__data{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	position: relative;
	margin-left: 20px;
}

.mailing__data:hover {
	cursor: pointer;
}

.mailing__data:hover .mailing__dropdown{
	opacity: 1;
	visibility: visible;
	transition: 0.2s;
}

.mailing__text{
	font-size: 24px;
	line-height: 24px;
	color: #2B1B35;
    font-weight: lighter;
}

.mailing__icon{
	margin-left: 20px;
}

.cabinet__form-mailing.mailing:hover .jq-checkbox {
    border-color: #0049BC;
}

.mailing__text:hover{
	cursor: pointer;
}

.mailing__dropdown{
	position: absolute;
	left: 100%;
	bottom: 100%;
    font-weight: lighter;
	width: 280px;

	padding: 20px;

	opacity: 0;
	visibility: hidden;
	transition: 0.2s;

	background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 450px ) {
    .mailing__dropdown {
        margin-left: -30px;
    }
}
.cabinet__form-mailing{
	margin-top: 60px;
}

.details__mailing{
  margin-top: 100px;
}

.details__text{
  font-size: 20px;
  line-height: 32px;
  color: #2B1B35;

}

.orders-card__table-label{
	display: block;
}

@media only screen and (max-width: 1200px){
  .total-wiget__button{
    min-width: 100%;
  }

  .orders-card__content{
    padding-right: 70px;
  }

  .orders__column:last-child{
    white-space: nowrap;
  }
}

@media only screen and (max-width: 992px){
  .orders__column:nth-child(3){
    display: none;
  }

  .orders-card__column:nth-child(3){
    display: none;
  }

  .orders{
    margin: 0 -10px;
    padding-left: 70px;
  }

  .orders-card__column:last-child{
    padding-right: 130px;
  }

  .orders-card__grid:after{
    right: 70px;
  }

  .orders-card__column{
    width: 26%;
  }

  .orders-card__column:nth-child(2){
    width: 23%;
  }

  .orders-card__column:nth-child(4){
    width: 18%;
  }

  .orders-card__column:nth-child(5){
    width: 33%;
  }

  .orders__column{
    width: 26%;
  }

  .orders__column:nth-child(2){
    width: 23%;
  }

  .orders__column:nth-child(4){
    width: 18%;
  }

  .orders__column:nth-child(5){
    width: 33%;
  }

  .orders__column:last-child{
    padding-right: 140px;
  }

  .orders__form-input{
    width: 100%;
    padding: 0 30px;
    margin: 0;
  }

  .orders__form-field{
    position: relative;
  }

  .orders__form-field .fa{
    position: absolute;
    left: 0;
    top: 0;
  }

  .orders-card__content{
    padding-right: 0;
    width: 100%;
  }

  .orders-card__aside{
    width: 100%;
    margin-top: 105px;
  }

  .goods {
    margin-top: 44px;
  }

  .orders-card__dropdown-inner{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;

    padding-right: 70px;
  }

  .orders-card__grid{
    max-height: 106px;
    overflow: hidden;
  }

  .orders__form-field .fa{
    z-index: 5;
  }

  .orders__form-input-placeholder{
    top: 2px;
  }

  .details__table{
    width: 100%;
  }

  .cabinet__nav{
  	margin-top: 77px;
  	margin-bottom: 54px;
	margin-left: 33px;
  	width: 100%;
  	overflow-x: scroll;
  	overflow-y: hidden;
	max-width: 100%;
  }

  .cabinet__nav-item{
  	height: 47px;
  	white-space: nowrap;
  }


  .cabinet__container{
  	overflow: hidden;
  }

  .cabinet__nav-item:before{
  	bottom: 0;
  }

  .cabinet__tabs{
    padding: 0 70px;
  }

  .orders{
    padding-left: 0;
    margin-right: -70px;
  }

}

@media only screen and (max-width: 767px){
	.cabinet__nav{
	  	margin-top: 77px;
	  	margin-bottom: 54px;
	  	margin-left: 60px;
	  	width: 100%;
	  	overflow-x: scroll;
	  	overflow-y: hidden;
		max-width: 100%;

		transform:rotate(0deg) translateX(-60px);
	  }

	  .cabinet__nav-item:first-child{
	  	padding-left: 75px;
	  }

	  .cabinet__nav-item:first-child:before{
	  	left: 75px;
	  }

    .cabinet__tabs{
      padding: 0 20px;
    }

    .orders{
      padding-left: 0;
      margin-right: -10px;
    }
}

@media only screen and (max-width: 730px){
  /*.cabinet__nav-item{
    margin-right: 20px;
  }
*/
 /* .cabinet__nav-link{
    font-size: 12px;
  }*/



  .orders{
    margin: 0;
    padding: 0;
  }

  .orders-card__column:last-child {
    padding-right: 35px;
    width: 20%;
  }

  .orders-card__column:nth-child(4) {
    width: 26%;
  }

  .orders-card__column:nth-child(2) {
    width: 27%;
  }

  .orders-card__column:nth-child(4) {
    width: 27%;
  }

  .orders-card__grid:after{
    right: 0;
  }

  .orders__column:last-child {
    padding-right: 35px;
    width: 20%;
  }

  .orders__column:nth-child(4) {
    width: 26%;
  }

  .orders__column:nth-child(2) {
    width: 27%;
  }

  .orders__column:nth-child(4) {
    width: 27%;
  }

  .orders-card__dropdown-inner{
    padding-right: 0;
  }
}

@media only screen and (max-width: 640px){
  /*.cabinet__nav-item {
    margin-right: 15px;
  }

  .cabinet__nav-link {
    font-size: 9px;
  }
*/
  .orders-card__column{
    width: 26.6% !important;
  }

  .orders-card__column:nth-child(5){
    width: 20% !important;
  }

  .orders-card__aside{
    margin-top: 50px;
  }

  .orders-card__text--bold{
    font-size: 18px;
  }

  .orders-card__text{
    font-size: 16px;
  }

  .orders-card__grid{
    max-height: 66px;
    padding: 20px 0;
  }

  .orders-card__dropdown{
    padding-top: 15px;
    padding-bottom: 40px;
  }

  .orders-card__table-text{
    font-size: 16px;
    line-height: 24px;
  }

  .goods-card__title{
    font-size: 14px;
  }

  .goods-card__price{
    font-size: 16px;
  }

  .goods-card__price-old{
    font-size: 14px;
    margin-top: 0;
  }

  .total-wiget__text{
    font-size: 14px;
  }

  .total-wiget__column:last-child .total-wiget__text{
    font-size: 14px;
  }

  .total-wiget__content{
    margin-bottom: 15px;
  }

  .total-wiget__row{
    margin-bottom: 15px;
  }

  .total-wiget__header{
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .total-wiget{
    padding: 20px 20px 28px 20px;
  }

  .cabinet{
    padding-bottom: 60px;
  }

  .orders__form-input{
    padding: 0 10px 0 20px;
  }

  .cabinet__form-field{
    margin-bottom: 40px;
  }

  .cabinet__form-footer{
    margin-top: 40px;
  }

  .cabinet__form-input{
    height: 40px;
  }

  .cabinet__form-input::-webkit-input-placeholder{
    color: #AAA4AE;
    font-weight: 100;
    font-size: 18px;
  }

  .cabinet__form-input::-moz-placeholder{
    color: #AAA4AE;
    font-weight: 100;
    font-size: 18px;
  }
  .cabinet__form-input:-moz-placeholder{
    color: #AAA4AE;
    font-weight: 300;
    font-size: 18px;
  }

  .cabinet__form-input:-ms-input-placeholder{
    color: #AAA4AE;
    font-weight: 100;
    font-size: 18px;
  }

  .cabinet__form-mailing {
    margin-top: 40px;
	}

	.mailing__data{
		margin-left: 20px;
	}

	.mailing__icon{
		margin-left: 10px;
	}

	.mailing__text{
		font-size: 14px;
	}

  .details__text{
    font-size: 16px;
    line-height: 24px;
  }

  .cabinet__form-header{
    margin-bottom: 65px !important;
  }

  .cabinet__form-heading{
    font-size: 20px;
  }

  .details__heading{
    font-size: 22px;
  }

   	.cabinet__nav-item:first-child{
	  	padding-left: 232px;
  	}

  	.cabinet__nav-item:first-child:before{
  		left: 232px;
  	}


}

@media only screen and (max-width: 560px){
  .details__table-text {
    font-size: 19px;
  }
}

@media only screen and (max-width: 530px){
  .details__table-text {
    font-size: 18px;
  }

  .details__table-column:nth-child(1) {
    width: 200px;
  }

  .details__table-text--label {
    width: 139px;
  }

  .details__link {
    margin-right: 30px;
  }

  .details__heading{
    margin-top: 60px;
  }
}

@media only screen and (max-width: 500px){
  #placeholderDiv br{
    display: block;
  }

  .orders__form-input{
    padding: 0 10px 0 30px;
  }

  .orders__form-input-placeholder {
    top: -7px;
  }
}

@media only screen and (max-width: 498px){
  .details__table-column:nth-child(1) {
    width: 175px;
  }

  .detials__title{
    font-size: 17px;
  }

  .detials__title{
    margin-bottom: 20px;
  }

  .details__heading{
    margin-bottom: 40px;

    font-size: 20px;
  }

  .details__table-text{
    line-height: 24px;
  }

  .details__table-column:after{
    top: 27px !important;
  }

  .details__table-column--label:after{
    top: 50px !important;
  }
}

@media only screen and (max-width: 480px){

  .orders-card__column:nth-child(4){
    display: none;
  }

  .main__breadcrumbs{
    display: none;
  }

  .main__header{
    margin-bottom: 40px;
    padding-top: 20px;
  }

  .cabinet__tabs{
    padding: 0 10px;
  }

  .orders{
    padding-left: 0;
    margin-right: 0px;
  }

  .cabinet__nav{
    margin-left: 70px;
  }

  .orders-card__column:nth-child(1){
    width: 40% !important;
  }

  .orders-card__column:nth-child(2){
    width: 34% !important;
  }

  .orders-card__column:nth-child(5) {
    width: 26% !important;
  }

  .orders__column:nth-child(4){
    display: none;
  }

  .orders__column:nth-child(1){
    width: 40% !important;
    padding-right: 5px;
  }

  .orders__column:nth-child(2){
    width: 34% !important;
  }

  .orders__column:nth-child(5) {
    width: 26% !important;
  }

  .orders__form-field .fa{
    background: #fff;
  }

  .orders-card__table-column:nth-child(1) {
    min-width: 130px;
  }

  .orders-card__table-label{
    display: block;
  }

  .orders-card__table-text br{
    display: block;
  }

  .orders-card__table-row:last-child .orders-card__table-column{
    vertical-align: sub;
  }

  .orders-card__table-row:last-child .orders-card__table-column:nth-child(1):after{
    top: auto;
    bottom: 20px;
  }

  .goods-card{
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;

    position: relative;

    padding-left: 110px;

    min-height: 70px;
  }

  .goods-card__right{
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -ms-align-items: center;
    align-items: center;
  }

  .goods-card__price{
    font-weight: 400;
    margin-top: 0px;
  }

  .goods-card__right{
    margin-top: 10px;
  }

  .goods-card__price-old{
    margin-left: 10px;
  }

  .goods-card__img{
    position: absolute;
    left: 0;
    top: 0;
  }

  .cabinet__nav-link{
    text-align: center;
  }

  .cabinet__title{
    margin-bottom: 60px;
  }

  .cabinet__form-button{
    font-size: 14px;
    width: 100%;
  }

  .details__mailing{
    margin-top: 60px;
  }

  .cabinet__nav-item{
  	margin-right: 20px;
  }

  .cabinet__nav-item:first-child {
    padding-left: 280px;
	}

	.cabinet__nav-item:first-child:before {
    	left: 280px;
	}

}



@media only screen and (max-width: 474px){
  .details__table-text {
    font-size: 16px;
  }

  .details__table-text--label {
    width: 127px;
  }

  .details__link {
    margin-right: 25px;

    font-size: 14px;
  }

  .detials__title{
    font-size: 16px;
  }

  .cabinet__form-heading{
    font-size: 18px;
  }
}

@media only screen and (max-width: 474px){

  .details__table-column {
    min-width: 140px;
}

.details__table-column:nth-child(1) {
    width: 140px;
}

}


@media only screen and (max-width: 454px){
  .details__nav{
    display: flex;
    flex-direction: column;
  }

  .details__link {
    margin: 0 0 40px 0;
  }

  .details__link:nth-child(2){
    margin-bottom: 0;
  }


}


@media only screen and (max-width: 446px){


  .detials__title{
    font-size: 15px;
  }
}

@media only screen and (max-width: 400px){

  .details__table-column {
    min-width: 125px;
  }

  .details__table-column:nth-child(1) {
      width: 125px;
  }

  .details__table-text--label {
      width: 120px;
      padding-right: 0;
  }

  .detials__title{
      font-size: 14px;
    }

    .detials__title{
      margin-bottom: 15px;
    }

     .details__heading{
      font-size: 18px;
    }

    .details__heading{
      margin-bottom: 30px;

    }

}


@media only screen and (max-width: 395px){
  .details__table-text {
    font-size: 15px;
  }
}

@media only screen and (max-width: 390px){
  .details__nav {

    margin-top: 35px;
}
}

.main ul li:after {
  content: none;
}

.main .errorlist li {
  color: #e74c3c;
}
