@charset "UTF-8";
.arrow-animation {
  animation: arrowAnimation linear 5s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: arrowAnimation linear 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: arrowAnimation linear 5s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: arrowAnimation linear 5s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: arrowAnimation linear 5s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

.pulse {
  -webkit-animation: pulse linear 5s;
  animation: pulse linear 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.delay {
  -webkit-animation-delay: .5s;
  /* Safari 4.0 - 8.0 */
  animation-delay: .5s;
}

.delay2 {
  -webkit-animation-delay: 1s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 1s;
}

.delay3 {
  -webkit-animation-delay: 1.5s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 1.5s;
}

.delay4 {
  -webkit-animation-delay: 2s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 2s;
}

.delay5 {
  -webkit-animation-delay: 2.5s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 2.5s;
}

.delay6 {
  -webkit-animation-delay: 3s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 3s;
}

.delay7 {
  -webkit-animation-delay: 3.5s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 3.5s;
}

.delay8 {
  -webkit-animation-delay: 4s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 4s;
}

.delay9 {
  -webkit-animation-delay: 4.5s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 4.5s;
}

.delay10 {
  -webkit-animation-delay: 5s;
  /* Safari 4.0 - 8.0 */
  animation-delay: 5s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  5% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  10% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  20% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes arrowAnimation {
  0% {
    opacity: 0;
    left: -20px;
  }
  2% {
    opacity: .2;
    left: -16px;
  }
  4% {
    opacity: .4;
    left: -12px;
  }
  6% {
    opacity: .6;
    left: -8px;
  }
  8% {
    opacity: .8;
    left: -4px;
  }
  10% {
    opacity: 1;
    left: 0;
  }
  12% {
    opacity: .8;
    left: 4px;
  }
  14% {
    opacity: .6;
    left: 8px;
  }
  16% {
    opacity: .4;
    left: 12px;
  }
  18% {
    opacity: .2;
    left: 16px;
  }
  20% {
    opacity: 0;
    left: 20px;
  }
  100% {
    opacity: 0;
    left: 20px;
  }
}

@-webkit-keyframes arrowAnimation {
  0% {
    opacity: 0;
    left: -20px;
  }
  5% {
    opacity: .2;
    left: -16px;
  }
  10% {
    opacity: .4;
    left: -12px;
  }
  15% {
    opacity: .6;
    left: -8px;
  }
  20% {
    opacity: .8;
    left: -4px;
  }
  25% {
    opacity: 1;
    left: 0;
  }
  30% {
    opacity: .8;
    left: 4px;
  }
  35% {
    opacity: .6;
    left: 8px;
  }
  40% {
    opacity: .4;
    left: 12px;
  }
  45% {
    opacity: .2;
    left: 16px;
  }
  50% {
    opacity: 0;
    left: 20px;
  }
  100% {
    opacity: 0;
    left: 20px;
  }
}

@-webkit-keyframes arrowAnimationResponsive {
  0% {
    opacity: 0;
    top: -20px;
  }
  2% {
    opacity: .2;
    top: -16px;
  }
  4% {
    opacity: .4;
    top: -12px;
  }
  6% {
    opacity: .6;
    top: -8px;
  }
  8% {
    opacity: .8;
    top: -4px;
  }
  10% {
    opacity: 1;
    top: 0;
  }
  12% {
    opacity: .8;
    top: 4px;
  }
  14% {
    opacity: .6;
    top: 8px;
  }
  16% {
    opacity: .4;
    top: 12px;
  }
  18% {
    opacity: .2;
    top: 16px;
  }
  20% {
    opacity: 0;
    top: 20px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

@keyframes arrowAnimationResponsive {
  0% {
    opacity: 0;
    top: -20px;
  }
  2% {
    opacity: .2;
    top: -16px;
  }
  4% {
    opacity: .4;
    top: -12px;
  }
  6% {
    opacity: .6;
    top: -8px;
  }
  8% {
    opacity: .8;
    top: -4px;
  }
  10% {
    opacity: 1;
    top: 0;
  }
  12% {
    opacity: .8;
    top: 4px;
  }
  14% {
    opacity: .6;
    top: 8px;
  }
  16% {
    opacity: .4;
    top: 12px;
  }
  18% {
    opacity: .2;
    top: 16px;
  }
  20% {
    opacity: 0;
    top: 20px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

@-webkit-keyframes arrowAnimation {
  0% {
    opacity: 0;
    left: -20px;
  }
  5% {
    opacity: .2;
    left: -16px;
  }
  10% {
    opacity: .4;
    left: -12px;
  }
  15% {
    opacity: .6;
    left: -8px;
  }
  20% {
    opacity: .8;
    left: -4px;
  }
  25% {
    opacity: 1;
    left: 0;
  }
  30% {
    opacity: .8;
    left: 4px;
  }
  35% {
    opacity: .6;
    left: 8px;
  }
  40% {
    opacity: .4;
    left: 12px;
  }
  45% {
    opacity: .2;
    left: 16px;
  }
  50% {
    opacity: 0;
    left: 20px;
  }
  100% {
    opacity: 0;
    left: 20px;
  }
}

@font-face {
  font-family: 'AvenirNext-Bold';
  src: url("/public/front/fonts/AvenirNext-Bold.eot");
  src: url("/public/front/fonts/AvenirNext-Bold.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-Bold.woff") format("woff"), url("/public/front/fonts/AvenirNext-Bold.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-Bold.svg#AvenirNext-Bold") format("svg"), url("/public/front/fonts/AvenirNext-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-BoldItalic';
  src: url("/public/front/fonts/AvenirNext-BoldItalic.eot");
  src: url("/public/front/fonts/AvenirNext-BoldItalic.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-BoldItalic.woff") format("woff"), url("/public/front/fonts/AvenirNext-BoldItalic.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-BoldItalic.svg#AvenirNext-BoldItalic") format("svg"), url("/public/front/fonts/AvenirNext-BoldItalic.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-DemiBold';
  src: url("/public/front/fonts/AvenirNext-DemiBold.eot");
  src: url("/public/front/fonts/AvenirNext-DemiBold.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-DemiBold.woff") format("woff"), url("/public/front/fonts/AvenirNext-DemiBold.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-DemiBold.svg#AvenirNext-DemiBold") format("svg"), url("/public/front/fonts/AvenirNext-DemiBold.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-DemiBoldItalic';
  src: url("/public/front/fonts/AvenirNext-DemiBoldItalic.eot");
  src: url("/public/front/fonts/AvenirNext-DemiBoldItalic.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-DemiBoldItalic.woff") format("woff"), url("/public/front/fonts/AvenirNext-DemiBoldItalic.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-DemiBoldItalic.svg#AvenirNext-DemiBoldItalic") format("svg"), url("/public/front/fonts/AvenirNext-DemiBoldItalic.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-Heavy';
  src: url("/public/front/fonts/AvenirNext-Heavy.eot");
  src: url("/public/front/fonts/AvenirNext-Heavy.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-Heavy.woff") format("woff"), url("/public/front/fonts/AvenirNext-Heavy.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-Heavy.svg#AvenirNext-Heavy") format("svg"), url("/public/front/fonts/AvenirNext-Heavy.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-HeavyItalic';
  src: url("/public/front/fonts/AvenirNext-HeavyItalic.eot");
  src: url("/public/front/fonts/AvenirNext-HeavyItalic.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-HeavyItalic.woff") format("woff"), url("/public/front/fonts/AvenirNext-HeavyItalic.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-HeavyItalic.svg#AvenirNext-HeavyItalic") format("svg"), url("/public/front/fonts/AvenirNext-HeavyItalic.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-Italic';
  src: url("/public/front/fonts/AvenirNext-Italic.eot");
  src: url("/public/front/fonts/AvenirNext-Italic.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-Italic.woff") format("woff"), url("/public/front/fonts/AvenirNext-Italic.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-Italic.svg#AvenirNext-Italic") format("svg"), url("/public/front/fonts/AvenirNext-Italic.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-Medium';
  src: url("/public/front/fonts/AvenirNext-Medium.eot");
  src: url("/public/front/fonts/AvenirNext-Medium.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-Medium.woff") format("woff"), url("/public/front/fonts/AvenirNext-Medium.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-Medium.svg#AvenirNext-Medium") format("svg"), url("/public/front/fonts/AvenirNext-Medium.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-MediumItalic';
  src: url("/public/front/fonts/AvenirNext-MediumItalic.eot");
  src: url("/public/front/fonts/AvenirNext-MediumItalic.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-MediumItalic.woff") format("woff"), url("/public/front/fonts/AvenirNext-MediumItalic.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-MediumItalic.svg#AvenirNext-MediumItalic") format("svg"), url("/public/front/fonts/AvenirNext-MediumItalic.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-Regular';
  src: url("/public/front/fonts/AvenirNext-Regular.eot");
  src: url("/public/front/fonts/AvenirNext-Regular.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-Regular.woff") format("woff"), url("/public/front/fonts/AvenirNext-Regular.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-Regular.svg#AvenirNext-Regular") format("svg"), url("/public/front/fonts/AvenirNext-Regular.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-UltraLight';
  src: url("/public/front/fonts/AvenirNext-UltraLight.eot");
  src: url("/public/front/fonts/AvenirNext-UltraLight.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-UltraLight.woff") format("woff"), url("/public/front/fonts/AvenirNext-UltraLight.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-UltraLight.svg#AvenirNext-UltraLight") format("svg"), url("/public/front/fonts/AvenirNext-UltraLight.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext-UltraLightItalic';
  src: url("/public/front/fonts/AvenirNext-UltraLightItalic.eot");
  src: url("/public/front/fonts/AvenirNext-UltraLightItalic.woff2") format("woff2"), url("/public/front/fonts/AvenirNext-UltraLightItalic.woff") format("woff"), url("/public/front/fonts/AvenirNext-UltraLightItalic.ttf") format("truetype"), url("/public/front/fonts/AvenirNext-UltraLightItalic.svg#AvenirNext-UltraLightItalic") format("svg"), url("/public/front/fonts/AvenirNext-UltraLightItalic.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'AvenirNext-Regular', sans-serif;
  font-size: 18px;
  color: #8ba4c0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fafafa;
}

* {
  box-sizing: border-box;
  outline: none;
}

section {
  padding: 100px 0;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 42px;
  color: #607791;
  font-family: 'AvenirNext-DemiBold', sans-serif;
}

strong {
  color: #607791;
  font-family: 'AvenirNext-DemiBold', sans-serif;
}

select {
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  font-size: 13px;
  letter-spacing: 1px;
}

#google-map {
  color: #607791;
}

.button {
  background-color: #0096ff;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  border: none;
  height: 50px;
  line-height: 50px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all .2s;
  transition: all .2s;
  padding: 0 20px;
}

.button:hover {
  background-color: #4ab4ff;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12);
}

a {
  color: #8ba4c0;
  text-decoration: none;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
}

.bordered {
  position: relative;
}

.bordered h3 {
  position: relative;
  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;
}

.bordered:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 40px;
}

.delete-button, .delete-button-selectize {
  color: #0096ff;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 30px;
}

.selectize-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.selectize-cont .selectize-control {
  width: 100%;
}

.selectize-cont .delete-button-selectize {
  position: relative;
  margin-left: 10px;
}

.p0 {
  padding-bottom: 0 !important;
}

.m0 {
  margin: 0 !important;
}

.white {
  background: #fff;
}

.settings {
  width: 150px;
  text-align: right;
}

.settings a {
  text-decoration: none;
  font-size: 20px;
  position: relative;
}

.settings a i {
  color: #c7cfd8;
  margin: 0 4px;
}

.settings a .tooltip {
  position: absolute;
  background-color: #8ba4c0;
  display: none;
  top: -29px;
  left: 50%;
  line-height: normal;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 2;
}

.settings a .tooltip:before {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8ba4c0;
  content: " ";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.settings a:hover i {
  color: #0096ff;
}

.settings a:hover .tooltip {
  display: block;
}

.tabs-menu {
  float: left;
  clear: both;
  margin: 0;
  padding: 0;
}

.tabs-menu li {
  font-size: 13px;
  float: left;
  list-style: none;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}

.tabs-menu li.current {
  position: relative;
  background: #fafafa;
  border-top: 1px solid #f0f0f5;
  border-right: 1px solid #f0f0f5;
  border-left: 1px solid #f0f0f5;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  z-index: 1;
}

.tabs-menu li.current a {
  color: #607791;
}

.tabs-menu li a {
  padding: 19px 24px;
  display: block;
  color: #0096ff;
  text-decoration: none;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
}

.tab {
  border: 1px solid #f0f0f5;
  background-color: #fff;
  float: left;
  margin-bottom: 20px;
  margin-top: -1px;
  width: 100%;
}

.tab .tab-content {
  width: 100%;
  padding: 24px;
  display: none;
  background: #fafafa;
}

.tab .tab-content:first-child {
  display: block;
}

.category {
  font-family: 'AvenirNext-DemiBold', sans-serif;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 13px;
  color: #fff;
  letter-spacing: 1px;
  padding: 3px 8px;
}

.category.green {
  background-color: #39b54a;
}

.category.blue {
  background-color: #0096ff;
}

.category.purple {
  background-color: #8400ff;
}

.category.yellow {
  background-color: #ffd200;
}

.category.brown {
  background-color: #b56d39;
}

nav {
  background-color: #fff;
  height: 90px;
  font-size: 13px;
  font-family: 'AvenirNext-DemiBold', sans-serif;
  list-style: none;
  text-transform: uppercase;
}

nav .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .container-fluid:after {
  content: none;
}

nav .container-fluid .responsive-button {
  display: none;
}

nav .container-fluid ul {
  padding: 0;
}

nav .container-fluid .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav .container-fluid .nav li {
  display: inline-block;
  list-style: none;
  padding: 0 30px 0 15px;
  position: relative;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .container-fluid .nav li:hover {
  background: #0096ff;
}

nav .container-fluid .nav li:hover > a {
  color: #fff;
}

nav .container-fluid .nav li:hover > a:after {
  color: #fff;
  content: "\f147";
}

nav .container-fluid .nav li:hover .submenu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .container-fluid .nav li a {
  color: #8ba4c0;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: 1px;
  line-height: 19px;
  position: relative;
}

nav .container-fluid .nav li a:after {
  content: "\f196";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #0096ff;
  right: -15px;
  position: absolute;
  bottom: 0;
}

nav .container-fluid .nav li .submenu-wrap {
  width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  z-index: 9999999999;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 90px;
  background-color: #0096ff;
  left: 0;
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

nav .container-fluid .nav li .submenu-wrap ul.submenu li {
  padding: 0;
  padding-left: 20px;
  margin: 10px 0;
}

nav .container-fluid .nav li .submenu-wrap ul.submenu li a {
  color: #fff;
  text-transform: none;
  font-size: 16px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

nav .container-fluid .nav li .submenu-wrap ul.submenu li:hover a {
  text-decoration: underline;
  color: #e6f5ff;
}

nav .container-fluid .nav li .submenu-wrap ul.submenu li:hover a:after {
  content: none;
}

nav .container-fluid .nav li .submenu-wrap ul.submenu li:before {
  content: "• ";
  margin: 0 4px;
  color: #78c4ff;
  top: 3px;
  position: absolute;
  left: 0;
}

nav .container-fluid .nav li .submenu-wrap object {
  width: 100px;
  margin-top: 20px;
}

nav .container-fluid .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

nav .container-fluid .nav-right li {
  list-style: none;
  display: inline-block;
}

nav .container-fluid .nav-right li a {
  font-family: inherit;
  text-decoration: none;
}

nav .container-fluid .nav-right li:first-child a {
  color: #0096ff;
  margin-right: 20px;
  height: 40px;
  line-height: 40px;
  position: relative;
}

nav .container-fluid .nav-right li:first-child a:before {
  content: "\f0da";
  color: #78c4ff;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  left: -12px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

nav .container-fluid .nav-right li:first-child a:hover {
  text-decoration: underline;
}

nav .container-fluid .nav-right li:first-child a:hover:before {
  text-decoration: none;
  left: -16px;
}

nav .container-fluid .nav-right li:last-child a {
  height: 40px;
  line-height: 40px;
}

nav .container-fluid .nav-right li:last-child a:before {
  color: #78c4ff;
  content: "\f023";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  margin-right: 8px;
}

nav button {
  position: absolute;
  right: 0;
}

#map {
  margin-top: 10px;
  position: relative;
}

#map.expand {
  height: 600px;
}

#map .arrow-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 70px;
  height: 70px;
  z-index: 99;
  background: #fff;
  text-align: center;
  line-height: 72px;
  font-size: 40px;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  border-radius: 50%;
  color: #0096ff;
  border: 3px solid #0096ff;
}

#map .categories {
  position: absolute;
  z-index: 99999999;
  width: 100%;
  bottom: 70px;
  text-align: center;
}

#map .categories label {
  padding-left: 35px;
  padding-right: 13px;
  position: relative;
  background: #fff;
  border-radius: 4px;
  margin-right: 10px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

#map .categories label[for="zberne-miesto"] {
  color: #ffd200;
}

#map .categories label[for="prepravca"] {
  color: #8400ff;
}

#map .categories label[for="spracovatel"] {
  color: #0096ff;
}

#map .categories label:before {
  content: '\f096';
  font-family: 'FontAwesome';
  position: absolute;
  left: 13px;
}

#map .categories input[type="checkbox"] {
  display: none;
}

#map .categories input[type="checkbox"]:checked + label:before {
  content: "\f046";
  font-family: 'FontAwesome';
}

#map .search {
  position: absolute;
  z-index: 99999999;
  width: 100%;
  top: 10px;
}

#map .search form {
  text-align: center;
}

#map .search form .search-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 780px;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
}

#map .search form .search-wrap button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 200px;
  font-family: 'AvenirNext-Medium', Sans-Serif;
}

#map .search form .search-wrap button i {
  color: #78c4ff;
}

#map .search form .search-wrap input {
  width: 100%;
  border: 1px solid #e5e5eb;
  padding: 24px;
  border-radius: 6px;
  color: #607791;
  font-family: 'AvenirNext-Medium', Sans-Serif;
}

#map .search form .search-wrap .search-result {
  background: #fff;
  border: 1px solid #e5e5eb;
  border-radius: 6px;
  margin-top: 10px;
}

#map .search form .search-wrap .search-result ul {
  text-align: left;
  padding: 0 20px;
  margin: 0;
  font-family: 'AvenirNext-Medium', Sans-Serif;
  font-size: 15px;
}

#map .search form .search-wrap .search-result ul li {
  width: 738px;
  list-style: none;
  height: 60px;
  line-height: 60px;
  border-bottom: 1px solid #fafafa;
  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;
}

#map .search form .search-wrap .search-result ul li a {
  color: #8ba4c0;
  text-decoration: none;
}

#map .search form .search-wrap .search-result ul li .category {
  height: 24px;
  line-height: 20px;
}

#map .search form .search-wrap .search-result ul li:last-child {
  background: #fafafa;
  margin-left: -20px;
  margin-right: -20px;
  text-align: center;
  display: block;
}

