@media (max-width: 800px) {
    .col-250-px {
        width: 240px;
    }
}

@media (min-width: 801px) {
    .col-250-px {
        width: 230px;
    }
}

@media (min-width: 1366px) {
    .col-250-px {
        width: 250px;
    }
}

@media (min-width: 1919.98px) {
    .col-250-px {
        width: 260px;
    }
}

@media (min-width: 2559.98px) {
    .col-250-px {
        width: 270px;
    }
}

@media (min-width: 3839.98px) {
    .col-250-px {
        width: 285px;
    }
}

/* CSS for the Photos app */

/* Ribbon for pending approval photos */
.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 150px;
  height: 150px;
  text-align: right;
}

.ribbon span {
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 30px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 200px;
  display: block;
  background: #F44336;
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 35px;
  right: -50px;
}

.ribbon span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #8F0808;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #8F0808;
}

.ribbon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #8F0808;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #8F0808;
}

.ribbon-top-right {
  top: -10px;
  right: -10px;
}