@charset "UTF-8";

body .popup {
  position: fixed;
  z-index: 20;
  bottom: 0;
  right: 0;

  width: 100%;
  padding: 30px;

  box-sizing: border-box;

  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);

  background-color: #022B5A;
  color: white;

  transform: translateY(100%);
  transition: transform 200ms cubic-bezier(0.0, 0.0, 0.2, 1);
}

@media (min-width: 768px) {
  body .popup {
    right: 40px;
    width: auto;
    max-width: 312px;

    padding: 40px;
  }
}

body.show-popup .popup {
  transform: translateY(0);
  transition: transform 250ms cubic-bezier(0.0, 0.0, 0.2, 1);
}

body .popup .popup__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;

  margin-bottom: 30px;
}

body .popup .popup__header span {
  display: inline-block;

  font-family: "Neo Sans W01 Bold", sans-serif;
  font-size: 16px;
  line-height: 20px;
}

@media (min-width: 1024px) {
  body .popup .popup__header span {
    font-size: 20px;
    line-height: 24px;
  }
}

body .popup .popup__header span.close {
  width: 18px;
  height: 18px;

  cursor: pointer;

  background-image: url('/public/image/close-icon-white@2x.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

body .popup .popup__content {
  margin-bottom: 30px;
}

body .popup .popup__content span {
  display: inline-block;

  font-family: "Neo Sans W01", sans-serif;
  font-size: 16px;
  line-height: 20px;
}

body .popup .popup__content span.left {
  width: 40%;
  float:left;
  padding-right: 15px;
}

body .popup .popup__content span.right {
  width: 60%;
  float:right;
}

@media (min-width: 1024px) {
  body .popup .popup__content span {
    font-size: 20px;
    line-height: 24px;
  }
}

body .popup .popup__footer .button {
  padding-left: 50px;
  padding-right: 0;
  background-image: url("../../image/icon-linkedin-white.png");
  background-size: 20px 20px !important;
  background-repeat: no-repeat;
  background-position: 15px center;
  background-color:
  transparent;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 2px solid #ffffff;
  border-right-color: rgb(255, 255, 255);
  border-right-style: solid;
  border-right-width: 2px;
  border-right: 0;
  position: relative;
  overflow: visible;
}

body .popup .popup__footer .button:hover::before {
  background-color: transparent;
}

body .popup .popup__footer .button::before {
  width: 50px;
  height: calc(100% + 4px);
  content: '';
  position: absolute;
  left: unset;
  right: -48px;
  top: -2px;
  background: transparent url("../../image/button-linkedin-after.svg") no-repeat right;
  background-size: auto;
  background-size: cover;
}
