/*
0 - 600px:		Phone
600 - 900px:	Tablet Portrait
900	- 1200px:	Tablet Landscape
[1200-1800] is where our normal styles apply
1800px +:		Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.popup {
  overflow: hidden;
  position: relative;
  display: block;
  z-index: 1000;
  transition: all 0.3s;
  top: 0;
  left: 0;
}
.popup:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-radius: 3.75pt;
  top: 0;
  z-index: -1;
  background: rgba(33, 48, 59, 0.52);
}
.popup__content {
  margin: 5% auto;
  width: 60%;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  overflow: hidden;
  display: block;
  transition: all 0.5s 0.2s;
}
.popup__left {
  height: 100%;
  width: 40%;
  color: #fff;
  float: left;
  display: block;
}
.popup__left h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 700;
}
.popup__left h1 span {
  padding: 0.625pc 0;
  font-weight: 600;
  font-size: 1.5pc;
  color: #fff;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.popup__left p {
  font-weight: 400;
  font-size: 0.15625in;
}
.popup__left h4 {
  border-image: none;
  padding-top: 15px;
  border-top: solid 1px #525f6d;
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 700;
}
.popup__left ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.popup__left ul li {
  margin-bottom: 0.052083333in;
  list-style-type: none;
  line-height: 18pt;
  font-size: 15px;
}
.popup__left ul li a {
  display: block;
  padding: 0.75pc;
  text-decoration: none !important;
}
.popup__left ul li a i {
  padding-right: 0.072916667in;
}
.popup__left ul li .social-google {
  background: #f24033;
}
.popup__left ul li .social-facebook {
  background: #39579a;
}
.popup__left ul li .social-twitter {
  background: #24a9e6;
}
.popup__right {
  width: 100%;
  padding: 3rem;
}
.popup__right h4 {
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .popup__right {
    width: 60%;
    padding: 1.5rem;
  }
  .popup__content {
    flex-direction: column;
    width: 85%;
    margin: 1rem auto;
  }
}
.bg-login {
  background: #728294 !important;
}
