/*************************
* RESET
*************************/

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* select::-ms-expand {
    display: none;
} */

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

body *::-webkit-scrollbar {
  width: 0px;
  /* Remove scrollbar space */
  background: transparent;
  /* Optional: just make scrollbar invisible */
  height: 0px;
}

body * {
  -ms-overflow-style: none;
}

input,
select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  text-decoration: none;
  color: black;
}

@font-face {
  font-family: 'ProximaNova';
  src: url("/fonts/ProximaNova-Bold.otf");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'ProximaNova';
  src: url("/fonts/ProximaNova-Semibold.otf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'ProximaNova';
  src: url("/fonts/ProximaNova-Regular.otf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'ProximaNova';
  src: url("/fonts/ProximaNova-Light.otf");
  font-weight: 300;
  font-style: normal;
}

/*****************
* FONTS
*****************/

/*****************
* COLORS
*****************/

/*************************
* FORM CONTROLS
*************************/

::-webkit-input-placeholder {
  color: #C9C9C9;
  font-size: 20px;
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
}

::-moz-placeholder {
  color: #C9C9C9;
  font-size: 20px;
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: #C9C9C9;
  font-size: 20px;
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
}

::placeholder {
  color: #C9C9C9;
  font-size: 20px;
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

button {
  padding: 16px 18px;
  border-radius: 5px;
  font-family: "ProximaNova", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

button.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: transparent;
  background: transparent;
}

button:hover {
  opacity: .8;
}

button.disabled {
  opacity: .4;
}

.btn-primary {
  background-color: #075370;
  border: solid 1px #075370;
  font-size: 20px;
  color: white;
  width: 100%;
  margin-top: 16px;
}

.btn-secondary {
  background-color: white;
  border: solid 1px white;
  font-size: 20px;
  color: #075370;
  width: 100%;
  margin-top: 16px;
}

input[type="text"],
select,
textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  background-color: white;
  border: solid 1px #707070;
  font-size: 20px;
  color: #080808;
  caret-color: #080808;
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
}

.input:disabled,
select:disabled,
textarea:disabled {
  opacity: .3;
  cursor: not-allowed;
}

input[type="text"]:focus,
input[type="text"]:hover,
select:focus,
select:hover {
  border-color: #075370;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
}

select {
  background-image: url("/img/blue_arrow_down.svg");
  background-repeat: no-repeat;
  background-position: 98%;
}

textarea {
  height: 144px;
  resize: none;
}

.form-group {
  padding-bottom: 16px;
  position: relative;
}

.input-error {
  color: #f66;
  font-style: italic;
  display: block;
  margin-top: 5px;
}

.input-success {
  color: #016145;
  font-style: italic;
  display: block;
}

.input {
  width: 100%;
  position: relative;
  display: inline-block;
  line-height: 1;
  color: #C9C9C9;
  font-size: 20px;
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
}

/* Input, Textarea */

.input > input,
.input > textarea {
  padding: 16px 18px;
  width: 100%;
  border-radius: 5px;
  background-color: white;
  border: solid 1px #707070;
  font-size: 20px;
  color: #080808;
  caret-color: #080808;
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
  height: inherit;
  line-height: inherit;
}

.input > textarea {
  height: 144px;
}

.input.on-error > input,
.input.on-error > textarea {
  border-color: #f66;
}

.input.on-error > input:not(:focus):placeholder-shown,
.input.on-error > textarea:not(:focus):placeholder-shown {
  border-top-color: #f66;
}

.input.on-error > input + span::before,
.input.on-error > input + span::after {
  border-top-color: #f66;
}

/* Span */

.input > input + span,
.input > textarea + span {
  position: absolute;
  top: -6px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-color: #707070;
  max-height: 100%;
  font-size: 64%;
  cursor: text;
  background: white;
  -webkit-transition: top 0.2s,font-size 0.2s;
  transition: top 0.2s,font-size 0.2s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 300;
  padding-right: 2px;
  padding-left: 2px;
  border-radius: 13px;
}

/* Hover */

.input:hover > input,
.input:hover > textarea {
  border-color: #075370;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
}

.input:hover > input + span::before,
.input:hover > textarea + span::before,
.input:hover > input + span::after,
.input:hover > textarea + span::after {
  border-top-color: #075370;
}

.input:hover > input:not(:focus):placeholder-shown,
.input:hover > textarea:not(:focus):placeholder-shown {
  border-color: #075370;
}

/* Placeholder-shown */

.input > input:not(:focus):placeholder-shown,
.input > textarea:not(:focus):placeholder-shown {
  border-top-color: #707070;
}

.input > input:not(:focus):placeholder-shown + span,
.input > textarea:not(:focus):placeholder-shown + span {
  font-size: inherit;
  top: 0px;
  left: 10px;
  width: 100%;
  height: 100%;
  background: transparent;
}

.input > textarea:not(:focus):placeholder-shown + span {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 16px;
}

/* Focus */

.input > input:focus,
.input > textarea:focus {
  border-color: #075370;
  -webkit-box-shadow: 0px 3px 6px #00000029;
          box-shadow: 0px 3px 6px #00000029;
}

.input > input:focus + span,
.input > textarea:focus + span {
  color: #075370;
}

.input > input:focus + span::before,
.input > input:focus + span::after,
.input > textarea:focus + span::before,
.input > textarea:focus + span::after {
  border-top-color: #075370 !important;
}

.input > input:focus + span::before,
.input > textarea:focus + span::before {
  border-top-left-radius: 5px;
}

.input > input:focus + span::after,
.input > textarea:focus + span::after {
  border-top-right-radius: 5px;
}

/* Disabled */

.input > input:disabled,
.input > input:disabled + span,
.input > textarea:disabled,
.input > textarea:disabled + span {
  pointer-events: none;
}

/* Faster transition in Safari for less noticable fractional font-size issue */

@media not all and (min-resolution: 0.001dpcm) {
@supports (-webkit-appearance: none) {
    .input > input,
    .input > input + span,
    .input > textarea,
    .input > textarea + span,
    .input > input + span::before,
    .input > input + span::after,
    .input > textarea + span::before,
    .input > textarea + span::after {
      -webkit-transition-duration: 0.1s;
              transition-duration: 0.1s;
    }
}
}

.input-radio-box {
  opacity: 0;
  height: 0;
  width: 0;
}

.label-radio-box {
  height: 32px;
  width: 32px;
  border: solid 1px #707070;
  border-radius: 50%;
}

.input-radio-box:checked + .label-radio-box {
  background-position: center;
  background-image: url("/img/white_check.svg");
}

.checkbox-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox-inline label {
  margin-left: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.checkbox-inline .checkbox {
  height: 25px;
  width: 25px;
  border: solid 1px #707070;
  background-color: white;
  border-radius: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.checkbox-inline .checkbox:checked {
  background-image: url("/img/common_checkbox.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
}

@media screen and (max-width: 767px) {
  input[type="text"],
  select,
  textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  .input {
    font-size: 16px;
  }

  .input > input,
  .input > textarea {
    padding: 14px 16px;
    font-size: 16px;
  }

  /* Span */

  .input > input + span,
  .input > textarea + span {
    font-size: 75%;
  }

  .label-radio-box {
    height: 21px;
    width: 21px;
    background-size: 20px;
  }

  .checkbox-inline label {
    font-size: 14px;
  }

  button {
    padding: 14px 16px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    margin-top: 0;
  }
}

/*****************
* FONTS
*****************/

/*****************
* COLORS
*****************/

.thank-you {
  text-align: center;
  margin-top: 60px;
}

.thank-you h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
  margin-bottom: 22px;
}

.thank-you .order-number {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  color: #707070;
  margin-bottom: 19px;
}

.thank-you .email-txt {
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  color: #707070;
  margin-bottom: 26px;
}

.thank-you .box {
  max-width: 478px;
  padding: 16px 16px 41px 16px;
  background-color: white;
  margin: 0 auto 10px auto;
  border: solid 2px #075370;
  border-radius: 5px;
}

.thank-you .detail-txt {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: #075370;
  margin-bottom: 30px;
}

.thank-you .top {
  border-bottom: solid 1px #E5E5E5;
  padding-bottom: 15px;
}

.thank-you .month {
  font-size: 33px;
  line-height: 1.2;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  font-family: "ProximaNova", sans-serif;
}

.thank-you .pulications {
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  color: #000000;
  margin-bottom: 8px;
  font-family: "ProximaNova", sans-serif;
}

.thank-you .start-date {
  font-size: 21px;
  line-height: 25px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 13px;
  font-family: "ProximaNova", sans-serif;
}

.thank-you .auto-renew {
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #000000;
  margin-bottom: 13px;
}

.thank-you .price {
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
  margin-top: 20px;
  font-family: "ProximaNova", sans-serif;
}

.thank-you .card-info {
  font-size: 15px;
  line-height: 1;
  font-weight: 300;
  color: #000000;
  margin-bottom: 13px;
  font-family: "ProximaNova", sans-serif;
}

.thank-you .saved {
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  color: white;
  margin-bottom: 31px;
  padding: 8px 16px;
  border-radius: 17px;
  background-color: #D00C0C;
  font-family: "ProximaNova", sans-serif;
  display: inline-block;
}

.thank-you .free-gift p {
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
  margin-bottom: 12px;
  font-family: "ProximaNova", sans-serif;
}

.thank-you .free-gift .img {
  width: 103px;
  height: 103px;
  margin: auto;
}

.thank-you .free-gift .img img {
  height: 100%;
}

.thank-you .free-gift .gift-fields {
  margin-top: 15px;
}

.thank-you .free-gift .gift-fields .key {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #707070;
  margin-bottom: 8px;
}

.thank-you .free-gift .gift-fields .value {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #707070;
  margin-bottom: 8px;
}

.thank-you .bottom {
  padding-top: 15px;
  font-family: "ProximaNova", sans-serif;
  margin-bottom: 35px;
}

.thank-you h3 {
  font-size: 19px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.thank-you .gift .name {
  font-size: 19px;
  line-height: 1;
  font-weight: 300;
  color: #000000;
  margin-bottom: 21px;
}

.thank-you .gift .note {
  font-size: 17px;
  line-height: 26px;
  font-weight: 300;
  color: #000000;
  margin-bottom: 37px;
}

.thank-you .delivery > p {
  font-size: 19px;
  line-height: 1;
  font-weight: 300;
  color: #000000;
  margin-bottom: 7px;
}

.thank-you .manage-subscription-btn {
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  color: #075370;
  margin-bottom: 0;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .thank-you {
    padding-bottom: 90px;
  }
}

/*****************
* FONTS
*****************/

/*****************
* COLORS
*****************/

.contact-page {
  max-width: 669px;
  padding: 20px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.contact-page h1 {
  font-size: 37px;
  line-height: 1;
  font-weight: 600;
  color: #075370;
  margin-bottom: 23px;
  text-align: center;
}

.contact-page h2 {
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  color: #075370;
  margin-bottom: 23px;
}

.contact-page p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
  font-family: "ProximaNova", sans-serif;
}

.contact-page .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.contact-page .bg-img-wrp {
  width: 40%;
  position: relative;
}

.contact-page .bg-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: -36px;
  top: -36px;
  left: -36px;
  width: 100%;
}

.contact-page .bg-img.img1 {
  background-image: url("/img/Magazines in mailbox@2x.png");
}

.contact-page .bg-img.img2 {
  background-image: url("/img/a4 2@2x.png");
}

.contact-page .download {
  color: #075370;
  font-size: 21px;
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

@media screen and (max-width: 767px) {
  .contact-page h1 {
    font-size: 27px;
    line-height: 1;
    font-weight: 600;
    color: #075370;
    margin-bottom: 23px;
  }

  .contact-page h2 {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    color: #075370;
    margin-bottom: 23px;
  }

  .contact-page .bg-img-wrp {
    display: none;
  }
}

.modal-wrapper {
  background-color: rgba(124, 133, 142, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal-content {
  max-width: 605px;
  width: 100%;
}

.modal-ex {
  top: 22px;
  position: absolute;
  right: 22px;
  cursor: pointer;
}

.modal-title {
  font-size: 27px;
  line-height: 1;
  font-weight: 600;
  color: black;
  margin-bottom: 13px;
}

/*****************
* FONTS
*****************/

/*****************
* COLORS
*****************/

.signin-container {
  max-width: 524px;
  width: 100%;
  margin: auto;
  margin-top: 135px;
  padding: 0 10px;
}

.signin-container h1 {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
  margin-bottom: 19px;
}

.signin-container h4 {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: #707070;
  margin-bottom: 13px;
}

.signin-container .message {
  background-color: #D2FACF;
  padding: 14px 23px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 30px;
}

.signin-container .go-back {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #075370;
  margin-bottom: 18px;
}

.signin-container .code-sent-to {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  color: #075370;
  margin-bottom: 0;
}

.signin-container .send-new {
  color: #075370;
  font-size: 18px;
  font-weight: 600;
  margin: auto;
  display: block;
}

.signin-container .code-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5px;
}

.signin-container .code-wrp input.border-bottom {
  border-bottom: solid black 1px;
}

.signin-container .code-wrp input {
  background: transparent;
  border-style: none;
  width: 8.33%;
  border-radius: 0;
  font-size: 30px;
  padding: 8px 10px;
}

.signin-container .code-wrp input:focus,
.signin-container .code-wrp input:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*****************
* FONTS
*****************/

/*****************
* COLORS
*****************/

h1.account {
  font-size: 37px;
  line-height: 1;
  font-weight: 600;
  color: #075370;
  margin-bottom: 27px;
}

.account-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.account-wrp .font-light {
  font-weight: 300;
}

.account-wrp .font-semi {
  font-weight: 600;
}

.account-wrp .text-base {
  font-size: 16px;
  line-height: 1.6;
}

.account-wrp .text-med {
  font-size: 19px;
}

.account-wrp .dashboard {
  margin-right: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.account-wrp .dashboard-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
  margin-bottom: 27px;
  padding: 15px 35px 15px 19px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.account-wrp .dashboard-link svg {
  margin-right: 10px;
}

.account-wrp .dashboard-link.router-link-exact-active {
  background-color: #D8E6EA;
  border-radius: 68px;
}

.account-wrp .edit-info {
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  color: #075370;
  margin-bottom: 0;
  cursor: pointer;
}

.card {
  padding: 37px;
  background-color: white;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 6px #00000029;
          box-shadow: 0px 0px 6px #00000029;
  width: 100%;
}

.subscription-card {
  font-family: "ProximaNova", sans-serif;
}

.subscription-card .sub-id-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.subscription-card .active,
.subscription-card .paused,
.subscription-card .inactive,
.subscription-card .canceled {
  padding: 7px 20px;
  border-radius: 67px;
  font-weight: 600;
  font-size: 15px;
}

.subscription-card .active {
  background-color: #D2FACF;
}

.subscription-card .paused {
  background-color: #FAE9CF;
}

.subscription-card .inactive {
  background-color: #E2E2E2;
}

.subscription-card .canceled {
  background-color: #FFE3E3;
}

.subscription-card .sub-id {
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
}

.subscription-card .cycle-details {
  margin: 21px 0;
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 21px;
}

.subscription-card .cycle-details .cycle-details-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscription-card .cycle-details .name {
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.subscription-card .cycle-details .publications {
  font-size: 13px;
  line-height: 1;
  font-weight: 300;
  color: #000000;
  margin-bottom: 8px;
}

.subscription-card .cycle-details .from-to {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0;
}

.subscription-card .cycle-details .sub-renew {
  margin-top: 21px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscription-card .cycle-details .renewes {
  font-weight: 400;
  margin: 0 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscription-card .cycle-details .renewes svg {
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.subscription-card .cycle-details .set-renew {
  color: #075370;
  font-weight: 600;
  cursor: pointer;
}

.subscription-card .cycle-details .sub-ends {
  color: #FF8900;
}

.subscription-card .cycle-details .sub-ended {
  color: #D00C0C;
}

.subscription-card .cycle-details .price {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.subscription-card .cycle-details .saved {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  color: #1FA52E;
  margin-bottom: 0;
}

.subscription-card .gift-fields {
  margin-top: 15px;
}

.subscription-card .gift-fields .key {
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  color: #707070;
  margin-bottom: 8px;
}

.subscription-card .gift-fields .value {
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #707070;
  margin-bottom: 8px;
}

.subscription-card .auto-renew-checkbox {
  width: 50%;
}

.subscription-card .manage {
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
  color: #075370;
  margin-bottom: 0;
  text-align: center;
  display: block;
}

.sub-orders {
  font-family: "ProximaNova", sans-serif;
}

.sub-orders h4 {
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  color: black;
  margin-bottom: 16px;
}

.sub-orders .text-lg {
  font-size: 17px;
}

.sub-orders .text-reg {
  font-size: 15px;
}

.sub-orders .font-600 {
  font-weight: 600;
}

.sub-orders .font-400 {
  font-weight: 400;
}

.sub-orders .line-1-5 {
  line-height: 1.5;
}

.sub-orders .sub-order {
  border-bottom: 1px solid #DEDEDE;
  padding: 21px 0;
}

.sub-orders .sub-order:last-child {
  border-bottom: 0;
}

/***************************
  Base transtions
****************************/

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/***************************
  Fade in transitions
****************************/

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

/*************************
* MAIN
*************************/

body {
  background-color: #F5F9FA;
  min-height: 100vh;
  width: 100vw;
  font-family: "Raleway", sans-serif;
  position: relative;
  padding-bottom: 445px;
}

.container {
  max-width: 1326px;
  padding-left: 44px;
  padding-right: 44px;
  margin: auto;
}

.shadow {
  -webkit-box-shadow: 0px 0px 6px #00000029;
          box-shadow: 0px 0px 6px #00000029;
}

.card {
  -webkit-box-shadow: 0px 0px 6px #00000029;
          box-shadow: 0px 0px 6px #00000029;
  background-color: white;
  border-radius: 5px;
  padding: 36px;
  margin-bottom: 28px;
  position: relative;
}

.height-transition {
  overflow: hidden;
  -webkit-transition: height .1s ease;
  transition: height .1s ease;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.w-full {
  width: 100%;
}

/*************************
* HEADER
*************************/

.tablet-hedaer {
  display: none;
}

.mobile-header {
  display: none;
}

.header,
.account.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 10px;
}

.header .logo {
  width: 217px;
  height: 93px;
}

.header .logo img {
  width: 100%;
  height: 100%;
}

.header a,
.header p {
  font-size: 15px;
  font-weight: 600;
  color: #075370;
  cursor: pointer;
  width: 200px;
  text-align: left;
}

/*************************
* SUBSCRIBE
*************************/

.subscribe-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-shadow: 0px 0px 6px #00000029;
          box-shadow: 0px 0px 6px #00000029;
  border-radius: 5px;
  overflow: hidden;
}

.subscribe-wrapper .right,
.subscribe-wrapper .left {
  width: 50%;
}

.subscribe-wrapper .right {
  padding: 45px;
  padding-top: 0;
  background-color: white;
}

.subscribe-wrapper .left {
  background-color: #075370;
}

.subscribe-wrapper .left .background-img {
  background-image: url("/img/422@2x.png");
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 1820px;
  height: 100%;
}

.subscribe-wrapper .left .background-img .overlay {
  width: 100%;
  height: 100%;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#09628136), color-stop(20%, #0000006C), color-stop(39%, #063E52), to(#075370)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #09628136 0%, #0000006C 20%, #063E52 39%, #075370 100%) 0% 0% no-repeat padding-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subscribe-wrapper .left .background-img .overlay .img-text {
  width: 475px;
  margin-top: 363px;
}

.subscribe-wrapper .left .background-img .overlay .img-text img {
  width: 100%;
  height: 100%;
}

.subscribe-wrapper .left .background-img .overlay .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-top: 30px;
}

.subscribe-wrapper .left .background-img .overlay .logos img {
  width: 201px;
  height: 127px;
}

.subscribe-wrapper .left .background-img .overlay .magazine-img {
  position: relative;
  margin-top: 68px;
  width: 100%;
}

.subscribe-wrapper .left .background-img .overlay .magazine-img img {
  width: 263px;
  position: absolute;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.subscribe-wrapper .left .background-img .overlay .magazine-img .img1 {
  right: 80px;
}

.subscribe-wrapper .left .background-img .overlay .magazine-img .img2 {
  left: 80px;
  top: 81px;
}

.subscribe-wrapper .left .background-img .overlay .magazine-img .img3 {
  right: 106px;
  top: 295px;
}

.subscribe-form {
  padding-top: 45px;
}

.subscribe-form .zip-input {
  margin-bottom: 40px;
}

.subscribe-form .remove-subscription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 19px;
}

.subscribe-form .remove-subscription h2 {
  margin-bottom: 0;
}

.subscribe-form .remove-subscription p {
  font-size: 18px;
  font-weight: 700;
  color: #075370;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.subscribe-form .section {
  padding-bottom: 22px;
  border-bottom: solid 1px #E5E5E5;
}

.subscribe-form h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 19px;
}

.subscribe-form .txt-enter-zip {
  font-size: 18px;
  color: #707070;
  margin-bottom: 23px;
  font-weight: 400;
}

.subscribe-form .subscription-radio-box-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: auto;
  margin-right: -16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.subscription-radio-box {
  min-height: 188px;
  width: calc(33.33% - 16px);
  margin-bottom: 16px;
  margin-right: 16px;
  height: inherit;
  border: solid 1px #707070;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px;
  position: relative;
  cursor: pointer;
}

.subscription-radio-box:first-child:nth-last-child(4),
.subscription-radio-box:first-child:nth-last-child(4) ~ .subscription-radio-box {
  width: calc(50% - 16px);
}

.subscription-radio-box.selected,
.subscription-radio-box:hover {
  border-color: #075370;
  border-width: 2px;
}

.subscription-radio-box:hover {
  background-color: #F4FBFD;
}

.subscription-cycle {
  text-align: center;
  font-family: "ProximaNova", sans-serif;
  margin-top: 17px;
}

.subscription-cycle .months {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.subscription-cycle .publications {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 9px;
}

.subscription-cycle .price {
  font-size: 30px;
  font-weight: 700;
}

.subscription-cycle .amount-saved {
  position: absolute;
  color: white;
  font-size: 17px;
  font-weight: 700;
  width: 113px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #D00C0C;
  border-radius: 17px;
  top: -17px;
  margin: auto;
  left: 0;
  right: 0;
}

.subscribe-later-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 16px;
}

.subscribe-later-date .select-wrap {
  width: 100%;
  -webkit-transition: height .1s ease;
  transition: height .1s ease;
  overflow: hidden;
}

.subscribe-later-date .select-wrap select {
  margin-top: 23px;
}

.select-trigger {
  background-color: #F5F9FA;
  border-radius: 18px;
  padding: 9px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.select-trigger .text {
  font-size: 16px;
  font-weight: 400;
  color: #075370;
  margin: 0 9px 0 11px;
}

.select-trigger .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select-trigger .icon-trigger {
  -webkit-transition: -webkit-transform .1s ease;
  transition: -webkit-transform .1s ease;
  transition: transform .1s ease;
  transition: transform .1s ease, -webkit-transform .1s ease;
}

.subscription-gift {
  margin-top: 20px;
}

.subscription-gift .img {
  height: 117px;
  width: 83px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subscription-gift .img img {
  height: 100%;
}

.subscription-gift .free-text,
.subscription-gift .price {
  font-family: "ProximaNova", sans-serif;
}

.subscription-gift .price-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12px;
  margin-bottom: 8px;
}

.subscription-gift .free-text {
  font-size: 14px;
  color: #075370;
  font-weight: 600;
  margin-right: 5px;
}

.subscription-gift .price {
  font-size: 12px;
  color: #707070;
  font-weight: 300;
  text-decoration: line-through;
}

.subscription-gift h2,
.subscription-gift-information h2,
.subscription-personal-information h2,
.subscription-delivery-information h2,
.subscription-payment h2 {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 13px;
}

.subscription-gift-information {
  padding-top: 20px;
}

.subscription-gift-information .checkbox-inline {
  margin-bottom: 19px;
}

.subscription-delivery-information {
  padding-top: 18px;
}

.subscription-delivery-information .add-subscription {
  font-size: 18px;
  font-weight: 700;
  color: #075370;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.subscription-delivery-information .add-subscription .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.subscription-delivery-information .edit-zip,
.subscription-payment .promo-check {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
  pointer-events: none;
}

.subscription-delivery-information .edit-zip p,
.subscription-payment .promo-check p {
  color: #075370;
  font-size: 17px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: initial;
}

.subscription-payment {
  padding-top: 20px;
}

.subscription-payment h2 {
  margin-top: 20px;
}

/********************
*FOOTER
********************/

.footer {
  background-color: #075370;
  padding: 92px 50px 20px 50px;
  margin-top: 100px;
  position: relative;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.footer .logo-wrp {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  right: 0;
  top: -50px;
  bottom: 0;
  pointer-events: none;
}

.footer .logo {
  width: 224px;
  height: 100px;
}

.footer .logo img {
  width: 100%;
  height: 100%;
}

.footer .contect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .contect::before,
.footer .contect::after {
  content: '';
  display: block;
}

.footer .contect h3 {
  font-size: 25px;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer .contect p,
.footer .contect a {
  font-size: 18px;
  line-height: 25px;
  font-family: "ProximaNova", sans-serif;
  color: #C0C7C9;
  font-weight: 300;
}

.footer .copyright {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 400;
  padding-top: 20px;
  font-family: "ProximaNova", sans-serif;
}

@media screen and (max-width: 1238px) {
  /*************************
    * MAIN
    *************************/

  .container {
    padding: 0;
  }

  .account.container {
    padding-right: 20px;
    padding-left: 20px;
  }

  /*************************
    * HEADER
    *************************/

  .header {
    display: none;
  }

  .account.header {
    padding-left: 40px;
    padding-right: 40px;
  }

  .tablet-hedaer {
    display: block;
  }

  .tablet-hedaer .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 40px;
    padding-right: 40px;
  }

  .tablet-hedaer .header a {
    color: white;
  }

  .tablet-hedaer .img-text {
    margin: 140px auto 10px auto;
    width: 400px;
  }

  .tablet-hedaer .img-text img {
    width: 100%;
  }

  .tablet-hedaer .logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -30px;
  }

  .tablet-hedaer .logos img {
    margin: 0 15px 0 15px;
    width: 147px;
    height: 95px;
  }

  /*******************
    *SUBSCRIPTION
    ********************/

  .subscribe-wrapper {
    -webkit-box-shadow: initial;
            box-shadow: initial;
    margin-top: -70px;
    overflow: initial;
    border-radius: initial;
  }

  .subscribe-wrapper .right {
    -webkit-box-shadow: 0px 0px 6px #00000029;
            box-shadow: 0px 0px 6px #00000029;
    margin: auto;
    border-radius: 15px;
    width: 619px;
  }

  .subscribe-wrapper .left {
    display: none;
  }

  /*******************
    *ACCOUNT
    ********************/

  .signin-container .code-wrp input {
    padding: 8px 4px;
  }

  .account-wrp .dashboard {
    margin-right: 15px;
  }

  .account-wrp .dashboard-link {
    margin-bottom: 18px;
    padding: 11px 24px 11px 14px;
  }

  .subscription-card .cycle-details .cycle-details-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .subscription-card .cycle-details .cycle-details-inner > :first-child {
    margin-bottom: 15px;
  }

  .subscription-card .auto-renew-checkbox {
    width: 100%;
  }

  .subscription-card .auto-renew-checkbox label {
    font-size: 15px;
  }
}

.hamburger-menu {
  position: relative;
}

.hamburger-menu .hamburger-trigger {
  position: relative;
  cursor: pointer;
  margin-bottom: -6px;
}

.hamburger-menu .hamburger-line {
  background-color: #FFFFFF;
  height: 4px;
  width: 33px;
  border-radius: 10px;
  margin-bottom: 6px;
}

.hamburger-menu .drewer-wrp {
  background-color: rgba(0, 0, 0, 0.28);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.hamburger-menu .drewer {
  background-color: white;
  font-size: 20px;
  font-weight: 600;
  color: #075370;
  width: 290px;
  height: 100%;
  padding: 48px 38px;
}

.hamburger-menu .drewer .action {
  margin-bottom: 32px;
  cursor: pointer;
  color: #075370;
  display: block;
}

.hamburger-menu .ex {
  position: absolute;
  cursor: pointer;
  right: 25px;
  top: 28px;
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }

  body {
    padding-bottom: 0;
  }

  .card {
    padding: 20px;
  }

  /*******************
    *HEADER
    ********************/

  .header,
  .tablet-hedaer,
  .account.header {
    display: none;
  }

  .account.mobile-header {
    padding: 10px 23px 30px 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .mobile-header {
    display: block;
  }

  .mobile-header .overlay {
    padding: 10px 23px 30px 23px;
  }

  .mobile-header .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .mobile-header .logo {
    width: 132px;
    height: 57px;
  }

  .mobile-header .logo img {
    width: 100%;
    height: 100%;
  }

  .mobile-header .img-text {
    margin: auto;
    width: 280px;
  }

  .mobile-header .img-text img {
    width: 100%;
  }

  .mobile-header .logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -16px;
  }

  .mobile-header .logos img {
    margin: 0 10px 0 10px;
    width: 87px;
    height: 55px;
  }

  .hamburger-menu {
    position: relative;
  }

  .hamburger-menu .hamburger-trigger {
    position: relative;
    cursor: pointer;
    margin-bottom: -6px;
  }

  .hamburger-menu .hamburger-line {
    background-color: #FFFFFF;
    height: 4px;
    width: 33px;
    border-radius: 10px;
    margin-bottom: 6px;
  }

  .hamburger-menu .drewer-wrp {
    background-color: rgba(0, 0, 0, 0.28);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }

  .hamburger-menu .drewer {
    background-color: white;
    font-size: 20px;
    font-weight: 600;
    color: #075370;
    width: 290px;
    height: 100%;
    padding: 48px 38px;
  }

  .hamburger-menu .drewer .action {
    margin-bottom: 32px;
    cursor: pointer;
    color: #075370;
    display: block;
  }

  .hamburger-menu .ex {
    position: absolute;
    cursor: pointer;
    right: 25px;
    top: 28px;
  }

  /*******************
    *SUBSCRIPTION
    ********************/

  .subscribe-wrapper {
    -webkit-box-shadow: initial;
            box-shadow: initial;
    margin-top: -10px;
  }

  .subscribe-wrapper .right {
    -webkit-box-shadow: 0px 0px 6px #00000029;
            box-shadow: 0px 0px 6px #00000029;
    width: 100%;
    padding: 0 23px 113px 23px;
    border-top-right-radius: 13px;
    border-top-left-radius: 13px;
    border-bottom-right-radius: initial;
    border-bottom-left-radius: initial;
  }

  .subscribe-wrapper .left {
    display: none;
  }

  .subscribe-form {
    padding-top: 29px;
  }

  .subscribe-form .zip-input {
    margin-bottom: 33px;
  }

  .subscribe-form h2 {
    font-size: 19px;
    margin-bottom: 13px;
  }

  .subscribe-form .txt-enter-zip {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .subscribe-form .subscription-radio-box-wrp {
    margin-right: -9px;
    margin-bottom: 8px;
  }

  .subscribe-form .section {
    padding-bottom: 13px;
  }

  .subscription-cycle {
    margin-top: 12px;
  }

  .subscription-cycle .months {
    font-size: 19px;
    margin-bottom: 5px;
  }

  .subscription-cycle .publications {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .subscription-cycle .price {
    font-size: 23px;
  }

  .subscription-cycle .amount-saved {
    width: 83px;
    font-size: 13px;
    height: 25px;
  }

  .subscription-gift h2,
  .subscription-gift-information h2,
  .subscription-personal-information h2,
  .subscription-delivery-information h2,
  .subscription-payment h2 {
    font-size: 19px;
  }

  .subscription-radio-box {
    min-height: 131px;
    width: calc(33.33% - 9px);
    margin-bottom: 9px;
    margin-right: 9px;
    padding: 12px;
  }

  .subscription-radio-box:first-child:nth-last-child(4),
  .subscription-radio-box:first-child:nth-last-child(4) ~ .subscription-radio-box {
    width: calc(50% - 9px);
  }

  .select-trigger {
    border-radius: 38px;
    padding: 14px;
  }

  .select-trigger .text {
    font-size: 13px;
    margin: 0 15px 0 11px;
  }

  .subscription-gift {
    margin-top: 15px;
  }

  .subscription-gift .img {
    height: 84px;
    max-width: 84px;
    margin-bottom: 8px;
  }

  .subscription-delivery-information .add-subscription {
    font-size: 15px;
  }

  .subscription-delivery-information .edit-zip p,
  .subscription-payment .promo-check p {
    font-size: 15px;
  }

  /********************
    *FOOTER
    ********************/

  .footer {
    padding: 84px 18px 18px 18px;
    position: relative;
  }

  .footer .logo {
    width: 172px;
    height: 82px;
  }

  .footer .contect {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer .contect .left {
    margin-bottom: 45px;
  }

  .footer .contect h3 {
    font-size: 18px;
  }

  .footer .contect p,
  .footer .contect a {
    font-size: 15px;
  }

  /********************
    *ACCOUNT
    ********************/

  h1.account {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .account-wrp .dashboard {
    display: none;
  }

  .signin-container h1 {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
  }

  .signin-container h4 {
    font-size: 16px;
  }
}

/************************
*ANIMATIONS
*************************/

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.open-drewer {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
  -webkit-animation-duration: .4s;
          animation-duration: .4s;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.close-drewer {
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
  -webkit-animation-duration: .4s;
          animation-duration: .4s;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes slideInBottom {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInBottom {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideOutBottom {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutBottom {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}

.slideInBottom {
  -webkit-animation-name: slideInBottom;
          animation-name: slideInBottom;
  -webkit-animation-duration: .4s;
          animation-duration: .4s;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.slideOutBottom {
  -webkit-animation-name: slideOutBottom;
          animation-name: slideOutBottom;
  -webkit-animation-duration: .4s;
          animation-duration: .4s;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