#map .search form .search-wrap .search-result ul li:last-child a {
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  color: #0096ff;
  text-decoration: none;
}

#map .search form .search-wrap .search-result ul li:last-child a:hover {
  text-decoration: underline;
}

section.lists {
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  margin-bottom: 10px;
}

section.lists h1 span {
  color: #0096ff;
}

section.lists p {
  font-family: 'AvenirNext-Regular', Sans-Serif;
  margin-bottom: 50px;
}

section.lists .panel {
  background: #fff;
  padding: 40px 0;
  margin-bottom: 20px;
}

section.lists .panel .badge {
  background: #0096ff;
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
}

section.lists .panel .badge object {
  padding: 25%;
  max-width: 100%;
  height: 100%;
}

section.lists .panel h2 {
  font-size: 21px;
}

section.lists .box-wrap {
  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;
  margin-bottom: 50px;
}

section.lists .box-wrap .box {
  width: 220px;
  padding: 0 20px;
}

section.lists .box-wrap .box h2 {
  font-family: 'AvenirNext-UltraLight', Sans-Serif;
  font-size: 80px;
  color: #0096ff;
  margin-bottom: 30px;
  margin-top: 0;
}

section.lists .box-wrap .box i {
  font-size: 80px;
  color: #0096ff;
  position: relative;
  opacity: 0;
}

