/* <hr> Gradient transparent - color - transparent */

.flexi_hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
}

/* Flexi Image */
.flexi-image-container {
  max-width: 100%;
}

/* Fit image into div */

.flexi-image-wrapper_large {
  width: var(--flexi_l_width);
  height: var(--flexi_l_height);
  border: 0px solid #eee;
  display: table-cell;
}
.flexi-image-wrapper_large img {
  object-fit: contain;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.flexi-image-wrapper {
  width: var(--flexi_user_width);
  height: var(--flexi_user_height);
  border: 0px solid #eee;
}
@media only screen and (max-width: 768px) {
  .flexi-image-wrapper {
    width: var(--flexi_m_width);
    height: var(--flexi_m_height);
    border: 0px solid #eee;
  }
}

.flexi-image-wrapper-thumb {
  width: var(--flexi_t_width);
  height: var(--flexi_t_height);
  border: 0px solid #eee;
}
.flexi-image-wrapper-icon {
  width: 75px;
  height: 75px;
  border: 0px solid #eee;
}
.flexi-image-wrapper img,
.flexi-image-wrapper-thumb img,
.flexi-image-wrapper-icon img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.flexi_padding {
  padding: var(--flexi_padding);
}

/* Basic list */
.flexi_list {
  display: table;
  list-style: none;
  padding-left: 0;
  font-size: 12px;
}

.flexi_list > li {
  display: table-row;
}

.flexi_list > li > * {
  display: table-cell;
  padding: 5px;
  border-bottom: 1px solid #eee;
}

.flexi_list label {
  font-weight: bold;
  text-align: right;
  font-size: 12px;
  color: #888;
  font-style: normal;
}

.flexi_list label:after {
  content: "";
}

/* Avatar list */

.flexi_user-list {
  list-style: none;
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
  padding: 0;
}

.flexi_user-list li {
  display: inline-block;
  box-sizing: border-box;

  text-align: left;
  font: normal 14px sans-serif;
  padding: 15px;

  min-width: 200px;
}

.flexi_user-list .user-avatar {
  float: left;
  padding-right: 10px;
}

.flexi_user-list .user-avatar img {
  border-radius: 50%;
  border: 0;
}

.flexi_user-list .user-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 5px 0 0;
  max-width: 160px;
}

.flexi_user-list .user-name a {
  color: #5d6569;
  text-decoration: none;
  font-weight: bold;
}

.flexi_user-list .user-name span {
  display: block;
  font-size: 11px;
  color: #808d93;
  padding-top: 4px;
  font-weight: normal;
}

/* Icon list */

.flexi-icon-list-frame {
  list-style: none;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  padding: 0;
}

.flexi-icon-list-frame li {
  display: inline-block;
  box-sizing: border-box;
  position: relative;

  text-align: left;
  font: normal 14px sans-serif;

  background-color: #f4f8fa;
  border: 1px solid #dbe3e7;
  box-shadow: 0 2px 3px #dbe3e7;

  width: 260px;
  margin: 12px;
}

.flexi-icon-list-frame .user-avatar {
  float: left;
  padding: 10px 15px;
}

.flexi-icon-list-frame .user-avatar img {
  border-radius: 50%;
  border: 0;
}

.flexi-icon-list-frame .user-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 19px 0 0;
  max-width: 150px;
}

.flexi-icon-list-frame .user-name a {
  color: #5d6569;
  text-decoration: none;
  font-weight: bold;
}

.flexi-icon-list-frame .user-name span {
  display: block;
  font-size: 11px;
  color: #808d93;
  padding-top: 4px;
}

/* Responsive image gallery */

div.flexi_gallery_grid {
  border: 0px solid #ccc;
  box-sizing: border-box;
}
.flexi_responsive_fixed {
  padding: 0px;
  float: left;
  box-sizing: border-box;
}

.flexi_responsive {
  padding: var(--flexi_padding);
  float: left;
  box-sizing: border-box;
}

@media only screen and (max-width: 700px) {
  .flexi_responsive {
    width: 49.99999%;
    margin: 6px 0;
    box-sizing: border-box;
  }
}

