.ac-mobile {
  position: relative;
  width: 360px;
  height: 662px;
  margin: auto;
  border: 15px $white-100 solid;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0px 18px 27px rgba(0, 0, 0, 0.03);

  &:before {
    content: "";
    display: block;
    width: 190px;
    height: 25px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: $white-100;
    border-radius: 0 0 50px 50px;
  }

  &:after {
    content: "";
    display: block;
    width: 85px;
    height: 10px;
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border-radius: 10px;
  }

  .content {
    width: 360px;
    height: 640px;
    background-color: white;
  }

  .circle-shape {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    display: block;
    position: absolute;
    top: 2px;
    right: 106px;
    z-index: 9;
  }
}

// for laptop
.ac-laptop-wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 683px;
  margin: 0 auto;

  .laptop-bottom {
    content: "";
    display: block;
    position: absolute;
    width: calc(683px + 200px);
    height: 30px;
    background-color: $white-100;
    border-radius: 6px 6px 12px 12px;
    top: 390px;
    left: -100px;

    &:after {
      position: absolute;
      content: "";
      left: 0;
      bottom: -10px;
      width: 100%;
      height: 20px;
      border-radius: 0 0 40px 40px;
      background-color: $white-100;
      box-shadow: 0px 18px 27px rgba(0, 0, 0, 0.03);
    }
  }
}

.ac-laptop {
  transform-origin: 0 0;
  width: 1366px;
  height: 800px;
  border-radius: 50px 50px 0 0;
  border-style: solid;
  border-color: $white-100;
  border-width: 30px;
  border-top-width: 40px;
  background-color: $white-100;
  overflow: hidden;
  box-shadow: 0px 18px 27px rgba(0, 0, 0, 0.03);
  transform: scale(0.5);

  .content {
    width: 1366px;
    height: 800px;
    overflow: hidden;
    border: none;
  }
}

// preview laptop and mobile view
.post-body-wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 20px;
  background-color: $white-100;
  padding: 20px;
  border-radius: 4px;

  .left-content {
    padding: 20px;
    border-radius: 4px;
    background-color: transparent;

    h3 {
      margin-bottom: 30px;
      font-size: 28px;
      font-family: "roboto";
    }
  }

  .right-content {
    border-radius: 4px;
    background-color: transparent;
  }
}

/****************************************
Responsive Classes
*****************************************/
// Extra small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) {
}

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) and (max-width: 767.98px) {
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) and (max-width: 991.98px) {
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) and (max-width: 1199.98px) {
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
}
