/* MEDIA MIXIN */
.bg-black {
  background: #000000;
}

.bg-d-gray {
  background: #392F2C;
}

.bg-m-gray {
  background: #D8D6D6;
}

.bg-l-gray {
  background: #B2B3B2;
}

.bg-red {
  background: #F7323F;
}

.bg-d-red {
  background: #dc3545;
}

.bg-white {
  background: #ffffff;
}

.bg-orange {
  background: #FD9623;
}

.bg-grey {
  background: #686868;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: inherit;
  line-height: 21px;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

@supports (-ms-ime-align: auto) {
  body {
    display: block;
  }
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  text-decoration: none;
  cursor: pointer;
}

a:focus {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

button {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-family: "Univers-Regular", Helvetica, Arial, sans-serif;
  line-height: 1;
  margin-bottom: 0;
  padding: 7px 14px;
  text-align: center;
  vertical-align: middle;
  transition: all .2s;
}

button:focus {
  outline: none;
}

input:focus, textarea:focus {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

.loader {
  border: 3px solid #F5AAAF;
  border-radius: 50%;
  border-top: 3px solid #F7323F;
  margin-top: 100px;
  margin-bottom: 250px;
  width: 70px;
  height: 70px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .modal {
    margin-left: 11px;
  }
}

@media (max-width: 768px) {
  .modal {
    margin-left: 4px;
  }
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select,
  textarea,
  input {
    font-size: 16px !important;
  }
}

@font-face {
  font-family: "fontawesome-webfont";
  src: url("../fonts/font-awesomefontawesome-webfont.woff") format("woff"), url("../fonts/font-awesomefontawesome-webfont.ttf") format("truetype"), url("../fonts/font-awesomefontawesome-webfont.svg#fontawesome-webfont") format("svg");
}

@font-face {
  font-family: "Univers-Light";
  src: url("/ivy-assets/dist/fonts/Univers-Light.woff") format("woff"), url("/ivy-assets/dist/fonts/Univers-Light.ttf") format("truetype"), url("/ivy-assets/dist/fonts/Univers-Light.svg#Univers-Light") format("svg");
}

@font-face {
  font-family: "Univers-Regular";
  src: url("/ivy-assets/dist/fonts/Univers-Regular.woff") format("woff"), url("/ivy-assets/dist/fonts/Univers-Regular.ttf") format("truetype"), url("/ivy-assets/dist/fonts/Univers-Regular.svg#Univers-Regular") format("svg");
}

@font-face {
  font-family: "Univers-Bold";
  src: url("/ivy-assets/dist/fonts/Univers-Bold.woff") format("woff"), url("/ivy-assets/dist/fonts/Univers-Bold.ttf") format("truetype"), url("/ivy-assets/dist/fonts/Univers-Bold.svg#Univers-Bold") format("svg");
}

@font-face {
  font-family: "Univers-Condensed";
  src: url("/ivy-assets/dist/fonts/Univers-Condensed.woff") format("woff"), url("/ivy-assets/dist/fonts/Univers-Condensed.ttf") format("truetype"), url("/ivy-assets/dist/fonts/Univers-Condensed.svg#Univers-Condensed") format("svg");
}

@font-face {
  font-family: "Univers-CondensedBold";
  src: url("/ivy-assets/dist/fonts/Univers-CondensedBold.woff") format("woff"), url("/ivy-assets/dist/fonts/Univers-CondensedBold.ttf") format("truetype"), url("/ivy-assets/dist/fonts/Univers-CondensedBold.svg#Univers-CondensedBold") format("svg");
}

@font-face {
  font-family: "Univers-CondensedLight";
  src: url("/ivy-assets/dist/fonts/Univers-CondensedLight.woff") format("woff"), url("/ivy-assets/dist/fonts/Univers-CondensedLight.ttf") format("truetype"), url("/ivy-assets/dist/fonts/Univers-CondensedLight.svg#Univers-CondensedLight") format("svg");
}

h1, h2, h3, h4, h5, h6, p {
  font-family: 'Univers-Regular', sans-serif;
  font-weight: 400;
  margin: 0 0 10.5px 0;
  line-height: initial;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 20px;
}

p {
  font-size: 14px;
}

.ivy-tooltip {
  position: relative;
  display: block;
}

.ivy-tooltip__text {
  color: #ffffff;
  background: #392F2C;
  font-size: 15px;
  padding: 2px 5px;
  border-radius: 2px;
  position: absolute;
  top: -30px;
  left: 0;
  opacity: 0;
  transition: .2s opacity;
}

.ivy-tooltip__text:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #392F2C;
}

.ivy-tooltip:hover .ivy-tooltip__text {
  opacity: 1;
}

.w-100 {
  width: 100%;
}

.w-99 {
  width: 99%;
}

.w-98 {
  width: 98%;
}

.w-97 {
  width: 97%;
}

.w-96 {
  width: 96%;
}

.w-95 {
  width: 95%;
}

.w-94 {
  width: 94%;
}

.w-93 {
  width: 93%;
}

.w-92 {
  width: 92%;
}

.w-91 {
  width: 91%;
}

.w-90 {
  width: 90%;
}

.w-89 {
  width: 89%;
}

.w-88 {
  width: 88%;
}

.w-87 {
  width: 87%;
}

.w-86 {
  width: 86%;
}

.w-85 {
  width: 85%;
}

.w-84 {
  width: 84%;
}

.w-83 {
  width: 83%;
}

.w-82 {
  width: 82%;
}

.w-81 {
  width: 81%;
}

.w-80 {
  width: 80%;
}

.w-79 {
  width: 79%;
}

.w-78 {
  width: 78%;
}

.w-77 {
  width: 77%;
}

.w-76 {
  width: 76%;
}

.w-75 {
  width: 75%;
}

.w-74 {
  width: 74%;
}

.w-73 {
  width: 73%;
}

.w-72 {
  width: 72%;
}

.w-71 {
  width: 71%;
}

.w-70 {
  width: 70%;
}

.w-69 {
  width: 69%;
}

.w-68 {
  width: 68%;
}

.w-67 {
  width: 67%;
}

.w-66 {
  width: 66%;
}

.w-65 {
  width: 65%;
}

.w-64 {
  width: 64%;
}

.w-63 {
  width: 63%;
}

.w-62 {
  width: 62%;
}

.w-61 {
  width: 61%;
}

.w-60 {
  width: 60%;
}

.w-59 {
  width: 59%;
}

.w-58 {
  width: 58%;
}

.w-57 {
  width: 57%;
}

.w-56 {
  width: 56%;
}

.w-55 {
  width: 55%;
}

.w-54 {
  width: 54%;
}

.w-53 {
  width: 53%;
}

.w-52 {
  width: 52%;
}

.w-51 {
  width: 51%;
}

.w-50 {
  width: 50%;
}

.w-49 {
  width: 49%;
}

.w-48 {
  width: 48%;
}

.w-47 {
  width: 47%;
}

.w-46 {
  width: 46%;
}

.w-45 {
  width: 45%;
}

.w-44 {
  width: 44%;
}

.w-43 {
  width: 43%;
}

.w-42 {
  width: 42%;
}

.w-41 {
  width: 41%;
}

.w-40 {
  width: 40%;
}

.w-39 {
  width: 39%;
}

.w-38 {
  width: 38%;
}

.w-37 {
  width: 37%;
}

.w-36 {
  width: 36%;
}

.w-35 {
  width: 35%;
}

.w-34 {
  width: 34%;
}

.w-33 {
  width: 33.3%;
}

.w-32 {
  width: 32%;
}

.w-31 {
  width: 31%;
}

.w-30 {
  width: 30%;
}

.w-29 {
  width: 29%;
}

.w-28 {
  width: 28%;
}

.w-27 {
  width: 27%;
}

.w-26 {
  width: 26%;
}

.w-25 {
  width: 25%;
}

.w-24 {
  width: 24%;
}

.w-23 {
  width: 23%;
}

.w-22 {
  width: 22%;
}

.w-21 {
  width: 21%;
}

.w-20 {
  width: 20%;
}

.w-19 {
  width: 19%;
}

.w-18 {
  width: 18%;
}

.w-17 {
  width: 17%;
}

.w-16 {
  width: 16%;
}

.w-15 {
  width: 15%;
}

.w-14 {
  width: 14%;
}

.w-13 {
  width: 13%;
}

.w-12 {
  width: 12%;
}

.w-11 {
  width: 11%;
}

.w-10 {
  width: 10%;
}

.w-9 {
  width: 9%;
}

.w-8 {
  width: 8%;
}

.w-7 {
  width: 7%;
}

.w-6 {
  width: 6%;
}

.w-5 {
  width: 5%;
}

.w-4 {
  width: 4%;
}

.w-3 {
  width: 3%;
}

.w-2 {
  width: 2%;
}

.w-1 {
  width: 1%;
}

.h-100 {
  height: 100%;
}

.h-99 {
  height: 99%;
}

.h-98 {
  height: 98%;
}

.h-97 {
  height: 97%;
}

.h-96 {
  height: 96%;
}

.h-95 {
  height: 95%;
}

.h-94 {
  height: 94%;
}

.h-93 {
  height: 93%;
}

.h-92 {
  height: 92%;
}

.h-91 {
  height: 91%;
}

.h-90 {
  height: 90%;
}

.h-89 {
  height: 89%;
}

.h-88 {
  height: 88%;
}

.h-87 {
  height: 87%;
}

.h-86 {
  height: 86%;
}

.h-85 {
  height: 85%;
}

.h-84 {
  height: 84%;
}

.h-83 {
  height: 83%;
}

.h-82 {
  height: 82%;
}

.h-81 {
  height: 81%;
}

.h-80 {
  height: 80%;
}

.h-79 {
  height: 79%;
}

.h-78 {
  height: 78%;
}

.h-77 {
  height: 77%;
}

.h-76 {
  height: 76%;
}

.h-75 {
  height: 75%;
}

.h-74 {
  height: 74%;
}

.h-73 {
  height: 73%;
}

.h-72 {
  height: 72%;
}

.h-71 {
  height: 71%;
}

.h-70 {
  height: 70%;
}

.h-69 {
  height: 69%;
}

.h-68 {
  height: 68%;
}

.h-67 {
  height: 67%;
}

.h-66 {
  height: 66%;
}

.h-65 {
  height: 65%;
}

.h-64 {
  height: 64%;
}

.h-63 {
  height: 63%;
}

.h-62 {
  height: 62%;
}

.h-61 {
  height: 61%;
}

.h-60 {
  height: 60%;
}

.h-59 {
  height: 59%;
}

.h-58 {
  height: 58%;
}

.h-57 {
  height: 57%;
}

.h-56 {
  height: 56%;
}

.h-55 {
  height: 55%;
}

.h-54 {
  height: 54%;
}

.h-53 {
  height: 53%;
}

.h-52 {
  height: 52%;
}

.h-51 {
  height: 51%;
}

.h-50 {
  height: 50%;
}

.h-49 {
  height: 49%;
}

.h-48 {
  height: 48%;
}

.h-47 {
  height: 47%;
}

.h-46 {
  height: 46%;
}

.h-45 {
  height: 45%;
}

.h-44 {
  height: 44%;
}

.h-43 {
  height: 43%;
}

.h-42 {
  height: 42%;
}

.h-41 {
  height: 41%;
}

.h-40 {
  height: 40%;
}

.h-39 {
  height: 39%;
}

.h-38 {
  height: 38%;
}

.h-37 {
  height: 37%;
}

.h-36 {
  height: 36%;
}

.h-35 {
  height: 35%;
}

.h-34 {
  height: 34%;
}

.h-33 {
  height: 33%;
}

.h-32 {
  height: 32%;
}

.h-31 {
  height: 31%;
}

.h-30 {
  height: 30%;
}

.h-29 {
  height: 29%;
}

.h-28 {
  height: 28%;
}

.h-27 {
  height: 27%;
}

.h-26 {
  height: 26%;
}

.h-25 {
  height: 25%;
}

.h-24 {
  height: 24%;
}

.h-23 {
  height: 23%;
}

.h-22 {
  height: 22%;
}

.h-21 {
  height: 21%;
}

.h-20 {
  height: 20%;
}

.h-19 {
  height: 19%;
}

.h-18 {
  height: 18%;
}

.h-17 {
  height: 17%;
}

.h-16 {
  height: 16%;
}

.h-15 {
  height: 15%;
}

.h-14 {
  height: 14%;
}

.h-13 {
  height: 13%;
}

.h-12 {
  height: 12%;
}

.h-11 {
  height: 11%;
}

.h-10 {
  height: 10%;
}

.h-9 {
  height: 9%;
}

.h-8 {
  height: 8%;
}

.h-7 {
  height: 7%;
}

.h-6 {
  height: 6%;
}

.h-5 {
  height: 5%;
}

.h-4 {
  height: 4%;
}

.h-3 {
  height: 3%;
}

.h-2 {
  height: 2%;
}

.h-1 {
  height: 1%;
}

.m-t-auto {
  margin-top: auto !important;
}

.m-r-auto {
  margin-right: auto !important;
}

.m-b-auto {
  margin-bottom: auto !important;
}

.m-l-auto {
  margin-left: auto !important;
}

.m-rl-auto {
  margin: 0 auto !important;
}

.m-rl-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.m-t-0 {
  margin-top: 0 !important;
}

.m-r-0 {
  margin-right: 0 !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-l-0 {
  margin-left: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.p-t-0 {
  padding-top: 0 !important;
}

.p-r-0 {
  padding-right: 0 !important;
}

.p-b-0 {
  padding-bottom: 0 !important;
}

.p-l-0 {
  padding-left: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.text-12 {
  font-size: 12px;
}

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

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

.text-18 {
  font-size: 18px;
}

.text-20 {
  font-size: 20px;
}

.text-22 {
  font-size: 22px;
}

.text-24 {
  font-size: 24px;
}

.text-26 {
  font-size: 26px;
}

/* MEDIA MIXIN */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-between {
  justify-content: space-between !important;
}

.t-center {
  text-align: center !important;
}

.t-left {
  text-align: left !important;
}

.t-right {
  text-align: right !important;
}

.f-left {
  float: left !important;
}

.f-right {
  float: right !important;
}

.f-none {
  float: none !important;
}

.p-relative {
  position: relative !important;
}

.p-absolute {
  position: absolute !important;
}

.p-fixed {
  position: fixed !important;
}

.f-wrap {
  flex-wrap: wrap !important;
}

.f-nowrap {
  flex-wrap: nowrap !important;
}

.d-none-lg {
  display: none;
}

@media (max-width: 992px) {
  .d-none-md {
    display: none !important;
  }
}

.d-block-lg {
  display: block;
}

@media (max-width: 992px) {
  .d-block-md {
    display: block !important;
  }
}

.lg-visible {
  display: block;
}

@media (max-width: 1080px) {
  .lg-visible {
    display: none;
  }
}

@media (max-width: 1080px) {
  .md-visible {
    display: block;
  }
}

@media (max-width: 767px) {
  .md-visible {
    display: none;
  }
}

.sm-visible {
  display: none;
}

@media (max-width: 767px) {
  .sm-visible {
    display: block;
  }
}

.lg-hidden {
  display: none;
}

@media (max-width: 1080px) {
  .lg-hidden {
    display: block;
  }
}

.ivy-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

.ivy-container-full {
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
}

.ivy-grid {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 585px) {
  .ivy-grid {
    display: block;
    flex-wrap: unset;
  }
}

.ivy-grid .w-50 {
  padding: 0 15px;
}

.ivy-grid .w-50:first-child {
  padding-left: 0;
}

.ivy-grid .w-50:nth-child(2n) {
  padding-right: 0;
}

.ivy-grid .w-33 {
  padding: 0 15px;
}

.ivy-grid .w-33:first-child {
  padding-left: 0;
}

.ivy-grid .w-33:nth-child(3n) {
  padding-right: 0;
}

.ivy-grid .w-33:nth-child(3n+1) {
  padding-left: 0;
}

@media (max-width: 992px) {
  .ivy-grid .w-33 {
    width: 50% !important;
  }
  .ivy-grid .w-33:nth-child(odd) {
    padding: 0 15px 0 0;
  }
  .ivy-grid .w-33:nth-child(even) {
    padding: 0 0 0 15px;
  }
}

.ivy-grid .w-25 {
  padding: 0 15px;
}

.ivy-grid .w-25:first-child {
  padding-left: 0;
}

.ivy-grid .w-25:nth-child(4n) {
  padding-right: 0;
}

.ivy-grid .w-20 {
  padding: 0 15px;
}

.ivy-grid .w-20:first-child {
  padding-left: 0;
}

.ivy-grid .w-20:nth-child(5n) {
  padding-right: 0;
}

@media (max-width: 992px) {
  .ivy-grid .w-25, .ivy-grid .w-20 {
    width: 33.3% !important;
    padding: 0 !important;
  }
  .ivy-grid .w-25:first-child, .ivy-grid .w-20:first-child {
    padding-left: 0;
  }
  .ivy-grid .w-25:nth-child(3n), .ivy-grid .w-20:nth-child(3n) {
    padding-right: 0;
  }
  .ivy-grid .w-25:nth-child(4n), .ivy-grid .w-20:nth-child(4n) {
    padding-right: 15px;
  }
}

.ivy-grid .w-50, .ivy-grid .w-33, .ivy-grid .w-25, .ivy-grid .w-20 {
  margin-bottom: 25px;
}

@media (max-width: 585px) {
  .ivy-grid .w-50, .ivy-grid .w-33, .ivy-grid .w-25, .ivy-grid .w-20 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.ivy-grid-center {
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .container {
    width: 100% !important;
    max-width: 992px !important;
  }
}

.ivy-header {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 1px 1px 4px 0 rgba(57, 47, 44, 0.2);
}

.ivy-header .ivy-container {
  min-height: 60px;
}

@media (max-width: 992px) {
  .ivy-header {
    min-height: 60px;
  }
}

.ivy-header-logo {
  position: absolute;
  top: 20px;
  left: 25px;
  width: 110px;
  height: auto;
  z-index: 1010;
  padding: 0;
}

@media screen and (max-width: 450px) {
  .ivy-header-logo {
    left: 15px;
    width: 80px;
  }
}

.ivy-nav-header .ivy-toggle-menu {
  display: none;
}

.ivy-nav-header .ivy-toggle-menu span {
  background: #B2B3B2;
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 3px;
}

@media (max-width: 1280px) {
  .ivy-nav-header .ivy-toggle-menu {
    display: block;
    position: absolute;
    right: 20px;
    top: 12px;
    background: none;
    border: none;
    width: 25px;
    height: 40px;
    padding: 0;
  }
  .ivy-nav-header .ivy-toggle-menu:hover, .ivy-nav-header .ivy-toggle-menu:active, .ivy-nav-header .ivy-toggle-menu:focus {
    outline: none !important;
  }
}

.ivy-nav-header img {
  width: 110px;
}

@media screen and (max-width: 450px) {
  .ivy-nav-header img {
    width: 100px;
  }
}

.ivy-nav .ivy-navbar {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.ivy-nav .ivy-navbar li {
  display: inline-block;
  list-style: none;
  position: relative;
  line-height: 21px;
}

.ivy-nav .ivy-navbar li a {
  display: block;
  font-size: 14px;
  padding: 19px 14px 21px;
  color: #392F2C;
  text-decoration: none;
  font-family: Univers-Regular, Helvetica, Arial, sans-serif;
}

.ivy-nav .ivy-navbar li a:hover, .ivy-nav .ivy-navbar li a:focus, .ivy-nav .ivy-navbar li a:active {
  text-shadow: 0 0 0.01px black;
}

@media screen and (max-width: 1340px) {
  .ivy-nav .ivy-navbar li a {
    padding: 19px 10px 21px;
  }
}

@media (max-width: 1280px) {
  .ivy-nav .ivy-navbar li a {
    padding: 19px 7px 21px;
    font-size: 13px;
  }
}

.ivy-nav .ivy-navbar li .ivy-dropdown-menu {
  position: absolute;
  top: 95%;
  left: -10px;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 217px;
  padding: 0;
  margin: 5px 0 0;
  list-style: none;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
}

.ivy-nav .ivy-navbar li .ivy-dropdown-menu li {
  display: block;
}

.ivy-nav .ivy-navbar li .ivy-dropdown-menu li a {
  font-size: 13px;
  text-align: left;
  color: #392F2C;
  padding: 5px 15px;
  font-family: Univers-Regular, Helvetica, Arial, sans-serif;
}

.ivy-nav .ivy-navbar li.open .ivy-dropdown-menu {
  display: block;
  padding: 15px 10px;
  margin: 0;
  border: 0;
  box-shadow: 1px 3px 4px 0 rgba(57, 47, 44, 0.2);
}

@media screen and (max-width: 1260px) {
  .ivy-nav .ivy-navbar-main {
    margin-left: -100px;
  }
}

@media (max-width: 1280px) {
  .ivy-nav .ivy-navbar-main {
    position: absolute;
    top: 60px;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    text-align: center;
    transition: all 0.2s;
    height: 0;
    overflow: hidden;
  }
  .ivy-nav .ivy-navbar-main:after {
    content: '';
    position: absolute;
    top: 0;
    height: 1px;
    left: 20px;
    right: 20px;
    background: #B2B3B2;
  }
  .ivy-nav .ivy-navbar-main li {
    display: block;
    width: 100%;
  }
  .ivy-nav .ivy-navbar-main li a {
    padding: 10px 7px 10px;
  }
}

@media (max-width: 1280px) and (max-width: 1280px) {
  .ivy-nav .ivy-navbar-main li a {
    font-size: 26px;
  }
}

@media (max-width: 1280px) and (max-width: 1280px) {
  .ivy-nav .ivy-navbar-main li .ivy-dropdown-menu li a {
    font-size: 18px;
    text-align: center;
  }
}

@media (max-width: 1280px) {
  .ivy-nav .ivy-navbar-main li .ivy-dropdown-menu:after {
    content: '';
    position: absolute;
    bottom: 5px;
    height: 1px;
    width: 240px;
    background: #B2B3B2;
    left: 50%;
    margin-left: -120px;
  }
}

@media (max-width: 1280px) and (max-width: 1280px) {
  .ivy-nav .ivy-navbar-main li .ivy-dropdown-menu {
    box-shadow: none !important;
    position: relative;
    width: 100%;
    padding-top: 0 !important;
    margin: 5px auto 15px auto !important;
    left: 0;
  }
}

.ivy-nav .ivy-navbar-main.open-responsive-menu {
  box-shadow: 1px 2px 4px 0 rgba(57, 47, 44, 0.2);
}

@media (max-width: 1280px) {
  .ivy-nav .ivy-navbar-main.open-responsive-menu {
    padding: 38px 0;
    height: auto;
    transition: all 0.2s;
  }
}

.ivy-nav-login {
  position: absolute;
  right: 25px;
  top: 18px;
  z-index: 1010;
}

@media (max-width: 1280px) {
  .ivy-nav-login {
    right: 55px;
    top: 22px;
  }
}

.ivy-nav-login a {
  color: #392F2C;
  font-size: 12px;
  text-decoration: none;
  vertical-align: middle;
  font-family: "Univers-Regular", Helvetica, Arial, sans-serif;
}

.ivy-nav-login a:hover, .ivy-nav-login a:focus, .ivy-nav-login a:active {
  text-shadow: 0 0 0.01px black;
}

.ivy-nav-login .ivy-nav-search {
  float: left;
  margin: 0;
}

.ivy-nav-login .ivy-nav-search input {
  max-width: 120px;
  margin-top: -4px;
  padding-left: 5px;
  font-family: Arial, sans-serif;
  border: 1px solid #B2B3B2;
  font-weight: normal;
}

.ivy-nav-login .ivy-nav-search input:hover, .ivy-nav-login .ivy-nav-search input:focus, .ivy-nav-login .ivy-nav-search input:active {
  border: 1px solid #000;
}

.ivy-nav-login .ivy-nav-search input::placeholder {
  color: #555;
}

@media screen and (max-width: 480px) {
  .ivy-nav-login .ivy-nav-search {
    display: none;
  }
}

.ivy-nav-login .ivy-btn-login {
  border: 1px solid #F7323F;
  padding: 5px 17px !important;
  margin-right: 5px;
  font-size: 14px;
  text-decoration: none;
}

.ivy-nav-login .ivy-btn-login:hover, .ivy-nav-login .ivy-btn-login:focus, .ivy-nav-login .ivy-btn-login:active {
  color: #fff;
  background: #F7323F;
  text-decoration: none;
}

@media screen and (max-width: 450px) {
  .ivy-nav-login .ivy-btn-login {
    border: none;
    margin-right: -9px;
    text-decoration: none;
  }
  .ivy-nav-login .ivy-btn-login:hover, .ivy-nav-login .ivy-btn-login:focus, .ivy-nav-login .ivy-btn-login:active {
    background: transparent;
  }
}

.ivy-nav-login .ivy-navbar {
  float: right;
}

.ivy-nav-login .ivy-navbar .ivy-login-user {
  padding-left: 10px;
}

.ivy-nav-login .ivy-navbar .ivy-login-user img {
  border-radius: 13px;
  margin-top: -2px;
  width: 26px;
  height: auto;
}

.ivy-promo-bar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #392F2C;
  display: none;
}

.ivy-promo-bar p {
  margin: 0;
  color: white;
  padding: 20px 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

@media (max-width: 992px) {
  .ivy-promo-bar p {
    font-size: 13px;
    margin: 0 auto;
  }
}

@media (max-width: 585px) {
  .ivy-promo-bar p {
    max-width: 330px;
  }
}

.ivy-promo-bar p a {
  color: #ffffff;
  background-color: #EA0B1A;
  border-color: #EA0B1A;
  padding: 7px 14px;
  margin-left: 10px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 992px) {
  .ivy-promo-bar p a {
    display: block;
    margin-top: 5px;
  }
}

.promo-bar .ivy-promo-bar {
  display: block;
}

.promo-basics {
  background-color: #392F2C;
  /*Winter promo bar*/
  /*Winter promo bar*/
}

.promo-basics p {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 0;
  padding: 11px 0;
  line-height: 1.42857;
}

.promo-basics p .days {
  color: #ed0918;
  font-weight: bold;
}

.promo-basics p a {
  color: #ffffff;
  text-decoration: underline;
}

.promo-basics.winter {
  background-color: #FFEB3B;
}

.promo-basics.winter p,
.promo-basics.winter a {
  color: #392F2C;
}

.promo-basics.winter {
  background-color: #FFEB3B;
}

.promo-basics.winter p,
.promo-basics.winter a {
  color: #392F2C;
}

.ivy-headline {
  position: relative;
  left: 0;
  width: 100%;
}

.ivy-headline.review {
  background: #4d4d4d url(/ivy-assets/dist/images/dashboard-messaging-headline-back-gray.jpg) top center no-repeat;
  background-size: cover;
  text-align: center;
}

.ivy-headline.review .container:before {
  padding-top: 30px;
}

.ivy-headline.user-profile {
  background: #4d4d4d url(/ivy-assets/dist/images/dashboard-review-headline-back-gray.jpg) top center no-repeat;
  background-size: cover;
  color: #ffffff;
}

.ivy-headline.user-profile p {
  margin: 0;
}

.ivy-headline.user-profile ul {
  margin: 10px 0;
}

.ivy-headline.user-profile ul li {
  list-style: none;
  font-weight: bold;
  font-size: 14px;
}

.ivy-headline.user-profile ul li p {
  color: #B2B3B2;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.1;
  margin-top: 10px;
}

.ivy-headline.user-profile .updatedtime {
  background: #fff200;
  padding: 0 10px;
  color: #392F2C;
}

.ivy-headline.user-profile .holder {
  padding: 20px 30px;
}

.ivy-headline.user-profile .container {
  padding-bottom: 0;
}

.ivy-headline.user-profile .container h1 {
  margin: 0;
  font-size: 21px;
}

.ivy-headline.user-profile .action-holder {
  border-top: 1px solid #666;
  padding-top: 20px;
}

.ivy-headline.user-profile .action-holder .view {
  padding-top: 10px;
  font-size: 12px;
  color: #ffffff;
}

.ivy-headline .container {
  padding-bottom: 30px;
}

.ivy-headline .container h1 {
  font-size: 36px;
  color: #ffffff;
}

.ivy-headline .container h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 26px;
}

.ivy-headline.minimized {
  padding-bottom: 0;
}

.ivy-headline.minimized .container {
  padding: 0;
  position: relative;
}

.ivy-headline.minimized .container p {
  margin: 0;
  padding: 6px;
  color: #ffffff;
}

@media (max-width: 769px) {
  .ivy-headline.minimized .container p {
    padding: 15px 15px 35px 15px;
  }
}

.ivy-headline.minimized .container p a {
  color: #ffffff;
}

.ivy-headline.minimized .container:before {
  padding: 0;
}

.ivy-headline.minimized a.min-max {
  overflow: hidden;
  height: 13px;
  width: 20px;
  float: right;
  margin-left: 5px;
}

@media (max-width: 769px) {
  .ivy-headline.minimized a.min-max {
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: 15px;
  }
}

.ivy-headline.maximized .container {
  position: relative;
}

.ivy-headline.maximized a.max-min {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 17px;
  height: 13px;
  display: block;
  background: url(../../../dist/images/icons/rev-mes-min-max-white.png) bottom left no-repeat;
}

.bg-black {
  background: #000000;
}

.bg-d-gray {
  background: #392F2C;
}

.bg-m-gray {
  background: #D8D6D6;
}

.bg-l-gray {
  background: #B2B3B2;
}

.bg-red {
  background: #F7323F;
}

.bg-d-red {
  background: #dc3545;
}

.bg-white {
  background: #ffffff;
}

.bg-orange {
  background: #FD9623;
}

.bg-grey {
  background: #686868;
}

.ivy-footer {
  border-top: 0;
  margin-top: auto;
  padding: 50px 0 10px 0;
  background: #ECECEC;
}

.ivy-footer .ivy-grid-center {
  justify-content: flex-start;
}

@media (min-width: 993px) {
  .ivy-footer .ivy-grid-center {
    justify-content: center;
  }
  .ivy-footer .ivy-grid-center .w-17 {
    display: flex;
    justify-content: center;
  }
}

.ivy-footer .ivy-container {
  max-width: 1140px;
  padding-top: 55px;
  justify-content: flex-start;
}

@media (max-width: 992px) {
  .ivy-footer .ivy-container {
    padding-top: 0;
  }
}

@media (max-width: 992px) {
  .ivy-footer .ivy-container .w-8 {
    display: none;
  }
}

@media (max-width: 992px) {
  .ivy-footer .ivy-container .w-17 {
    width: 50%;
    text-align: left;
    padding-bottom: 25px;
    padding-left: 10px;
  }
}

@media (max-width: 585px) {
  .ivy-footer .ivy-container .w-17 {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .ivy-footer .ivy-container .w-33 {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .ivy-footer .ivy-container .w-20 {
    width: 100% !important;
  }
}

.ivy-footer hr {
  margin: 65px 0 1rem 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

@media (max-width: 992px) {
  .ivy-footer hr {
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  .ivy-footer hr {
    margin: 15px 0 1rem 0;
  }
}

.ivy-footer h6 {
  font-family: "Univers-CondensedBold", Arial, Sans-Serif !important;
  font-size: 16px;
  margin-bottom: 0 0 22px 0;
}

.ivy-footer ul li {
  font-size: 16px;
}

.ivy-footer ul li a {
  font-family: "Univers-CondensedLight", Arial, Sans-Serif;
  color: #392F2C !important;
  background: none !important;
}

.ivy-footer ul li a:hover {
  text-decoration: none;
  font-weight: 700;
}

.ivy-footer__links {
  margin-bottom: 65px;
  display: flex;
}

.ivy-footer__social {
  text-align: center;
  margin-top: 50px;
  font-family: "Univers-CondensedLight", Arial, Sans-Serif;
}

@media (max-width: 767px) {
  .ivy-footer__social {
    margin-top: 40px;
  }
}

.ivy-footer__social p {
  font-size: 18px;
  margin-bottom: 26px;
  font-family: "Univers-CondensedLight", Arial, Sans-Serif;
}

@media (max-width: 767px) {
  .ivy-footer__social p {
    margin-bottom: 20px;
  }
}

.ivy-footer__social .sub-mobile {
  margin-top: 30px;
}

.ivy-footer__social--input {
  border: 1px solid #B2B3B2;
  border-right: 0;
  border-radius: 0;
  width: 280px;
  padding-left: 10px;
}

@media (max-width: 585px) {
  .ivy-footer__social--input {
    width: 100%;
  }
}

.ivy-footer__social--btn {
  background: #F7323F;
  color: #ffffff;
  font-family: "Univers-Regular", Arial, Sans-Serif;
  font-size: 16px;
  border: none;
  padding: 6px 8px;
  border-radius: 0;
}

.ivy-footer__social ::placeholder {
  color: #B2B3B2;
}

.ivy-footer__social__icons {
  margin: 40px 0 10px 0;
}

@media (max-width: 1280px) {
  .ivy-footer__social__icons {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .ivy-footer__social__icons {
    margin-bottom: 20px;
  }
}

.ivy-footer__social__icons ul li {
  margin-bottom: 0;
  display: inline-block;
  font-size: 20px;
}

.ivy-footer__social__icons ul li a {
  color: #392F2C;
  margin: 0 7px;
}

.ivy-footer__social--copyright {
  font-size: 12px !important;
  font-style: Arial, Sans-Serif !important;
  color: #595959;
  margin-bottom: 60px !important;
}

@media (max-width: 1280px) {
  .ivy-footer__social--copyright {
    margin-right: 10px;
  }
}

.ivy-footer__right {
  align-items: center;
}

.ivy-footer__right .ivy-footer__social__icons {
  margin: 0;
  margin-top: 10px;
  margin-right: 35px;
}

@media (max-width: 1280px) {
  .ivy-footer__right .ivy-footer__social__icons {
    margin-right: 10px;
  }
}

.ivy-footer__right .ivy-footer__social--copyright {
  margin-bottom: 0 !important;
  margin-right: 30px;
  margin-top: 10px;
}

@media (max-width: 1280px) {
  .ivy-footer__right .ivy-footer__social--copyright {
    margin-right: 10px;
  }
}

.ivy-footer__right ul li {
  display: table-cell !important;
}

.footer-fixed {
  position: fixed;
  z-index: 999;
  bottom: 0;
  background: #ffffff;
  height: 70px;
  transition: .3s;
  box-shadow: 4px 5px 14px #b1b1b1;
  margin-bottom: -16px;
}

.footer-fixed__bar {
  position: fixed;
  bottom: 0;
  z-index: 9998;
  background: #ffffff;
  height: 67px;
  padding: 10px 0;
  width: 100%;
  margin-bottom: 0px;
  box-shadow: 4px 5px 11px #b1b1b1;
}

@media (max-width: 992px) {
  .footer-fixed__bar {
    display: none !important;
  }
}

@media (max-width: 769px) {
  .footer-fixed__bar {
    bottom: 14px;
  }
}

.footer-fixed .ivy-footer {
  padding-top: 0;
  background: rgba(255, 255, 255, 0.97);
}

.footer-fixed .ivy-footer .ivy-container {
  padding-top: 70px;
  padding-bottom: 12px;
}

.footer-fixed .ivy-footer__social--copyright {
  align-self: center;
  margin-bottom: 0 !important;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .footer-fixed .ivy-footer__social--copyright {
    margin-right: 0;
  }
}

.footer-fixed .ivy-footer__social--input {
  width: 27%;
  height: 35px;
}

@media (max-width: 992px) {
  .footer-fixed .ivy-footer__social--input {
    width: 160px;
  }
}

.footer-fixed .ivy-footer__social__icons ul li {
  display: inline-block;
}

@media (max-width: 992px) {
  .footer-fixed .ivy-footer__social__icons ul li {
    display: inline-block;
  }
}

.footer-fixed__subscribe {
  display: flex;
  height: 40px;
  margin-left: 70px;
  padding-top: 5px;
}

.footer-fixed__subscribe p {
  display: inline-flex;
  margin-left: 15px;
  width: 320px;
  font-family: "Univers-CondensedLight", Arial, Sans-Serif;
  line-height: 19px;
  margin-top: -1px;
}

.footer-fixed__subscribe ::placeholder {
  color: #B2B3B2;
}

@media (max-width: 992px) {
  .footer-fixed__subscribe {
    margin-left: 15px;
  }
}

.footer-fixed__subscribe input {
  padding-left: 8px;
}

.footer-fixed__openup {
  margin-right: 70px;
  margin-top: 5px;
}

@media (max-width: 992px) {
  .footer-fixed__openup {
    margin-right: 15px;
  }
}

.footer-fixed__openup img {
  background: #ebebeb;
  width: 33px;
  max-width: initial;
  cursor: pointer;
}

.footer-fixed__content {
  padding-top: 25px;
}

@media (max-width: 769px) {
  .footer-fixed__content .ivy-grid {
    overflow: scroll;
    padding-top: 130px;
  }
}

@media (max-width: 767px) {
  .footer-fixed__content .ivy-grid {
    padding-top: 50px;
  }
}

@media (max-width: 585px) {
  .footer-fixed__content .ivy-grid {
    max-height: 72%;
    padding-top: 0;
  }
}

.footer-fixed.open-footer {
  background: none;
  height: 450px;
}

@media (max-width: 992px) {
  .footer-fixed.open-footer {
    padding-top: 0;
    height: auto;
    background: #ffffff;
  }
}

@media (max-width: 585px) {
  .footer-fixed.open-footer .ivy-footer {
    position: fixed;
    height: 100%;
    z-index: 9998;
    bottom: 0;
    display: flex;
    align-items: flex-end;
  }
}

@media (max-width: 585px) {
  .footer-fixed.open-footer .ivy-footer .ivy-container {
    height: 100%;
  }
}

.open-footer {
  height: 48%;
  animation-name: slideup;
  transition: .3s;
  transition-timing-function: ease-in-out;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

.open-footer .ivy-footer {
  padding-bottom: 75px;
  background: rgba(255, 255, 255, 0.97);
}

@media (max-width: 992px) {
  .open-footer .ivy-footer hr {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .open-footer .ivy-footer {
    padding-top: 0;
    margin: 0;
  }
}

.open-footer .ivy-container {
  max-width: 100%;
  padding-left: 70px;
  padding-right: 70px;
}

.open-footer .ivy-container .w-20 {
  padding-left: 0;
}

@media (max-width: 992px) {
  .open-footer .ivy-container {
    padding: 25px 15px 0 15px;
  }
}

@media (max-width: 767px) {
  .open-footer .ivy-container {
    padding-top: 30px !important;
  }
}

@media (max-width: 992px) {
  .open-footer {
    height: 100%;
    overflow: scroll;
    z-index: 9999;
  }
}

.rotate-arrow {
  transform: rotate(-180deg);
  transition: .01s ease-in-out;
  transform-origin: center;
}

#footer_sub_button {
  height: 35px;
  padding: 2px 13px;
}

#footer_sub_success {
  margin-left: 10px;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 900;
}

@media (max-width: 585px) {
  #footer_sub_success {
    font-size: 11px;
    margin-top: 8px;
  }
}

.resumehelp-page .ivy-footer .ivy-container {
  max-width: 100%;
  padding-left: 70px;
  padding-right: 70px;
}

.resumehelp-page .ivy-footer .ivy-container .w-20 {
  padding-left: 0;
}

@media (max-width: 990px) {
  .resumehelp-page .footer-fixed {
    display: none;
  }
}

.top-shadow {
  box-shadow: none;
}

.ivy-footer-subscribe {
  display: none;
}

.prelogin .ivy-footer-subscribe {
  display: block;
}

.ivy-footer.footer-prelogin {
  background-color: #F8F8F8;
}

@media (max-width: 1080px) {
  .ivy-footer.footer-prelogin {
    background-color: #fff;
  }
}

.ivy-footer.footer-prelogin .ivy-container {
  padding-top: 50px;
}

@media (max-width: 1080px) {
  .ivy-footer.footer-prelogin .ivy-container {
    padding-top: 0;
  }
}

.ivy-footer.footer-prelogin .ivy-grid {
  justify-content: center;
  padding-left: 125px;
}

.ivy-footer.footer-prelogin .ivy-grid h6 {
  font-family: 'Univers-Regular', sans-serif !important;
  font-size: 18px;
}

.ivy-footer.footer-prelogin .ivy-grid li a {
  font-family: 'Univers-Light', sans-serif !important;
  font-size: 16px;
  line-height: 24px;
}

@media (max-width: 1080px) {
  .ivy-footer.footer-prelogin .ivy-grid {
    display: none;
  }
}

.ivy-footer.footer-prelogin .fa {
  font-size: 25px;
  color: #686868;
}

.ivy-footer.footer-prelogin .ivy-footer__social--copyright {
  font-family: Arial, Sans-Serif !important;
  color: #B2B3B2 !important;
  margin-bottom: 40px !important;
}

@media (max-width: 1080px) {
  .ivy-footer.footer-prelogin .ivy-footer__social--copyright {
    margin-bottom: 60px !important;
  }
}

.ivy-footer.footer-prelogin .ivy-footer__social {
  margin-top: 56px;
}

.ivy-footer.footer-prelogin .ivy-footer__social__icons {
  margin-bottom: 20px;
}

.ivy-footer.footer-prelogin .mobile-links {
  display: none;
  padding-right: 18px;
}

@media (max-width: 1080px) {
  .ivy-footer.footer-prelogin .mobile-links {
    display: block;
    padding-right: 0;
  }
}

@media (max-width: 400px) {
  .ivy-footer.footer-prelogin .mobile-links {
    padding-right: 0;
  }
}

.ivy-footer.footer-prelogin .mobile-links ul {
  display: inline-block;
  margin-bottom: 15px;
}

.ivy-footer.footer-prelogin .mobile-links ul li {
  display: inline;
}

.ivy-footer.footer-prelogin .mobile-links ul li:nth-child(2):before, .ivy-footer.footer-prelogin .mobile-links ul li:nth-child(3):before {
  content: '';
  height: 3px;
  width: 3px;
  background-color: #F7323F;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

.ivy-footer.footer-prelogin .mobile-links ul li a {
  color: #b2b3b2 !important;
  font-family: Arial, Sans-Serif !important;
  font-size: 15px;
}

@media (max-width: 374px) {
  .ivy-footer.footer-prelogin .mobile-links ul li a {
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .ivy-footer.footer-prelogin .mobile-links ul li a {
    font-size: 13px;
  }
}

.ivy-footer.footer-prelogin .mobile-links ul li a:hover {
  color: #686868 !important;
  font-weight: normal !important;
}