@media only screen and (max-width: 500px) {
  .flexi_responsive {
    width: 100%;
    box-sizing: border-box;
  }
}

/* Responsive table */
.flexi_wrapper {
  margin: 0 auto;
  padding: 1px;
  max-width: 800px;
}

.flexi_table {
  margin: 0 0 40px 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: table;
}
@media screen and (max-width: 580px) {
  .flexi_table {
    display: block;
  }
}

.flexi_row {
  display: table-row;
  background: #f6f6f6;
}
.flexi_row:nth-of-type(odd) {
  background: #e9e9e9;
}
.flexi_row.flexi_header {
  font-weight: 900;
  color: #ffffff;
}

.flexi_row.flexi_gray {
  background: rgb(68, 67, 67);
}
@media screen and (max-width: 580px) {
  .flexi_row {
    padding: 14px 0 7px;
    display: block;
  }
  .flexi_row.flexi_header {
    padding: 0;
    height: 6px;
  }
  .flexi_row.flexi_header .flexi_cell {
    display: none;
  }
  .flexi_row .flexi_cell {
    margin-bottom: 10px;
  }
  .flexi_row .flexi_cell:before {
    margin-bottom: 3px;
    content: attr(data-title);
    min-width: 98px;
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #969696;
    display: block;
  }
}

.flexi_cell {
  padding: 6px 12px;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 580px) {
  .flexi_cell {
    padding: 2px 16px;
    display: block;
  }
}

/* Custom Fields Meta key */
.flexi_custom_field {
  display: table;
  list-style: none;
  padding-left: 0;
}

.flexi_custom_field > li {
  display: table-row;
  background-color: #eee;
}

.flexi_custom_field > li:nth-child(even):not(.alert) {
  background-color: #ddd;
}

.flexi_custom_field > li > * {
  display: table-cell;
  padding: 2px;
}

.flexi_custom_field label {
  font-weight: bold;
  text-align: left;
}

