/*
** Colors
*
* dark red color #a90000
* text Green #56ab00
* text Red #f05014
* light black #1a1a1a
*
*
*/



.light {
  font-family: "visa_dialect_light", Helvetica, "Arial";
  font-weight: 200;
}

.regular {
  font-family: "marfa", "visa_dialect_regular", Helvetica, "Arial";
  font-weight: 400;
}

.medium {
  font-family: "visa_dialect_medium", Helvetica, "Arial";
  font-weight: 500;
}

.semibold {
  font-family: "visa_dialect_semibold", Helvetica, "Arial";
  font-weight: 700;
}

.bold {
  font-family: "visa_dialect_bold", Helvetica, "Arial";
  font-weight: 900;
}

.video_buttons_holder {
  position: absolute;
  z-index: 1;
  margin: 10px 0px 5px;
  right: 0px;
  top: 100px;
  bottom: unset;
  left: unset;
}



/* pointer on hover control */

.pointer:hover {
  cursor: pointer;
}

.hidden {
  display: none;
}

/* font sizes */
.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.f16 {
  font-size: 16px;
}

.f18 {
  font-size: 18px;
}

.f20 {
  font-size: 20px;
}

/* colors */
.confirmed {
  color: #56ab00;
}

.pending {
  color: #f05014;
}

.yellow_bg {
  background-color: rgb(245, 255, 0);
}

/* opacity */
.op4 {
  opacity: 0.4;
}

.op6 {
  opacity: 0.6;
}

.op8 {
  opacity: 0.8;
}

