@import "../../var";
.damage-preview-container{
    width: 100%;
    max-height: 300px;   
}

.camera-portrait-container{
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    .camera-portrait{
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    .camera-bottom{
        background:#0f0f0f9e;
        position: fixed;
        left: 0;
        width: 100%;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
        box-shadow: -2px 0px 4px rgba(33, 56, 113, 0.1);
    }
    .capture-photo{
        background: $white;
        position: relative;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        &::after{
          content: "";
          width: 100%;
          height: 100%;
          border: solid 2px $color_iridium;
          display: block;
          border-radius: 50%;
          transform: scale(0.75);
        }
      }
}

.phone-rotate-message-portrait{
    width: 100%;
    height: 100%;
    background:$bright_gray;
    z-index: 9999;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    h3{
        font-size: $fs-24;
        margin-top: 24px;
    }
    img{
        max-height: 60%;
        max-width: 60%;
    }
  }

  @media screen and (orientation: landscape) {
    .phone-rotate-message-portrait {
      display: flex;
    }
  }