.flexi_custom_field label:after {
  content: ": ";
}
/* Pagination */
.flexi-pagination {
  margin-top: 1em;
}
.flexi-pagination .page-numbers .current,
.flexi-pagination .page-numbers li a:hover {
  padding: 3px 7px !important;
  background: #ddd !important;
  border: 1px solid #bbb !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.flexi-pagination .page-numbers a:link,
.flexi-pagination .page-numbers a:visited {
  display: inline !important;
  text-decoration: none !important;
  background: #eee !important;
  color: #666 !important;
  padding: 3px 7px !important;
  border: 1px solid #ddd !important;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.flexi-pagination .page-numbers li {
  display: inline;
  margin: 2px;
}

.flexi-result-count {
  width: 46%;
  float: right;
  text-align: right;
  margin-bottom: 0;
}

/* Notification */
.flexi_alert-box {
  color: #555;
  border-radius: 10px;
  font-size: 12px;
  padding: 10px 36px;
  margin: 10px;
}

.flexi_error {
  background: #ffecec url("../images/error.png") no-repeat 10px 50%;
  border: 1px solid #f5aca6;
}
.flexi_success {
  background: #e9ffd9 url("../images/success.png") no-repeat 10px 50%;
  border: 1px solid #a6ca8a;
}
.flexi_warning {
  background: #fff8c4 url("../images/warning.png") no-repeat 10px 50%;
  border: 1px solid #f2c779;
}
.flexi_notice {
  background: #e3f7fc url("../images/notice.png") no-repeat 10px 50%;
  border: 1px solid #8ed9f6;
}

/* Common */
.flexi_margin-box {
  padding: 0.1em;
}

/* badge */
.flexi_badge {
  box-sizing: border-box;
  font-size: 11px;
  margin: 1px 1px;
  padding-top: 0.3em;
  padding-right: 0.4em;
  padding-left: 0.4em;
  padding-bottom: 0.2em;
  min-width: 1.5em; /* 1em + padding-top + padding-bottom */
  min-height: 1em;
  line-height: 1em;
  display: inline-block;
  color: black;
  text-align: center;
  background-image: linear-gradient(rgb(247, 236, 19), rgb(184, 137, 45));
  border-radius: 1em;
}
.flexi_badge_green {
  box-sizing: border-box;
  font-size: 11px;
  margin: 1px 1px;
  padding-top: 0.3em;
  padding-right: 0.4em;
  padding-left: 0.4em;
  padding-bottom: 0.2em;
  min-width: 1.5em; /* 1em + padding-top + padding-bottom */
  min-height: 1em;
  line-height: 1em;
  display: inline-block;
  color: black;
  text-align: center;
  background-image: linear-gradient(rgb(102, 250, 122), rgb(19, 184, 60));
  border-radius: 1em;
}

/* TAGS */
/* TAGS */
.flexi_tag {
  display: inline-block;
  border: 1px solid;
  border-radius: 3px;
  height: 22px;
  max-width: 100%;
  padding: 0.1em 0.5em 0.2em 12.24264px;
  margin-bottom: 0.25em;
  margin-left: 11px;
  box-sizing: border-box;
  position: relative;
  font-size: 12px;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
}
.flexi_tag span {
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
.flexi_tag:before {
  content: "";
  display: inline-block;
  border-radius: 3px;
  border-bottom-left-radius: 4px;
  border-color: inherit;
  border-left: 1.25px solid;
  border-bottom: 1.2px solid;
  background-color: inherit;
  height: 17.21371px;
  width: 17.21371px;
  box-sizing: border-box;
  position: absolute;
  top: -2.24264px;
  left: 1px;
  z-index: 2;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.flexi_tag:after {
  content: "";
  display: block;
  background-color: mediumspringgreen;
  border-radius: 100%;
  border: 1px solid;
  height: 4px;
  width: 4px;
  position: absolute;
  left: 1px;
  top: 8px;
  z-index: 3;
}

.flexi_tag-default {
  background-color: #eee;
  color: #666;
}
.flexi_tag-default,
.flexi_tag-default:before,
.flexi_tag-default:after {
  border-color: #c8c8c8;
}
.flexi_tag-default[href]:hover,
.flexi_tag-default[href]:focus,
.flexi_tag-default .hover:hover,
.flexi_tag-default .hover:focus {
  background-color: #d5d5d5;
}
.flexi_tag-default[href]:hover,
.flexi_tag-default[href]:hover:before,
.flexi_tag-default[href]:hover:after,
.flexi_tag-default[href]:focus,
.flexi_tag-default[href]:focus:before,
.flexi_tag-default[href]:focus:after,
.flexi_tag-default .hover:hover,
.flexi_tag-default .hover:hover:before,
.flexi_tag-default .hover:hover:after,
.flexi_tag-default .hover:focus,
.flexi_tag-default .hover:focus:before,
.flexi_tag-default .hover:focus:after {
  border-color: #aeaeae;
}

.flexi_tag-blue {
  background-color: #acf;
  color: #118;
}
.flexi_tag-blue,
.flexi_tag-blue:before,
.flexi_tag-blue:after {
  border-color: #5e9eff;
}
.flexi_tag-blue[href]:hover,
.flexi_tag-blue[href]:focus,
.flexi_tag-blue .hover:hover,
.flexi_tag-blue .hover:focus {
  background-color: #77adff;
}
.flexi_tag-blue[href]:hover,
.flexi_tag-blue[href]:hover:before,
.flexi_tag-blue[href]:hover:after,
.flexi_tag-blue[href]:focus,
.flexi_tag-blue[href]:focus:before,
.flexi_tag-blue[href]:focus:after,
.flexi_tag-blue .hover:hover,
.flexi_tag-blue .hover:hover:before,
.flexi_tag-blue .hover:hover:after,
.flexi_tag-blue .hover:focus,
.flexi_tag-blue .hover:focus:before,
.flexi_tag-blue .hover:focus:after {
  border-color: #2b80ff;
}

.flexi_tag-green {
  background-color: #beb;
  color: #161;
}
.flexi_tag-green,
.flexi_tag-green:before,
.flexi_tag-green:after {
  border-color: #4b4;
}
.flexi_tag-green[href]:hover,
.flexi_tag-green[href]:focus,
.flexi_tag-green .hover:hover,
.flexi_tag-green .hover:focus {
  background-color: #92e492;
}
.flexi_tag-green[href]:hover,
.flexi_tag-green[href]:hover:before,
.flexi_tag-green[href]:hover:after,
.flexi_tag-green[href]:focus,
.flexi_tag-green[href]:focus:before,
.flexi_tag-green[href]:focus:after,
.flexi_tag-green .hover:hover,
.flexi_tag-green .hover:hover:before,
.flexi_tag-green .hover:hover:after,
.flexi_tag-green .hover:focus,
.flexi_tag-green .hover:focus:before,
.flexi_tag-green .hover:focus:after {
  border-color: #369636;
}

.flexi_tag-red {
  background-color: #ebb;
  color: #611;
}
.flexi_tag-red,
.flexi_tag-red:before,
.flexi_tag-red:after {
  border-color: #df7e7e;
}
.flexi_tag-red[href]:hover,
.flexi_tag-red[href]:focus,
.flexi_tag-red .hover:hover,
.flexi_tag-red .hover:focus {
  background-color: #e49292;
}
.flexi_tag-red[href]:hover,
.flexi_tag-red[href]:hover:before,
.flexi_tag-red[href]:hover:after,
.flexi_tag-red[href]:focus,
.flexi_tag-red[href]:focus:before,
.flexi_tag-red[href]:focus:after,
.flexi_tag-red .hover:hover,
.flexi_tag-red .hover:hover:before,
.flexi_tag-red .hover:hover:after,
.flexi_tag-red .hover:focus,
.flexi_tag-red .hover:focus:before,
.flexi_tag-red .hover:focus:after {
  border-color: #d55555;
}

/* TAGS input */
div.tagsinput {
  border: 1px solid #ccc;
  background: #fff;
  padding: 5px;
  width: 300px;
  height: 100px;
  overflow-y: auto;
}
div.tagsinput span.tag {
  border: 1px solid #a5d24a;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: block;
  float: left;
  padding: 5px;
  text-decoration: none;
  background: #cde69c;
  color: #638421;
  margin-right: 5px;
  margin-bottom: 5px;
  font-family: helvetica;
  font-size: 13px;
}
div.tagsinput span.tag a {
  font-weight: bold;
  color: #82ad2b;
  text-decoration: none;
  font-size: 11px;
}
div.tagsinput input {
  width: 80px;
  margin: 0px;
  font-family: helvetica;
  font-size: 13px;
  border: 1px solid transparent;
  padding: 5px;
  background: transparent;
  color: #000;
  outline: 0px;
  margin-right: 5px;
  margin-bottom: 5px;
}
div.tagsinput div {
  display: block;
  float: left;
}
.tags_clear {
  clear: both;
  width: 100%;
  height: 0px;
}
.not_valid {
  background: #fbd8db !important;
  color: #90111a !important;
}

.flexi_list_tags {
  font-size: 11px;
  margin: 10px 1px;
}

/* Text over image*/

.flexi_image_container {
  position: relative;
  text-align: center;
  color: red;
}

.flexi_image_centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Progress Bar */
.flexi_progress-bar {
  width: 100%;
  background-color: #e0e0e0;
  padding: 3px;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flexi_progress-bar-load {
  display: block;
  height: 22px;
  background-color: #659cef;
  border-radius: 3px;
  transition: width 500ms ease-in-out;
}
.flexi_progress-bar-process {
  display: block;
  height: 22px;
  background-color: #4caf50;
  border-radius: 3px;
  transition: width 500ms ease-in-out;
}

/* Multi file drag drop */
.flexi_drag_file {
  background: #eaefee;
  border: 4px dashed #fff;
  width: 100%;
  height: 150px;
}

.flexi_drag_file p {
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 170px;
}
.flexi_drag_file_hide {
  position: absolute;
  outline: none;
  opacity: 0;
  width: 90%;
  height: 130px;
}

/* Figure caption for lightbox  */
.flexi_figcaption {
  display: none;
}

/* ------------------------------- */

/* flexi_effect_1 Blur */
#flexi_effect_1 img {
  -webkit-filter: blur(0);
  filter: blur(0);
}
.flexi_gallery_child:hover #flexi_effect_1 img {
  -webkit-filter: blur(3px);
  filter: blur(3px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* flexi_effect_2 Gray Scale */
#flexi_effect_2 img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.flexi_gallery_child:hover #flexi_effect_2 img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* flexi_effect_3 Zoom In #1 */
#flexi_effect_3 img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.flexi_gallery_child:hover #flexi_effect_3 img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.flexi_effect {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* Caption */

#flexi_info {
  overflow: hidden;
}

/* Caption style */

.flexi_caption_none {
  display: none;
}

/* Style 1 */
.flexi_caption_1 {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 2;
  width: 90%;
  height: 30px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.5s;
  color: #fff;
  margin-right: -30px;
  text-align: center;
}
.flexi_caption_1 .flexi_title {
  font-size: 18px;
}
.flexi_caption_1 .flexi_p {
  display: none;
}
.flexi_gallery_child:hover .flexi_caption_1 {
  right: 150%;
}

/* Style 2 */
.flexi_caption_2 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  text-align: center;
}
.flexi_caption_2 .flexi_title {
  padding: 2px 0 0;
  color: #fff;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.flexi_caption_2 .flexi_p {
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.flexi_gallery_child:hover .flexi_caption_2 {
  top: 0;
  left: 0;
}

/* Style 3 */
.flexi_caption_3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.flexi_caption_3 .flexi_title,
.flexi_caption_3 .flexi_p {
  position: absolute;
  left: -100%;
  width: 260px;
  padding: 0;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 2px 0 0;
  color: #fff;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}
.flexi_caption_3 .flexi_title {
  top: 30px;
}
.flexi_caption_3 .flexi_p {
  top: 75px;
  font-size: 12px;
}
.flexi_gallery_child:hover .flexi_caption_3 {
  opacity: 1;
}
.flexi_gallery_child:hover .flexi_caption_3 .flexi_title,
.flexi_gallery_child:hover .flexi_caption_3 .flexi_p {
  left: 20px;
}
.flexi_gallery_child:hover .flexi_caption_3 .flexi_title {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.flexi_gallery_child:hover .flexi_caption_3 .flexi_p {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

/* Style 4 */

.flexi_caption_4 {
  position: absolute;
  bottom: -60px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
}
.flexi_caption_4 .flexi_title {
  padding: 2px 0 0;
  color: #fff;
  font-size: 24px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.flexi_gallery_child:hover .flexi_caption_4 {
  bottom: 0;
}

/* Style 5 */

.flexi_caption_5 .flexi_title {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.flexi_caption_5 .flexi_p {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 70px;
  line-height: 20px;
  padding: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.flexi_caption_5 .flexi_title {
  top: -80px;
  font-size: 18px;
}
.flexi_caption_5 .flexi_p {
  bottom: -80px;
  font-size: 13px;
}
.flexi_gallery_child:hover .flexi_caption_5 .flexi_title {
  top: 0;
  font-size: 18px;
  padding: 0px 0 5px;
}
.flexi_gallery_child:hover .flexi_caption_5 .flexi_p {
  bottom: -30px;
}

/* Image Frame */
.flexi_frame_1 {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
}
.flexi_frame_1 img {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.flexi_frame_1:before,
.flexi_frame_1::after {
  -webkit-box-shadow: 0 0 7px 4px rgba(104, 104, 104, 0.5);
  box-shadow: 0 0 7px 4px rgba(104, 104, 104, 0.5);
  content: " ";
  display: table;
  width: 49%;
  height: 0;
  position: absolute;
  bottom: 6px;
  z-index: -2;
}
.flexi_frame_1:before {
  left: 4px;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.flexi_frame_1:after {
  right: 4px;
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
}

/* Frame 2 */

.flexi_frame_2 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.flexi_frame_2:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

/* Frame 3 */
.flexi_frame_3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
