.addline {
  position: -webkit-sticky;
  position: sticky;
  float: right;
  cursor: pointer;
  right: 20px;
  bottom: 90px;
  margin-top: -140px;
  z-index: 999;

  img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.4));
  }
}
.scroll-to-top {
  position: -webkit-sticky;
  position: sticky;
  float: right;
  background: #00d647;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.27);
  cursor: pointer;
  right: 30px;
  bottom: 40px;
  margin-top: 45px;
  z-index: 999;

  svg {
    fill: #fff;
    width: 20px;
    height: 20px;
  }
}
#footer {
  display: flex;
  width: 100%;
  // margin-bottom: 10px;

  .home {
    background: #0053c3;
    color: #fff;
    padding: 40px 11%;
    width: 100%;
    display: flex;

    a {
      color: #fff;
    }

    &__contact {
      width: 50%;
      &--title{
        font-size: 24px;
        font-weight: 500;
      }
      &--link{
        display: flex;
      }
      &--contact{
        display: inline-flex;
        padding: 15px 15px 15px 0;
        font-size: 22px;
        font-weight: 500;

        img{
          width: 20px;
          margin-right: 10px;
        }
      }
    }
    &__policy{
      width: 50%;
      text-align: right;
      font-family: 'mitr-light';

      &--button {
        padding: 7px 20px;
        border: 1px solid #fff;
        border-radius: 30px;
        margin-left: 10px;
        display: inline-block;
        font-size: 14px;
      }
      &--rightsreserved{
        font-size: 12px;
        margin-top: 20px;
      }
    }
  }

  .already_login {
    // width: calc(85vh + 400px + 45px);
    margin: 20px auto;
    width: 85%;
  }

  .policy {
    font-size: $font-size-small;
    padding: 0;
		line-height: 1.5;
		color: $text-grey;
		
    a {
			color: $text-grey;
      text-decoration: underline;
    }
  }

  @media only screen and (max-width: 992px) {
    position: unset;

    .home {
      flex-wrap: wrap;
      padding: 40px 5% 50px;

      &__contact {
        width: 100%;
        &--title{
          margin-bottom: 20px;
        }
        &--link{
          display: block;
        }
        &--contact{
          padding: 0;
        }
      }
      &__policy{
        width: 100%;
        text-align: left;
        margin-top: 20px;
        &--button{
          margin: 0;
        }
      }
    }
    .already_login {
      margin: 0 auto !important;
      width: 100%;
      max-width: 450px;
      // background: #f2f2f2;
    }

    .policy {
      padding: 20px 0;
      text-align: center;

      a {
				margin-left: 0px;
				display: block;
      }
    }
  }

  @media only screen and (width: 1024px) {
    .home {
    }
    .already_login {
      max-width: 984px;
    }
  }
  /* ----------- iPad Portrait ----------- */
  @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .home {
    }
  }
}

#footer.center {
  text-align: center;
}

.footer_signup {
  width: 100% !important;
  margin: 20px 0 !important;
  padding: 0 5%;
}

@media only screen and (max-width: 992px) {
  .addline {
    right: 10px;
    bottom: 70px;
  }
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    margin-top: -40px;
  }
}
