﻿.image-plus {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .image-plus .image-desktop {
    display: none;
  }
}
.image-plus .image-tablet {
  display: none;
}
@media screen and (max-width: 1023px) {
  .image-plus .image-tablet {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .image-plus .image-tablet {
    display: none;
  }
}
.image-plus .image-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .image-plus .image-mobile {
    display: block;
  }
}
.image-plus img {
  max-width: 100%;
}
.image-plus .justification-left {
  margin-right: auto;
}
.image-plus .justification-center {
  margin-left: auto;
  margin-right: auto;
}
.image-plus .justification-right {
  margin-left: auto;
}