section.lists .box-wrap .box p {
  font-size: 21px;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  margin-bottom: 0;
  color: #607791;
}

section.results {
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
}

section.results i.loading {
  color: #78c4ff;
  margin-top: 40px;
}

section.results .result-list {
  margin-top: 20px;
}

section.results .result-list .panel-result {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 30px;
}

section.results .result-list .panel-result .content-upper {
  border-bottom: 1px solid #fafafa;
  padding: 20px;
  text-align: left;
  height: 175px;
  overflow: hidden;
}

section.results .result-list .panel-result .content-upper h2 {
  font-family: 'AvenirNext-Medium', Sans-Serif;
  font-size: 21px;
  margin: 0;
  color: #607791;
}

section.results .result-list .panel-result .content-upper p {
  font-family: 'AvenirNext-Regular', Sans-Serif;
  font-size: 15px;
  margin: 10px 0 25px;
}

section.results .result-list .panel-result .content-upper p i {
  color: #0096ff;
}

section.results .result-list .panel-result .content-upper .contact-info p {
  margin-bottom: 0;
}

section.results .result-list .panel-result .content-upper .contact-info p i {
  color: #8ba4c0;
}

section.results .result-list .panel-result .content-upper .contact-info p a {
  font-family: 'AvenirNext-Medium', Sans-Serif;
  letter-spacing: 1px;
  color: #8ba4c0;
  text-decoration: none;
}

