.screen_photo {
  border-radius: 4px;
  width: 92%;
  position: relative;
  cursor: pointer;
  margin: 10px 4%;
  overflow: hidden;
  box-shadow: 0px 0px 9px 2px rgba(17, 17, 17, 0.18);
  background: white;
}

.added_photo_container {
  width: 100%;
  max-height: 500px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: inherit;
}

.added_photo_blur {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.added_photo_blur_inner {
  position: absolute;
  width: 120%;
  min-height: 120%;
  top: -10%;
  left: -10%;
  filter: blur(7px);
}

.added_photo_blur_cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
}

.added_photo {
  width: 500px;
  height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.added_photo > img {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.photo_description {
  text-align: left;
  padding: 5px;
}

.photo_description > .head_text {
  font-family: OpenSans;
  font-size: 18.62px;
  color: #222;
  margin: 9px 10px 8px 10px;
  font-weight: 500;
}

.photo_description > .minor_text {
  font-family: OpenSans;
  font-size: 15.92px;
  color: #666;
  margin: 0 10px 10px 10px;
}

.photo_link {
  min-height: 50px;
  border-top: 1px solid #dddddd;
  text-align: center;
}

.photo_link > a {
  font-family: OpenSans;
  font-size: 18.62px;
  text-decoration: none;
  display: block;
  color: #167ac6;
  font-weight: 500;
  white-space: pre-wrap;
  padding: 12px 10px !important;
  margin: 0;
  word-break: break-word;
}

.photo_link > a:hover {
  color: #428bca;
}

.slick-slide {
  height: initial;
  height: auto;
  width: 6px;
  border-radius: 3px;
  margin-bottom: 35px;
}

.slick-dots {
  padding-bottom: 33px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 5px;
  height: 5px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}

.slick-dots li button:before {
  font-size: 6px;
  line-height: 7px;
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  text-align: center;
  opacity: 0.5;
  color: #000;
  border: 0.5px solid white;
  border-radius: 50%;
}

@media screen and (max-width: 545px) {
  .added_photo_container {
    display: block;
  }

  .added_photo {
    margin-left: auto;
    margin-right: auto;
    padding-top: 50%;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
  }
}