/* margins */
.mtauto {
  margin-top: auto !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt2 {
  margin-top: 2px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 40px;
}

.mt40 {
  margin-top: 40px;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

/* no scrollbar */
.no_scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no_scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* icons */
/* default line arrow is down */
.line_arrow {
  width: 12px;
  height: 25px;
  background: url(../img/line_arrow.svg) no-repeat;
  background-size: contain;
  background-position: center;
  transition: all 0.3s ease-in-out;
}

.line_arrow.up {
  transform: rotate(180deg)
}

.line_arrow.right {
  transform: rotate(-90deg);
}

.line_arrow.left {
  transform: rotate(90deg);
}

.heart_icon_circle {
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  border: 1px solid black;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heart_icon_circle.active {
  background-color: black;
}

.heart_icon {
  width: 16px;
  height: 16px;
  background: url(../img/heart_line.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

/* .active .heart_icon {
  background-image: url(../img/heart_filled.svg);
} */

.dbl_arrow_icon {
  width: 20px;
  width: 20px;
  display: inline-block;
  cursor: pointer;
  background: url('../img/dbl_arrow_right.svg');
}

.dbl_arrow {
  width: 30px;
  cursor: pointer;

}

#dbl_arrow_r {
  transform: rotate(180deg)
}

.lock_icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: rgb(245, 255, 0);
  margin-left: 10px;
}

.lock_icon img {
  max-width: 50%;
  max-height: 60%;
  object-fit: contain;
  z-index: 1;
}


/* locked tag */
.locked_tag.lock_icon {
  position: absolute;
  top: 0px;
  margin-left: 0px;
  padding: 4px 2px;
  background: transparent;
}

.locked_tag.lock_icon:after {
  content: '';
  width: 0px;
  height: 0px;
  border: 32px solid transparent;
  border-left: 28px solid rgb(245, 255, 0);
  border-top: 34px solid rgb(245, 255, 0);
  position: absolute;
  top: 0;
  left: 0px;
  transform: translate(0, 0) rotate(0deg);
}



.arrow_down,
.arrow_up,
.arrow_left {
  margin-left: 20px;
  margin-bottom: 2px;
  display: inline-block;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-bottom: 2px solid #1a1a1a;
  border-left: 2px solid #1a1a1a;
}

.arrow_left {
  margin: 0 16px 0px 4px;
  transform: rotate(45deg);
}

.arrow_down {
  transform: rotate(-45deg);
}

.arrow_down.active {
  transform: rotate(134deg) translate(5px, -5px);
}

.arrow_up {
  transform: rotate(134deg) translate(5px, -5px);
}

.arrow_up.active {
  transform: rotate(-45deg);
}

.arrow_right_white {
  width: 8px;
  height: 8px;
  border-left: 2px solid white;
  border-top: 2px solid white;
  display: inline-block;
  transform: rotate(135deg);
  margin-right: 5px;
}




.round_arrow {
  margin-left: 20px;
  margin-bottom: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 20px;
  background-color: #1a1a1a;
}

.round_arrow.grey_icon {
  background-color: #b4b4b4;
}

.round_arrow.black_icon {
  background-color: #000;
}

.round_arrow:after {
  content: '';
  margin: 5px 0px 0px 6px;
  display: block;
  width: 6px;
  height: 6px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(-45deg);
}

.round_arrow_down.active,
.round_arrow_up.active {
  transform: rotate(180deg);
}

.flag {
  background: #1a1a1a;
  color: white;
  padding: 2px 5px;
  font-size: 14px;
  border-radius: 2px;
}

.treat_sep {
  margin: 0 4px;
}

/* edit */
.edit_icon {
  margin-right: 15px;
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 20px;
  background-color: #1a1a1a;
  vertical-align: middle;
}

.edit_icon:after {
  content: '';
  display: block;
  width: 0;
  height: 10px;
  margin: 4px 0px 0px 9px;
  border: 1px solid white;
  border-radius: 0 0 1px 1px / 0 0 50% 50%;
  transform: rotate(45deg);
}

/* info/detail */
.info_icon {
  margin-right: 15px;
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 20px;
  background-color: #1a1a1a;
  vertical-align: middle;
}

.info_icon:after {
  content: 'i';
  display: block;
  width: 0;
  height: 10px;
  margin: -1px 0px 0px 0px;
  color: white;
  text-align: center;
  font-size: 16px;
  width: 100%;

}


/* add */
.add_icon {
  margin-right: 15px;
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 20px;
  background-color: #1a1a1a;
}

.add_icon:after {
  content: '+';
  color: white;
  font-size: 22px;
  display: block;
  width: 0;
  margin: -5px 0px 0px 5px;
  font-family: "barlow_semibold", "Helvetica Neue", Helvetica;
}

.check_icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 20px;
  box-sizing: border-box;
  border: 1px solid #1a1a1a;
  box-sizing: border-box;
  border: 1px solid #1a1a1a;
  box-shadow: inset 0 0 0 2px white;
}

.check_icon.active {
  background-color: #1a1a1a;
}


.scroll_icon {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  cursor: pointer;
  border-radius: 20px;
  box-sizing: border-box;
  background: #1a1a1a;
  box-sizing: border-box;
}

.scroll_icon_right {
  transform: rotate(180deg)
}

.scroll_icon:before,
.scroll_icon:after {
  content: '';
  position: absolute;
  top: 7px;
  left: 5px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  transform: rotate(45deg)
}

.scroll_icon:after {
  content: '';
  left: 10px;
}

/* close btn */
.close_btn {
  width: 40px;
  height: 50px;

  position: fixed;
  top: 30px;
  right: 20px;
  background: transparent;
  margin-left: 10px;
  cursor: pointer;
  z-index: 14;
  display: none;
}

.close_icon {
  width: 25px;
  height: 30px;
  cursor: pointer;
}

.overlay_hr {
  transition: all ease-out 0.5s;
  width: 100%;
  border: none;
  border-radius: 3px;
  position: absolute;
  background: #1a1a1a;
  background-image: linear-gradient(90deg, #ff2da1 20%, #ff0023 80%);
  top: 10%;
  height: 2px;
}

.close_btn #overlay_hr1,
.close_icon #overlay_hr1 {
  transform: rotate(45deg);
}

.close_btn #overlay_hr2,
.close_icon #overlay_hr2 {
  transform: rotate(-45deg);
}


/******* ELEMENTS  ******/
/* overlays */
.overlay {
  z-index: 13;
  position: fixed;
  top: 0;
  padding-top: 10vh;
  max-height: 90vh;
  left: 50%;
  transform: translate(-50%, 0px);
  overflow: scroll;
  display: none;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

.overlay::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.overlay_content {
  margin: 60px 0;
  text-align: center;
  z-index: 15;
  background-color: white;

  padding: 10px;
  max-width: 1000px;
  display: flex;
  flex-flow: column nowrap;
  align-self: center;
  width: 90vw;
  min-width: 50vw;
  min-height: 50vh;
}

.overlay_header {
  margin: 15px 0 30px;
  font-size: 1.5em;
}

.overlay_text {
  font-size: 1em;
  margin-bottom: 20px;
}

.overlay_btn {
  max-width: 300px;
  margin: 0 auto;
  min-width: 50%;
}

/* collapse block */
.collapse_block,
.page_block {
  margin-bottom: 50px;
}

.collapse_controler {
  cursor: pointer;
}

.block_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/******* end ELEMENTS  ******/