section.results .result-list .panel-result .content-bottom {
  height: 30px;
  text-align: left;
}

section.results .result-list .panel-result .tools {
  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: 10px;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  font-size: 13px;
}

section.results .result-list .panel-result .tools a {
  text-decoration: none;
  color: #0096ff;
}

section.results .result-list .panel-result .tools a i {
  margin-right: 8px;
}

section.results .result-list .panel-result .tools > a {
  position: relative;
  padding-left: 13px;
}

section.results .result-list .panel-result .tools > a i {
  margin: 0;
  position: absolute;
  left: 2px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

section.results .result-list .panel-result .tools > a:hover {
  text-decoration: underline;
}

section.results .result-list .panel-result .tools > a:hover i {
  left: -2px;
}

section.results .result-list .panel-result .tools .settings a {
  text-decoration: none;
  font-size: 20px;
  position: relative;
}

section.results .result-list .panel-result .tools .settings a i {
  color: #c7cfd8;
  margin: 0 4px;
}

section.results .result-list .panel-result .tools .settings a .tooltip {
  position: absolute;
  background-color: #8ba4c0;
  display: none;
  top: -29px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

section.results .result-list .panel-result .tools .settings a .tooltip:before {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8ba4c0;
  content: " ";
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

section.results .result-list .panel-result .tools .settings a:hover i {
  color: #0096ff;
}

section.results .result-list .panel-result .tools .settings a:hover .tooltip {
  display: block;
}

section.results.no-bold,
.no-bold {
  font-family: 'AvenirNext-Regular', Sans-Serif !important;
}

section.results .input-city-serach {
  font-family: 'AvenirNext-Regular', Sans-Serif !important;
  font-size: 14px;
  width: 100%;
  height: 34px;
  text-align: center;
}

.advanced-search-button {
  position: relative;
  top: -25px;
  right: 42px;
  font-size: 14px;
}

.pointer {
  cursor: pointer;
}

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

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

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

.text-left2 {
  text-align: left;
  padding-bottom: 10px;
}

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

.padding-left-60px {
  padding-left: 60px !important;
}

.padding-left-100px {
  padding-left: 100px !important;
}

span.red {
  color: #ea1b1b;
}

.add-to-registration {
  line-height: 46px;
  margin-bottom: 30px;
}

.margin-bottom-forms {
  margin-bottom: 12px;
}

.hide-other2 {
  display: none;
}

.search-color {
  color: #7c97b5;
}

section.register {
  background: #fff;
  padding-bottom: 0;
  margin-top: 10px;
}

section.register .selectize-control {
  height: 40px;
}

section.register .selectize-control .selectize-input {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: #fafafa;
  height: 40px;
}

section.register .selectize-control .selectize-input > input {
  position: relative !important;
}

section.register .register-container {
  max-width: 580px;
  margin: 0 auto;
}

section.register .register-container form {
  font-size: 14px;
  font-family: 'AvenirNext-Regular', Sans-Serif;
  margin-top: 50px;
}

section.register .register-container form .col-md-6, section.register .register-container form .col-md-12 {
  margin: 15px 0;
}

section.register .register-container form .col-md-6 .slctz label, section.register .register-container form .col-md-12 .slctz label {
  margin-top: 10px;
}

section.register .register-container form .col-md-6 .slctz:first-child, section.register .register-container form .col-md-12 .slctz:first-child {
  padding-right: 33.58px;
}

section.register .register-container .add,
section.register .register-container .add-new {
  font-weight: 700;
  text-decoration: none;
  color: #8ba4c0;
}

section.register .register-container .add:hover,
section.register .register-container .add-new:hover {
  color: #0096ff;
  text-decoration: underline;
}

section.register .register-container label {
  display: block;
  text-align: left;
  float: left;
  width: 100%;
}

section.register .register-container legend {
  margin-bottom: 10px;
}

section.register .register-container h2 {
  position: relative;
}

section.register .register-container h2 span {
  background: #607791;
  color: #fff;
  border-radius: 6px;
  padding: 0 10px;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  font-size: 12px;
  text-transform: uppercase;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  vertical-align: middle;
  position: relative;
}

section.register .register-container h2:before {
  height: 2px;
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  background: #c7cfd8;
  width: 100%;
}

section.register .register-container input, section.register .register-container select, section.register .register-container textarea {
  width: 100%;
  background: #fafafa;
  border: 1px solid #c7cfd8;
  border-radius: 4px;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  margin-top: 10px;
  color: #607791;
}

section.register .register-container input:focus, section.register .register-container select:focus, section.register .register-container textarea:focus {
  border-color: #0096ff;
}

section.register .register-container textarea {
  height: auto;
  line-height: normal;
  padding: 15px;
}

section.register .register-container .checkbox label {
  border: 2px solid #c7cfd8;
  padding: 10px;
  border-radius: 4px;
  -webkit-transition: all .5s;
  transition: all .5s;
  text-transform: uppercase;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}

section.register .register-container .checkbox input[type="checkbox"] {
  display: none;
}

section.register .register-container .checkbox span {
  display: block;
}

section.register .register-container .checkbox span.check {
  width: 20px;
  height: 20px;
  border: 1px solid #c7cfd8;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 10px;
}

section.register .register-container .checkbox span.check:before {
  content: "\f00c";
  font-family: FontAwesome;
  color: #fff;
  font-size: 18px;
}

section.register .register-container .checkbox input[type="checkbox"]:checked + label {
  border-color: #0096ff;
  color: #0096ff;
}

section.register .register-container .checkbox input[type="checkbox"]:checked + label .check:before {
  color: #0096ff;
}

section.register .register-container .radio-buttons {
  text-align: left;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  height: 40px;
  line-height: 40px;
}

section.register .register-container .radio-buttons label {
  float: none;
  display: inline-block;
  width: auto;
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 12px;
}

section.register .register-container .radio-buttons label span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fafafa;
  vertical-align: text-bottom;
  border-radius: 50%;
  border: 1px solid #c7cfd8;
  margin-right: 6px;
  position: relative;
}

section.register .register-container .radio-buttons label span:before {
  width: 0;
  height: 0;
  display: block;
  content: " ";
  border-radius: 50%;
  -webkit-transition: all .2s;
  transition: all .2s;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

section.register .register-container .radio-buttons input[type="radio"] {
  display: none;
}

section.register .register-container .radio-buttons input[type="radio"]:checked + label span:before {
  background: #0096ff;
  width: 14px;
  height: 14px;
}

section.catalog {
  background-color: #fff;
  margin-top: 10px;
  padding-bottom: 0;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
}

section.catalog h1 {
  margin-bottom: 50px;
  margin-top: 0;
}

section.catalog table {
  width: 1110px;
  border: 1px solid #f0f0f5;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 15px;
  letter-spacing: 1px;
  color: #232c35;
}

section.catalog table .settings a i {
  color: #8ba4c0;
}

section.catalog table .settings a:hover i {
  color: #0096ff;
}

section.catalog table tr {
  border: 1px solid #f0f0f5;
  height: 50px;
  line-height: 26px;
}

section.catalog table tr th {
  padding: 0 5px;
}

section.catalog table tr th input {
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #607791;
  width: 100%;
  padding: 0 10px;
  background: #fafafc;
  border: none;
  border-radius: 6px;
}

section.catalog table tr th:nth-child(4) {
  text-align: left;
}

section.catalog table tr th:nth-child(5) {
  text-align: left;
}

section.catalog table tr th:nth-child(6) {
  text-align: left;
}

section.catalog table tr th:last-child input {
  display: none;
}

section.catalog table tr td {
  padding: 20px 0;
}

section.catalog table tr td:nth-child(1) {
  width: 60px;
}

section.catalog table tr td:nth-child(2) {
  width: 60px;
}

section.catalog table tr td:nth-child(3) {
  width: 60px;
}

section.catalog table tr td:nth-child(4) {
  text-align: left;
  font-family: 'AvenirNext-Regular', Sans-Serif;
  padding: 0 30px;
}

section.catalog table tr td:nth-child(5) {
  font-family: 'AvenirNext-Regular', Sans-Serif;
  width: 120px;
  text-align: left;
  padding: 0 30px;
}

section.catalog table tr td:nth-child(6) {
  font-family: 'AvenirNext-Regular', Sans-Serif;
  width: 80px;
  text-align: left;
  padding: 0 30px;
}

section.catalog table tr td:nth-child(7) {
  width: 150px;
}

section.catalog table tr:nth-child(even) {
  background-color: #fafafa;
}

section.catalog table tr:nth-child(odd) {
  background-color: #fff;
}

section.catalog table thead tr, section.catalog table tfoot tr {
  background-color: #f0f0f5 !important;
}

section.partners {
  background: #fff;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
}

section.partners h1 {
  margin-bottom: 50px;
  margin-top: 0;
}

section.detail {
  text-align: left;
}

section.detail h1 {
  margin-bottom: 20px;
}

section.detail table {
  width: 100%;
}

section.detail .company-info {
  font-family: 'AvenirNext-Medium', Sans-Serif;
  padding: 0;
  margin-bottom: 40px;
  font-size: 15px;
}

section.detail .company-info:after {
  content: "";
  display: table;
  clear: both;
}

section.detail .company-info li {
  float: left;
}

section.detail .company-info li:not(:first-child) {
  margin-left: 30px;
}

section.detail .company-info li:first-child {
  list-style: none;
}

section.detail .company-info li span {
  color: #0096ff;
}

section.detail p.description {
  line-height: 26px;
  margin-bottom: 30px;
}

section.detail p.detail_link a {
  font-weight: normal;
  font-family: 'AvenirNext-Regular', sans-serif;
}

section.detail h2 {
  font-size: 18px;
  margin-bottom: 26px;
}

section.detail h3 {
  font-size: 15px;
}

section.detail p {
  font-size: 15px;
}

section.branch {
  text-align: left;
}

section.branch h1 {
  margin-bottom: 40px;
}

section.info {
  text-align: left;
  font-size: 15px;
}

section.info h1 {
  margin-top: 0;
  margin-bottom: 40px;
}

section.info h2 {
  font-size: 15px;
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  margin: 0;
}

section.info p {
  margin-top: 10px;
  margin-bottom: 10px;
}

section.info p:not(:last-child) {
  margin-bottom: 25px;
}

section.alert {
  padding: 0;
}

a.btn-link {
  color: #0096ff;
  text-decoration: none;
}

a:hover.btn-link {
  text-decoration: underline;
}

footer {
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  padding: 100px 0;
  background: #0096ff;
}

footer h2 {
  font-size: 16px;
  color: #78c4ff;
}

footer ul {
  margin: 0;
  padding: 0;
  font-family: 'AvenirNext-Medium', Sans-Serif;
  margin-bottom: 40px;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
}

footer ul li a:hover {
  text-decoration: underline;
}

footer ul li::before {
  content: "• ";
  margin: 0 4px;
  color: #78c4ff;
}

.pre-footer {
  font-family: 'AvenirNext-DemiBold', Sans-Serif;
  font-size: 14px;
}

.pre-footer p {
  text-align: center;
  margin: 0;
  padding: 27px 0;
}

.display-hide {
  display: none;
}

@media (min-width: 1197px) {
  nav .container-fluid .nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 1196px) {
  nav .container-fluid .responsive-button {
    display: block;
    border-radius: 4px;
    padding: 10px 12px;
    font-weight: 100;
    -webkit-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
    margin: 0 auto;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    padding-left: 40px;
    height: auto;
    line-height: normal;
  }
  nav .container-fluid .responsive-button.open {
    background: #0096ff;
    color: #fff;
  }
  nav .container-fluid .responsive-button.open .button-lines .bar {
    background: #fff;
  }
  nav .container-fluid .responsive-button.open .button-lines .bar:nth-child(1) {
    top: 7px;
    width: 0%;
    left: 50%;
  }
  nav .container-fluid .responsive-button.open .button-lines .bar:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  nav .container-fluid .responsive-button.open .button-lines .bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  nav .container-fluid .responsive-button.open .button-lines .bar:nth-child(4) {
    top: 7px;
    width: 0%;
    left: 50%;
  }
  nav .container-fluid .responsive-button .button-lines {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 8px;
    position: absolute;
    top: 13px;
    left: 12px;
  }
  nav .container-fluid .responsive-button .button-lines .bar {
    width: 20px;
    height: 2px;
    background: #fff;
    display: block;
    position: absolute;
    -webkit-transition: all .2s;
    transition: all .2s;
  }
  nav .container-fluid .responsive-button .button-lines .bar:nth-child(1) {
    top: 0px;
  }
  nav .container-fluid .responsive-button .button-lines .bar:nth-child(2) {
    top: 6px;
  }
  nav .container-fluid .responsive-button .button-lines .bar:nth-child(3) {
    top: 6px;
  }
  nav .container-fluid .responsive-button .button-lines .bar:nth-child(4) {
    top: 12px;
  }
  nav .container-fluid .nav {
    display: none;
    position: absolute;
    background: #fff;
    z-index: 9999999999999999999999999;
    height: auto;
    width: 100%;
    left: 0;
    top: 80px;
    max-height: 85vh;
    overflow: scroll;
  }
  nav .container-fluid .nav li {
    display: block;
    padding: 8px 15px;
  }
  nav .container-fluid .nav li:hover {
    background: transparent;
  }
  nav .container-fluid .nav li:hover a {
    color: #8ba4c0;
  }
  nav .container-fluid .nav li a:after {
    content: none;
  }
  nav .container-fluid .nav li .submenu-wrap {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background: transparent;
    padding: 0;
  }
  nav .container-fluid .nav li .submenu-wrap ul.submenu li a {
    color: #0096ff;
  }
  nav .container-fluid .nav li .submenu-wrap ul.submenu li:hover a {
    color: #0096ff;
  }
}

@media (max-width: 767px) {
  .arrow-animation {
    animation: arrowAnimationResponsive linear 5s;
    -webkit-animation: arrowAnimationResponsive linear 5s;
    -moz-animation: arrowAnimationResponsive linear 5s;
    -moz-animation-iteration-count: infinite;
    -moz-transform-origin: 50% 50%;
    -o-animation: arrowAnimationResponsive linear 5s;
    -o-animation-iteration-count: infinite;
    -o-transform-origin: 50% 50%;
    -ms-animation: arrowAnimationResponsive linear 5s;
    -ms-animation-iteration-count: infinite;
    -ms-transform-origin: 50% 50%;
  }
  section.lists .box-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.lists .box-wrap i:before {
    content: "\f103";
  }
}

@media (max-width: 575px) {
  section.register .register-container .checkbox label {
    margin-bottom: 20px;
  }
}
