#spothit_preview {

    .smartphone {
      margin: 0 auto;
      height: 540px;
      width: 280px;
      border-radius: 25px;
      background-color: white;
      @extend %shadow-right;
  
      &__top {
        height: 40px;
        position: relative;
  
        .speaker{
          display: inline-block;
          width: 60px;
          height: 4px;
          border-radius: 2px;
          background-color: #777;
          position: absolute;
          top: 18px;
          left: 100px;
        }
  
        .camera{
          display: inline-block;
          width: 4px;
          height: 4px;
          border-radius: 2px;
          background-color: #777;
          position: absolute;
          top: 18px;
          left: 180px;
        }
  
        .hour{
          display: inline-block;
          height: 20px;
          line-height: 20px;
          font-size: 14px;
          position: absolute;
          top: 10px;
          left: 20px;
        }
  
        .network{
          display: inline-block;
          height: 20px;
          line-height: 20px;
          font-size: 14px;
          position: absolute;
          top: 10px;
          right: 20px;
        }
  
      }
  
      &__screen {
        position: relative;
        height: 420px;
        width: 100%;
        background-color: $grey-background;
  
        div {

          &.smartphone_sender {
            font-weight: 300;
            font-size: 24px;
            text-align: center;
            text-transform: uppercase;
            padding: 25px 0;
          }
  
          &.smartphone_initials {
            left: 30px;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: 50px;
            border-radius: 50%;
            background-color: $blue-primary;
            color: #fff;
          }
  
          &.message {
            box-sizing: border-box;
            position: absolute;
            left: 60px;
            background-color: white;
            border-radius: 20px;
            height: 320px;
            width: 200px;
            padding: 20px 27px;
            font-size: 14px;
            font-weight: 400;
            overflow-x: hidden;
            overflow-y: scroll;
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
            p {
              text-overflow: ellipsis; 
              display: block; 
              overflow: hidden; 
              white-space: wrap;
            }

            &::-webkit-scrollbar {
              display: none;
            }
          }

          &.email_sender{

            position: absolute;
            left: 0px;
            top: 0px;
            background-color: #F0F0F1;
            height: 60px;
            width: 280px;
            padding: 15px 15px 0px 15px;
            font-size: 12px;
            font-weight: 400;
          }

          &.email_preview{
            position: absolute;
            left: 0px;
            top: 60px;
            background-color: #fff;
            height: 360px;
            width: 280px;
            padding: 20px 27px;
            font-size: 14px;
            font-weight: 400;
          }
  
          &.initials{
            left: 30px;
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 50px;
            width: 50px;
            border-radius: 50%;
            background-color: $blue-primary;
            color: #fff;
  
            p {
              width: 100%;
              font-weight: 300;
              font-size: 20px;
              color: white;
            }
          }
        }
      }
    }

    .email-preview{
      .title{
        height: 70px;
        padding: 10px;
        font-size: 13px;
        white-space: nowrap;
        span{
          text-overflow: ellipsis; 
          display: block; 
          overflow: hidden; 
          white-space: nowrap;
        }
      }
      .email-content{
        height: 350px;
        background-color: #fff;
        padding: 10px;
        overflow-x: hidden;
        text-overflow: ellipsis; 
        img{
          width: 100%;
          max-width: 100%;
        }
      }

      .smartphone__screen {
        div {
          .smartphone_sender {
            font-family: sans-serif;
            font-size: 13px;
            text-align: left;
            text-transform: none;
            padding: 0;
          }
        }
      }

    }

  }

  @media screen and (max-width: 1500px) {
    #spothit_preview {
      display: none;
    }
    
  }