:root {
  --White: #ffffff;
  --Black: #000000;
  --Red: #d70911;
  --Green: #21823C;
  --Yellow: #c9d709;
  --Orange: #d78509;
  --DarkGrey: #2e2d2d;
  --MidLightGrey: #555555;
  --LightGrey: #9d9d9d;
  --LighterGrey: #e6e6e6;
  --LightestGrey: #f2f2f2;
  --FontPlay: "Play";
  --FontArial: var(--FontArial);
  --FontFuturaB: "Futura B";

  --BreakpointXs: 576px;
  --BreakpointSm: 768px;
  --BreakpointSmMax: 991px;
  --BreakpointMd: 992px;
  --BreakpointLg: 1200px;
  --BreakpointXl: 1400px;
}

/* reset CSS */

@keyframes cssload-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes cssload-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }

  51% {
    opacity: 1;
  }
}

@-moz-keyframes toBottomFromTop {
  49% {
    -moz-transform: translateY(100%);
  }

  50% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes toBottomFromTop {
  49% {
    transform: translateY(100%);
  }

  50% {
    opacity: 1;
    transform: translateY(-100%);
  }

  51% {
    opacity: 1;
  }
}

.spinner-border {
  border: 0 none;
  background: url('../../images/icon/still-life-ico.svg') no-repeat scroll center center transparent;
  background-size: contain;
}


* {
  padding: 0;
  margin: 0;
  outline: none !important;
}

.page-wrapper {
  position: relative;
  min-height: 100vh;
  padding-bottom: calc(117px + 125px);
  overflow-x: hidden;

  @media screen and (min-width: 992px) {
    padding-bottom: calc(81px + 125px);
  }
}

body {
  font-family: Arial, sans-serif;
  color: var(--DarkGrey) !important;
  font-weight: normal;
  font-size: 20px;
  line-height: 30px;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
  padding-right: 0 !important;
}


/* .content-body {
    overflow: hidden;
}

 .content-body.offcanvas-active {
    transform: translateX(calc((100vw - 1340px) / 2 + 450px));
    transition: transform 0.3s ease;
} */

.offcanvas {
  .offcanvas-header {
    .offcanvas-title {
      font-family: var(--FontPlay), sans-serif;
    }
  }
}


a {
  color: inherit;
  text-decoration: none;
  cursor: pointer !important;
  display: inline-block;
}

a.link {
  color: var(--White) !important;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

a.link:hover {
  opacity: 1;
  text-decoration: underline;
}

a.link-red {
  color: var(--White);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

a.link-red:hover {
  color: var(--Red);
}

a.link-black {
  color: var(--Black) !important;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

a.link-black:hover {
  color: var(--Red) !important;
}


button {
  border: 0;
  background: none;
}

b {
  font-family: var(--FontFuturaB), sans-serif;
  font-weight: normal;
}

.z-index-10 {
  z-index: 10;
}

p {
  margin-bottom: 0;
}

.wrapper-small {
  max-width: 1115px !important;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}


/* ---------------------------  CUSTOM  ---------------------------*/
.container {
  max-width: 1340px;
  height: auto;
}


.bg-image-login {
  background-image: url('/static/images/bg_login.jpg');
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

.bg-image-login.has-gradient-light {
  background-image:
    linear-gradient(to bottom, rgba(215, 215, 215, 0.7), rgba(242, 242, 242, 0.7)),
    url('/static/images/bg_login.jpg');
  color: var(--Black);
}

.bg-image-login.has-gradient-dark {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(73, 79, 90, 0.7)),
    url('/static/images/bg_login.jpg');
  color: rgb(215, 215, 215);
}

.bg-gradient-light {
  background: rgb(215, 215, 215);
  background: -moz-linear-gradient(0deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
  background: linear-gradient(0deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
  color: var(--Black);
}

.bg-gradient-dark {
  background: var(--Black);
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(73, 79, 90, 1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(73, 79, 90, 1) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(73, 79, 90, 1) 100%);
  color: rgb(215, 215, 215);
}

.bg-grey-l {
  background: var(--LightestGrey);
}

.bg-e6 {
  background: var(--LighterGrey);
}

.logo {
  height: 80px;
  width: auto;
}

.text-l {
  color: var(--LightGrey) !important;
}

.text-m {
  color: var(--MidLightGrey) !important;
}

.arial-xs {
  font-family: var(--FontArial), sans-serif;
  color: var(--Black);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
}

.arial-xxs {
  font-family: var(--FontArial), sans-serif;
  color: var(--Black);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  font-style: normal;
}

.arial-xxxs {
  font-family: var(--FontArial), sans-serif;
  color: var(--Black);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  font-style: normal;
}

.play-s {
  font-family: var(--FontPlay), sans-serif;
  color: var(--LightGrey);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  font-style: normal;
}

.text-login {
  font-family: var(--FontPlay), sans-serif;
  font-size: 34px;
  line-height: 46px;
  font-weight: 400;
  font-style: normal;
}

.title-big {
  font-family: var(--FontPlay), sans-serif;
  font-size: 34px;
  line-height: 46px;
  font-weight: 400;
  font-style: normal;
}

.title-small {
  font-family: var(--FontPlay), sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  font-style: normal;
}

.title-mini {
  font-family: var(--FontPlay), sans-serif;
  font-size: 20px;
  line-height: 46px;
  font-weight: 400;
  font-style: normal;
}

.btn-red {
  font-family: var(--FontPlay), sans-serif;
  color: var(--White);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  background: var(--Red);
  padding: 18px 50px;
  border: 0;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

.btn-red:hover {
  text-decoration: underline;
}

.btn-red-o {
  font-family: var(--FontPlay), sans-serif;
  color: var(--Black);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  background: transparent;
  padding: 18px 50px;
  border: 1px solid var(--Red);
  transition: all 0.3s ease-in-out;
}

.btn-red-o.small {
  padding: 9px 60px;
}

.btn-red-o.small-1 {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 6px 60px;
}

.btn-red-o:hover,
.btn-red-o.small:hover,
.btn-red-o.small-1:hover {
  text-decoration: underline;
}

.btn-grey-o {
  font-family: var(--FontPlay), sans-serif;
  color: var(--MidLightGrey);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  background: transparent;
  padding: 9px 60px;
  border: 1px solid var(--MidLightGrey);
  transition: all 0.3s ease-in-out;
}

.btn-grey-o.small {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 6px 60px;
}

.btn-grey-o:hover,
.btn-grey-o.small:hover {
  text-decoration: underline;
}

.btn-black {
  font-family: var(--FontPlay), sans-serif;
  color: var(--White);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  background: var(--Black);
  padding: 18px 5px 18px 20px;
  border: 1px solid var(--Black);
  transition: all 0.3s ease-in-out;

  @media screen and (min-width: 992px) {    
    line-height: 52px;    
  }
}

.btn-black:hover {
  text-decoration: underline;
}

button.tiny,
.btn.tiny {
  padding: 14px 9px;
}

.opened {
  font-family: var(--FontArial), sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  width: fit-content;
  padding: 9px 10px;
  color: var(--Green);
  background: var(--LightestGrey);
  border-radius: 15px;
  display: inline-flex;
}

.opened .circle {
  background: var(--Green);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
}

.inprogress {
  font-family: var(--FontArial), sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  width: fit-content;
  padding: 9px 10px;
  color: #D28801;
  background: var(--LightestGrey);
  border-radius: 15px;
  display: inline-flex;
}

.inprogress .circle {
  background: #D28801;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
}

.closed {
  font-family: var(--FontArial), sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  width: fit-content;
  padding: 9px 10px;
  color: var(--MidLightGrey);
  background: var(--LightestGrey);
  border-radius: 15px;
  display: inline-flex;
}

.closed .circle {
  background: var(--MidLightGrey);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
}

.badge.red {
  font-family: var(--FontArial), sans-serif;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  background: var(--Red);
  display: inline-block;
  padding: 7px 9.7px;
  border-radius: 50%;
}

.tutorial-ico {
  width: 32px;
  height: auto;
}

.ico-h16 {
  height: 16px;
  width: auto;
}

.ico-h24 {
  height: 24px;
  width: auto;
}

.ico-h32 {
  height: 32px;
  width: auto;
}

.mt-header {
  margin-top: 95px;
}

.mb-header {
  margin-bottom: 75px;
}

.divider-l {
  height: 1px;
  width: 100%;
  background: var(--White);
  opacity: 0.2;
}


.header {
  min-height: 80px !important;
}

.header .icon-header {
  height: 50px;
  width: auto;
}

.header .initials-profile {
  font-family: var(--FontPlay), sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: var(--White);
  background: var(--LightGrey);
  text-align: center;
  vertical-align: middle;
  width: 50px;
  padding: 13px 0;
}

.header .notify {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.header .notify.inactive {
  opacity: 0.4;
}

.tag {
  font-family: var(--FontArial), sans-serif;
  color: var(--Black);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  font-style: normal;
  border: 1px solid var(--Black);
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
  margin: 12px 12px 0 0;
  float: left;
  transition: all 0.2s ease-in-out;
}

.tag:hover,
.tag.active {
  font-family: var(--FontArial), sans-serif;
  color: var(--White);
  background: var(--Black);
  border: 1px solid var(--Black);
}

.modal .modal-content {
  border-radius: 0;
}

/* ---------------------------  CONTENT BOX  ---------------------------*/

.more-section {
  display: none;
}

.content-card .card {
  border: 0;
  border-radius: 0;

  .img-hover-zoom-slowmo {
    .image {
      .hover-effect {
        button.check-ico {
          z-index: 2;
        }

        a.card-image-link {
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          right: 0;
          z-index: 1;
        }
      }
    }
  }

  .card-title-link:hover {
    text-decoration: underline;
  }

  
  .form-check {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    transition: all 0.3s ease-in-out;

    @media screen and (min-width: 992px) {
      input.form-check-input {
        opacity: 0;
      }
    }

    .check-ico {
      background-image: url('../../images/icon/uncheck-red.svg');
      background-repeat: no-repeat;
      background-color: transparent;
      border: 0 none;
      border-radius: 50%;
      height: 30px;
      width: 30px;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
    }

    .check-ico.disabled,
    .check-ico:disabled {
      background-image: url('../../images/icon/disabledcheck-grey.svg');
    }

    .check-ico.active,
    .check-ico:checked {
      background-image: url('../../images/icon/check-red.svg');
    }

    .check-ico:focus {
      box-shadow: none;
    }
  }

}

@media screen and (min-width: 992px) {
  .content-card .card .img-hover-zoom-slowmo:hover .form-check input.form-check-input,
  .content-card .card .img-hover-zoom-slowmo .form-check input.form-check-input:checked {
    opacity: 1;
  }
}

.content-card .card-img-top {
  border-radius: 0;
}

.content-card .card-body {
  padding: 17px 15px 17px 15px;
}

.content-card .card-title {
  font-family: var(--FontArial), sans-serif;
  color: var(--Black);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  font-style: normal;
  margin-bottom: 0;
}

.content-card .result-footer {
  margin-top: .5rem;
}

.content-card .type {
  font-family: var(--FontArial), sans-serif;
  color: var(--MidLightGrey);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  font-style: normal;
  text-transform: uppercase;

  img {
    vertical-align: text-bottom;
    height: 16px;
    width: auto;
  }
}

.more .my-load {
  margin-top: 125px;
}

.extension {
  text-transform: uppercase;
}


.container {
  .loader {
    margin: 2rem 0;
  }
}


/* ---------------------------  STARRED ---------------------------*/


#starred-header .mt-filter {
  margin-top: 40px !important;
}

#starred .mt-list {
  margin-top: 30px !important;
}

/* ---------------------------  DOWNLOAD LIST ---------------------------*/

#downloads-header .mt-filter {
  margin-top: 70px !important;
}

#downloads-lists .download-list .mt-list {
  margin-top: 45px !important;
}

#downloads-lists .download-list .mb-date {
  margin-bottom: 20px !important;
}

#downloads-lists .download-list .btn-download {
  transform: scale(0.7);
}

#downloads-lists .download-list .ratio-4x3 {
  --bs-aspect-ratio: 66%;
}

#downloads-lists .download-list .box {
  background: var(--White);
  padding: 30px 40px 30px 20px;
  border-bottom: 1px solid var(--LightestGrey);
  transition: all 0.3s ease-in-out;
}

#downloads-lists .download-list .box:last-child {
  border-bottom: 0 solid var(--LightestGrey);
}

#downloads-lists .download-list .box:hover {
  background: rgb(215, 215, 215);
  background: -moz-linear-gradient(90deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
  background: -webkit-linear-gradient(900deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
  background: linear-gradient(90deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
}

#downloads-lists .download-list .box .name {
  font-family: var(--FontPlay), sans-serif;
  color: var(--Black);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  font-style: normal;
}

#downloads-lists .download-list .box .type {
  font-family: var(--FontArial), sans-serif;
  color: var(--MidLightGrey);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-style: normal;
}


/* --------------------------- HISTORY LIST ---------------------------*/

#history-lists {
  .history-list {
    .box {
      background: var(--White);
      padding: 30px 20px 30px 20px;
      border-bottom: 1px solid var(--LightestGrey);
      transition: all 0.3s ease-in-out;

      .label {
        font-family: var(--FontArial), sans-serif;
        color: var(--LightGrey) !important;
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        font-style: normal;
      }

      .label.type {
        .ico {
          height: 30px;
        }
      }
    }

    .box:last-child {
      border-bottom: 0 solid var(--LightestGrey);
    }

    .box:hover {
      background: rgb(215, 215, 215);
      background: -moz-linear-gradient(90deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
      background: -webkit-linear-gradient(900deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
      background: linear-gradient(90deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
    }
  }
}

/* --------------------------- TICKET LIST ---------------------------*/

#ticket-list .mt-filter {
  margin-top: 90px !important;
  margin-bottom: 90px;
}

#ticket-list .mt-list {
  margin-top: 70px !important;
}

#ticket-list .mb-date {
  margin-bottom: 30px !important;
}


#ticket-list .box {
  background: var(--White);
  padding: 30px 20px 30px 20px;
  border-bottom: 1px solid var(--LightestGrey);
  transition: all 0.3s ease-in-out;
}

#ticket-list .box.ticket-box {
  cursor: pointer;
}

#ticket-list .box:hover {
  background: rgb(215, 215, 215);
  background: -moz-linear-gradient(90deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
  background: -webkit-linear-gradient(900deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
  background: linear-gradient(90deg, rgba(215, 215, 215, 1) 0%, rgba(242, 242, 242, 1) 100%);
}

#ticket-list .box .date {
  font-family: var(--FontArial), sans-serif;
  color: var(--LightGrey) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  font-style: normal;
}

#ticket-list .box .title {
  font-family: var(--FontPlay), sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 0;
}

#ticket-list .title-mini {
  font-family: Arial, sans-serif;
}

#button-ticket-add {
  border-radius: 0;
}

/* --------------------------- TICKET detail ---------------------------*/

#ticket-detail .mt-date {
  margin-top: 30px !important;
}


#ticket-detail .col-btn {
  width: 50px;
}

#ticket-detail .img-profile {
  border-radius: 50%;
  height: 50px;
  width: 50px;
}


#ticket-detail .box {
  background: var(--White);
  padding: 40px 50px 60px 50px;
  border-bottom: 1px solid var(--LightestGrey);
  transition: all 0.3s ease-in-out;
}

#ticket-detail .box:hover {
  background: var(--White);
}

#ticket-detail .box .name {
  font-family: var(--FontArial), sans-serif;
  color: var(--LightGrey) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  font-style: normal;
}

#ticket-detail .box .date {
  font-family: var(--FontArial), sans-serif;
  color: var(--LightGrey) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  font-style: normal;
}

#ticket-detail .box .title {
  font-family: var(--FontPlay), sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--Black);
}

#ticket-detail .box .text {
  font-family: "Aial", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--Black);
}

#ticket-detail .box .text-mt {
  margin-top: 50px
}


#ticket-detail .initials {
  font-family: var(--FontPlay), sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--White);
  background: var(--Red);
  text-align: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
}

#ticket-detail .form-control {
  background: var(--LightestGrey);
  border: 0;
  font-family: var(--FontArial), sans-serif;
  color: var(--MidLightGrey) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  min-height: 40px;
  padding: 20px;
}


#ticket-detail .btn-close,
.modal .btn-close {
  height: 50px;
  width: 50px;
  background: var(--Red);
  border-radius: 0;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

#ticket-detail .btn-close .ico,
.modal .btn-close .ico {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 15px;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
  margin-top: 15px;
}

#ticket-detail .close-ico:after,
.modal .close-ico:after {
  box-sizing: border-box;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

#ticket-detail .close-ico:hover n,
.modal .close-ico:hover n {
  animation-name: toBottomFromTop;
  animation-duration: 0.5s;
}

#ticket-detail .close-ico n,
.modal .close-ico n {
  display: block;
  width: 20px;
  height: 20px;
  background: transparent;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 10px;
}

#ticket-detail .close-ico n:after,
#ticket-detail .close-ico n:before,
.modal .close-ico n:after,
.modal .close-ico n:before {
  content: "";
  width: 20px;
  height: 1.25px;
  background: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-45deg);
}

#ticket-detail .close-ico n:before,
.modal .close-ico n:before {
  transform: rotate(45deg);
}

#ticket-detail .btn-download {
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  background: var(--Red);
  border-bottom: 0;
  border-left: 0;
  transform: rotate(90deg);
}

#ticket-detail button.ico {
  display: block;
  width: 20px;
  height: 25px;
  margin-left: 15px;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
  margin-top: 13px;
}

#ticket-detail .download-ico:after {
  box-sizing: border-box;
  display: none;
  content: "";
  width: 20px;
  height: 6px;
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

#ticket-detail .download-ico:hover n {
  animation-name: toBottomFromTop;
  animation-duration: 0.5s;
}

#ticket-detail .download-ico n {
  display: block;
  width: 1.25px;
  height: 14px;
  background: var(--White);
  position: absolute;
  left: 50%;
  margin-left: -0.6125px;
  bottom: 5px;
  margin-bottom: 0.75px;

}

#ticket-detail .download-ico n:after,
#ticket-detail .download-ico n:before {
  content: "";
  width: 1.25px;
  height: 7px;
  background: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: 0 6.75px;
  transform: rotate(-45deg);
}

#ticket-detail .download-ico n:before {
  transform-origin: 1.25px 6.75px;
  transform: rotate(45deg);
}

#ticket-detail .btn-download-g {
  position: relative;
  float: right;
  height: 32px;
  width: 32px;
  border: 1px solid var(--Black);
  border-left: 0;
  margin-left: 50px;
}

#ticket-detail .btn-download-g:before {
  content: " ";
  position: absolute;
  display: block;
  width: 18px;
  height: 32px;
  top: -1px;
  left: -18px;
  z-index: 2;
  border: 1px solid var(--Black);
  border-right: 0;
  transform-origin: bottom left;
  -ms-transform: skew(-30deg, 0deg);
  -webkit-transform: skew(-30deg, 0deg);
  transform: skew(-30deg, 0deg);
}

#ticket-detail .btn-download-g button.ico {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
  margin-top: 6px;
  transform: scale(0.75);
}

#ticket-detail .download-ico-g:after {
  box-sizing: border-box;
  display: block;
  content: "";
  width: 20px;
  height: 6px;
  border-left: 1.25px solid var(--Black);
  border-right: 1.25px solid var(--Black);
  border-bottom: 1.25px solid var(--Black);
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

#ticket-detail .download-ico-g:hover n {
  animation-name: toBottomFromTop;
  animation-duration: 0.5s;
}

#ticket-detail .download-ico-g n {
  display: block;
  width: 1.25px;
  height: 14px;
  background: var(--Black);
  position: absolute;
  left: 50%;
  margin-left: -0.6125px;
  bottom: 5px;
  margin-bottom: 0.75px;

}

#ticket-detail .download-ico-g n:after,
#ticket-detail .download-ico-g n:before {
  content: "";
  width: 1.25px;
  height: 7px;
  background: var(--Black);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: 0 6.75px;
  transform: rotate(-45deg);
}

#ticket-detail .download-ico-g n:before {
  transform-origin: 1.25px 6.75px;
  transform: rotate(45deg);
}


/* -----------------------  TICKET FORM  ------------------------*/


.offcanvas-size-sm {
  --bs-offcanvas-width: min(100vw, 250px) !important;
}
.offcanvas-size-md { /* add Responsivenes to default offcanvas */
  --bs-offcanvas-width: min(100vw, 400px) !important;
}
.offcanvas-size-l { /* add Responsivenes to default offcanvas */
  --bs-offcanvas-width: min(100vw, 500px) !important;
}
.offcanvas-size-xl {
  --bs-offcanvas-width: min(100vw, 600px) !important;
}
.offcanvas-size-xxl {
  --bs-offcanvas-width: min(100vw, 90vw) !important;
}

#offcanvasAddTicket, #ticket-reply {
  .form-control {
    font-family: var(--FontPlay), sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    background: transparent;
    border: 1px solid var(--MidLightGrey);
    border-radius: 0;
    padding: 18px 18px 19px 20px !important;
    transition: all 0.3s ease-in-out;
  }

  .form-control::placeholder {
    font-family: var(--FontPlay), sans-serif;
    color: var(--LightGrey);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    transition: all 0.3s ease-in-out;
  }

  textarea.form-control {
    resize: vertical;
  }

  .ql-toolbar.ql-snow, .ql-container.ql-snow {
    border-color: var(--MidLightGrey);
  }
}

.ql-container {
  height: auto !important;
  min-height: 6rem;
}

/* ---------------------------  FORM  ---------------------------*/

#login {
  padding-top: 100px;
  min-height: calc(100vh - 56px);
  display: flex;
  overflow-x: hidden;

  @media screen and (min-width: 992px) {
    min-height: 100vh;
  }
}

#login>.container {
  display: flex;
  flex-direction: column;
}

#login>.container .login-header {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#login>.container .login-content {
  flex: 1 0 auto;
}

#login>.container .login-footer {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#login a.link {
  opacity: .7;
}

#login a.link:hover {
  opacity: 1;
}

.login-form {
  margin-top: 50px;
}

.login-form .form-label {
  margin-bottom: 9px;
}

.login-form .form-control,
.login-form input[type='text'],
.login-form input[type='password'] {
  font-family: var(--FontPlay), sans-serif;
  color: var(--White);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  background: transparent;
  border: 1px solid var(--LightGrey);
  border-radius: 0;
  padding: 18px 18px 19px 20px !important;
  transition: all 0.3s ease-in-out;
}

.login-form .form-control:hover {
  border: 1px solid var(--White);
}

.login-form .form-control::placeholder {
  font-family: var(--FontPlay), sans-serif;
  color: var(--LightGrey);
  font-size: 18px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

.login-form .form-control:hover::placeholder {
  color: var(--White) !important;
}

.login-form .password-wrapper {
  position: relative;

  img.toggle-password {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: none;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }

  img.toggle-password:hover {
    opacity: 1;
  }
}

.login-form .password-wrapper.can-show {
  img.toggle-password.show-password {
    display: block !important;
  }
}

.login-form .password-wrapper.can-hide {
  img.toggle-password.hide-password {
    display: block !important;
  }
}

.login-form .btn-login {
  margin-top: 70px;
}

.flex-container {
  display: flex;
  flex-direction: column;
}

.errorlist {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: small;
  color: var(--LightGrey);
  list-style-type: square;
  padding-left: 1rem;
}

.pre-line, .error-message {
  white-space: pre-line;
}

.btn-lost {
  margin-bottom: 70px;
}

.btn-big {
  padding: 21px 30px !important;
}

#sizes-form .form-check .form-check-input {
  border: 1px solid var(--MidLightGrey);
  border-radius: 0;
  width: 30px;
  height: 30px;
}

#sizes-form .form-check .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url('../../images/icon/check-in-ico.svg');
  background-color: inherit !important;
  background-size: 60%;
}

#sizes-form .form-check .form-check-input:checked {
  background-color: inherit !important;
}

#sizes-form .form-check .form-check-label {
  font-family: var(--FontArial), sans-serif;
  color: var(--MidLightGrey);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 30px;
  margin: 0;
  padding-left: 10px;
}

#sizes-form-m .form-check .form-check-input {
  border: 1px solid var(--MidLightGrey);
  border-radius: 0;
  width: 20px;
  height: 20px;
  margin: 0;
}

#sizes-form-m .form-check .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url('../../images/icon/check-in-ico.svg');
  background-color: inherit !important;
  background-size: 60%;
}

#sizes-form-m .form-check .form-check-input:checked {
  background-color: inherit !important;
}


#sizes-form-m .form-check .form-check-label {
  font-family: var(--FontArial), sans-serif;
  color: var(--MidLightGrey);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-style: normal;
  margin-left: 10px;
  vertical-align: -webkit-baseline-middle;
}


/* ---------------------------  SEARCH  ---------------------------*/

.search-bar .input-group {
  background: var(--White);
}

.search-bar .btn.selection {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: var(--Black);
  border: 0;
  border-radius: 0;
  border-right: 1px solid #d9d9d9;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
}


.search-bar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 20px;
  vertical-align: 0;
  content: url('../../images/icon/arrowdown-ico.svg');
  border-top: 0 solid;
  border-right: 0 solid transparent;
  border-bottom: 0;
  border-left: 0 solid transparent;
  transition: all 0.3s ease-in-out;
  padding: 13px 0;
}

.search-bar .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.search-bar .form-control {
  border: transparent !important;
  border-radius: 0;
}

.search-bar .dropdown-menu {
  border: 0;
  border-radius: 0;
  margin-top: 2px !important;
}

.search-bar .dropdown-menu>li .ico.ico-selected {
  display: none;
}

.search-bar .dropdown-menu>li.selected a {
  background: url('/static/images/icon/check-in-ico.svg') no-repeat scroll calc(100% - 15px) center transparent;
  background-size: 15px;

  @media screen and (min-width: 992px) {
    display: none;
  }
}

.search-bar .ico {
  margin-right: 10px;
  height: 24px;
  width: auto;
}

.search-bar .dropdown-item {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: var(--Black);
  padding: 13px 20px;
}

.search-bar .dropdown-item:hover {
  background: transparent;
}

.search-bar .form-control {
  color: var(--Black);
  padding-left: 30px;
  transition: all 0.3s ease-in-out;
}

.search-bar .form-control::placeholder {
  font-family: var(--FontPlay), sans-serif;
  color: var(--Black);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  transition: all 0.3s ease-in-out;
}

.search-bar .form-control:focus {
  border-left: 1px solid #d9d9d9 !important;
  box-shadow: none;
  border-radius: 0;
}

.search-bar .btn.btn-search {
  font-family: var(--FontPlay), sans-serif;
  color: var(--White);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  background: var(--Red);
  padding: 0 30px;
  border: 0;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.search-bar .btn.btn-search.dark {
  font-family: var(--FontPlay), sans-serif;
  color: var(--White);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  background: var(--Black);
  padding: 20px 30px;
  border: 0;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 992px) {
  .search-bar .input-group .btn.selection > .btn-label {
    display: none;
  }

  .search-bar .btn .ico {
    margin-right: 0;
  }
}

#search-box {
  flex-wrap: wrap;

  .input-group.select-type, .input-group.select-mode {
    flex: 0 1 10%;

    @media screen and (max-width: 991px) {
      max-width: 74px;
    }

    @media screen and (min-width: 992px) {
      min-width: 94px;
    }
  }

  .input-keywords {
    flex: 1 0;

    @media screen and (max-width: 991px) {
      max-width: calc(100% - 74px);
    }

    @media screen and (min-width: 992px) {
      max-width: calc(100% - 94px);
    }
  }

  .input-group.button-submit {
    flex: 1 0 100%;

    .btn-search {
      padding: 20px 30px;
    }
  }
}


@media screen and (min-width: 992px) {
  #search-box {
    flex-wrap: nowrap;

    .input-group.select-type, .input-group.select-mode {
      min-width: unset;
    }

    .input-group.button-submit {
      flex: 0 1;
    }
  }
}

.navbar {
  --bs-navbar-toggler-border-radius: 0;
  --bs-border-radius: 0;
}

#navbarSearch {
  height: 100%;
  background-color: var(--LightestGrey);

  .navbar-toggler {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
  }

  .select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
    padding: .5rem .25rem;

    .select2-selection__choice__remove {
      padding: 0 3px;
      line-height: 20px;
      font-size: 32px;
      vertical-align: bottom;
    }
  }
}


.accordion {
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-btn-padding-y: 10px;
  --bs-accordion-btn-padding-x: 22px;
  --bs-accordion-btn-bg: var(--White);
  --bs-accordion-active-bg: var(--White);
  --bs-accordion-bg: var(--LightestGrey);
}

#accordionSearch .accordion-item {
  border-bottom: 0;
}

#accordionSearch .accordion-header .accordion-button {
  padding: 20px 22px;
}

#accordionSearch .accordion-header .accordion-button:focus {
  box-shadow: none;
}

#accordionSearch .accordion-body {
  height: calc(100vh - 340px);

  @media screen and (min-width: 992px) {
    height: calc(100vh - 280px);
  }
}

#navbarSearch .navbar-confirm {
  margin: 1rem 1rem .8rem;
  width: calc(100% - 2rem);
}

/* ---------------------------  FILTER PAGE ---------------------------*/

.filter-bar .btn.selection {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--Black);
  border: 1px solid var(--Black);
  padding: 15px 35px;
  border-radius: 0;
  white-space: nowrap;
}


.filter-bar button.filter.selection::after {
  display: inline-block;
  margin-left: 15px;
  vertical-align: 0;
  content: url('../../images/icon/arrowdown-ico.svg');
  border-top: 0 solid;
  border-right: 0 solid transparent;
  border-bottom: 0;
  border-left: 0 solid transparent;
  transition: all 0.3s ease-in-out;
  transform: rotate(180deg);
}

.filter-bar button.filter.selection.collapsed::after {
  transform: rotate(0deg);
}

.filter-bar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 15px;
  vertical-align: 0;
  content: url('../../images/icon/arrowdown-ico.svg');
  border-top: 0 solid;
  border-right: 0 solid transparent;
  border-bottom: 0;
  border-left: 0 solid transparent;
  transition: all 0.3s ease-in-out;
}

.filter-bar .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.filter-bar .dropdown-menu {
  border-radius: 0;
  margin-top: 2px !important;
  border: 1px solid var(--Black);
}

.filter-bar .dropdown-menu.list-tag {
  border-radius: 0;
  margin-top: 2px !important;
  border: 1px solid var(--Black);
  padding: 20px 30px;
  max-width: calc(100vw - 200px);
}

.filter-bar .ico {
  margin-right: 10px;
  height: 24px;
  width: auto;
}

.filter-bar .ico.all,
.filter-bar .ico.tags {
  height: 19px;
}

.filter-bar .ico.big {
  height: 32px;
  margin-left: .5rem;
}

.filter-bar .command-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  min-height: 56px;
}

.filter-bar .dropdown-item {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: var(--Black);
  padding: 13px 20px;
}

.filter-bar .dropdown-item:hover {
  background: transparent;
  text-decoration: underline;
}

.filter-bar .filter-box {
  border-radius: 0;
  margin-top: -1px;
  background-color: var(--White);
  border: 1px solid var(--Black);
  padding: 14px 30px;

  .nav {
    .nav-item.type {
      .nav-link {
        font-family: 'Arial', sans-serif;
        font-size: 14px;
        line-height: 16px;
        color: var(--Black);
        padding: 13px 20px;
      }

      .nav-link:hover {
        background: transparent;
        text-decoration: underline;
      }
    }

    .nav-item.tag-item {
      padding: 0;
      margin: .25rem;

      .btn-label {
        padding: 4px 10px;
        color: var(--Black);
        border-color: var(--Black);
        font-size: 12px;
      }

      .btn-check:checked+.btn,
      .btn.active,
      .btn.show,
      .btn:first-child:active,
      :not(.btn-check)+.btn:active,
      .btn-label:hover {
        background: var(--Black);
        color: var(--White);
      }
    }
  }
}

.filter-bar .nav-underline {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: var(--Black);
  transition: all 0.3s ease-in-out;
}

.filter-bar .link-under {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  color: var(--Black);
  margin-right: 30px;
  margin-bottom: .5rem;
}

.filter-bar .link-under:last-child {
  margin-right: 0;
}

.filter-bar .link-under:after {
  display: block;
  content: '';
  border-bottom: solid 2px var(--Red);
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 100% 50%;
}

.filter-bar .link-under.active:after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.filter-bar {

  input.btn-check:checked+.link-under::after,
  .link-under:hover::after {
    transform: scaleX(1);
    transform-origin: 0 50%;
  }
}


/* ---------------------------  MODAL IMAGE/VIDEO  ---------------------------*/

.modal-det .modal-dialog {
  margin: 0;
  border: 0;

}

.modal-det .modal-content {
  border-radius: 0;
  background: var(--LightestGrey);
}

.modal-det .modal-header {
  padding-top: 30px;
  margin-bottom: 20px;
}

.modal-det .modal-body {
  padding: 0;
  overflow-x: hidden;
}

.modal-det .title {
  font-family: 'Arial', sans-serif;
  font-size: 34px;
  line-height: 46px;
  font-weight: 400;
  color: var(--Black);
  margin-bottom: 0;
}

.modal-det .type {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--MidLightGrey);
  text-transform: uppercase;
  margin-bottom: 0;
}

.modal-det .modal-header {
  border-bottom: 0;
}

#modalImage .btn-close {
  height: 50px;
  width: 50px;
  background: var(--Red);
  border-radius: 0;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
}

#modalImage .btn-close .ico {
  margin-left: 15px;
  margin-top: 15px;
  display: block;
  width: 50px;
  height: 50px;
  margin: 0;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
}

#modalImage .close-ico:after {
  box-sizing: border-box;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

#modalImage .close-ico:hover n {
  animation-name: toBottomFromTop;
  animation-duration: 0.5s;
}

#modalImage .close-ico n {
  display: block;
  width: 20px;
  height: 20px;
  background: transparent;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 24px;
}

#modalImage .close-ico n:after,
#modalImage .close-ico n:before {
  content: "";
  width: 20px;
  height: 1.25px;
  background: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-45deg);
}

#modalImage .close-ico n:before {
  transform: rotate(45deg);
}


/* ---------------------------  CONTENT DETAIL PAGE  ---------------------------*/

#content_detail_page {
  position: relative;

  .content-header {
    margin-bottom: 1rem;

    .card {
      background: transparent;
      border: none;
      border-radius: 0;
      display: flex;
      flex-direction: column;

      .btn-toggle-favourite {
        flex: 1 auto;
        padding: 0;
        width: 68px;
        display: block;
        transition: all 0.3s ease-in-out;

        .wish-ico {
          background-image: url('../../images/icon/wishdetail-icon.svg');
          height: 24px;
          width: 24px;
          background-repeat: no-repeat;
          margin: auto;
        }
      }

      .btn-toggle-favourite.wished {
        .wish-ico {
          background-image: url('../../images/icon/wishdetail-icon-b.svg');
        }
      }
    }
  }

  .title {
    font-family: 'Arial', sans-serif;
    font-size: 34px;
    line-height: 46px;
    font-weight: 400;
    color: var(--Black);
    margin-bottom: 0;
  }

  .type {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--MidLightGrey);
    text-transform: uppercase;
    margin-bottom: 0;

    img {
      height: 20px;
      width: auto;
    }
  }

  .btn-back {
    height: 50px;
    width: 50px;
    background: var(--Red);
    border-radius: 0;
    opacity: 1;
    padding: 0;
    position: absolute;
    z-index: 2;
    top: -70px;

    @media screen and (min-width: 992px) {
      top: 0;
    }
  }

  .btn-back .ico {
    margin-left: 15px;
    margin-top: 15px;
    display: block;
    width: 50px;
    height: 50px;
    margin: 0;
    position: relative;
    background: none;
    overflow: hidden;
    cursor: pointer;
    float: left;
  }

  .back-ico:hover n {
    animation-name: toBottomFromTop;
    animation-duration: 0.5s;
  }

  .back-ico n {
    background: url('../../images/icon/arrowleft-ico.svg') no-repeat scroll center center transparent;
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    bottom: 15px;
  }

  .content-main {
    .image-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: center;

      a.image-zoom {
        cursor: zoom-in !important;
        position: relative;
      }

      a.image-zoom::after {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        aspect-ratio: 1 / 1;
        background: url('../../images/icon/zoom-in-ico.svg') no-repeat scroll center center transparent;
        background-size: cover;
        opacity: .5;
        transition: all linear 200ms;
      }

      a.image-zoom:hover::after {
        opacity: 1;
      }

      .img-fluid {
        @media screen and (min-height: 600px) and (min-width: 992px) {
          /* image height = screen height - header - head margin - title (min) - title margin */
          max-height: calc(100vh - 80px - 95px - 68px - 1rem);
        }
      }
    }

    .player-wrapper {
      .thron-player {
        margin: 0 auto;
        height: 100vh;
        position: relative;

        @media screen and (min-height: 600px) and (min-width: 992px) {
          /* image height = screen height - header - head margin - title (min) - title margin */
          height: calc(100vh - 80px - 95px - 68px - 1rem);
        }

        .image-wrapper {
          .wrapper-background {
            background: url('') no-repeat scroll center center transparent;
            background-size: cover; height: 100%; width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: .5;
          }

          h3.title-small {
            text-align: center;
          }
        }
      }
    }
  }
}


/* ---------------------------  MODAL SHARE/DOWNLOAD  ---------------------------*/

#modalShare.modal,
#modalDownload.modal {
  background: rgba(0, 0, 0, 0.8);
  --bs-modal-width: 660px !important;
}

#modalShare .modal-content {
  background: var(--Red);
  color: var(--White) !important;
  border-radius: 0;
}

#modalDownload .modal-content {
  background: var(--LightestGrey);
  color: var(--MidLightGrey) !important;
  border-radius: 0;
}

#modalShare .box-sharing-ico {
  margin-top: 50px;
}

#modalShare .modal-body {
  padding: 40px 140px 90px 140px;
}

#modalDownload .box-check {
  margin-top: 35px;
}

#modalDownload .modal-body {
  padding: 40px 70px 20px 70px;
}

#modalDownload .form-check-label {
  font-size: 16px;
  line-height: 20px;
}

#modalShare a {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

#modalShare a:hover {
  text-decoration: underline;
}

#modalShare a:hover .sharing-ico {
  transform: translateY(-10px);
}

#modalShare .btn-back,
#modalDownload .btn-back {
  position: absolute;
  top: 0;
  height: 50px;
  width: 50px;
  background: var(--Red);
  border-bottom: 0;
  border-left: 0;
  left: -80px;
  z-index: 2;
  transform: rotate(90deg);

}

#modalShare .btn-back .ico,
#modalDownload .btn-back .ico {
  display: block;
  width: 20px;
  height: 25px;
  margin-left: 15px;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
  margin-top: 13px;
}

#modalShare .back-ico:after,
#modalDownload .back-ico:after {
  box-sizing: border-box;
  display: none;
  content: "";
  width: 20px;
  height: 6px;
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

#modalShare .back-ico:hover n,
#modalDownload .back-ico:hover n {
  animation-name: toBottomFromTop;
  animation-duration: 0.5s;
}

#modalShare .back-ico n,
#modalDownload .back-ico n {
  display: block;
  width: 1.25px;
  height: 14px;
  background: var(--White);
  position: absolute;
  left: 50%;
  margin-left: -0.6125px;
  bottom: 5px;
  margin-bottom: 0.75px;
}

#modalShare .back-ico n:after,
#modalShare .back-ico n:before,
#modalDownload .back-ico n:after,
#modalDownload .back-ico n:before {
  content: "";
  width: 1.25px;
  height: 7px;
  background: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: 0 6.75px;
  transform: rotate(-45deg);
}

#modalShare .back-ico n:before,
#modalDownload .back-ico n:before {
  transform-origin: 1.25px 6.75px;
  transform: rotate(45deg);
}

/* ---------------------------  MODAL CREATE PROFILE  ---------------------------*/

#modalCreateProfile.modal {
  background: rgba(0, 0, 0, 0.8);
  --bs-modal-width: 660px !important;
}

#modalCreateProfile .modal-content {
  background: var(--LightestGrey);
  color: var(--MidLightGrey) !important;
  border-radius: 0;
}

#modalCreateProfile .modal-body {
  padding: 40px 90px 40px 90px;
}

#modalCreateProfile .form-label {
  margin-bottom: 9px;
}

#modalCreateProfile .form-control {
  font-family: var(--FontPlay), sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  background: transparent;
  border: 1px solid var(--MidLightGrey);
  border-radius: 0;
  padding: 18px 18px 19px 20px !important;
  transition: all 0.3s ease-in-out;
}

#modalCreateProfile .form-control:hover {
  border: 1px solid var(--Black);
}

#modalCreateProfile .form-control::placeholder {
  font-family: var(--FontPlay), sans-serif;
  color: var(--LightGrey);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  transition: all 0.3s ease-in-out;
}

#modalCreateProfile .form-control:hover::placeholder {
  color: var(--Black) !important;
}

#modalCreateProfile .form-select {
  --bs-form-select-bg-img: url('../../images/icon/select-arrow.svg');
  display: block;
  font-family: var(--FontPlay), sans-serif;
  color: var(--LightGrey);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  background: transparent;
  border: 1px solid var(--MidLightGrey);
  border-radius: 0;
  padding: 18px 18px 19px 20px !important;
  appearance: none;
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 18px 14px;
  transition: all 0.3s ease-in-out;
}

#modalCreateProfile .form-select:hover {
  border: 1px solid var(--Black);
  color: var(--Black) !important;
}


#modalCreateProfile .btn-back {
  position: absolute;
  top: 0;
  height: 50px;
  width: 50px;
  background: var(--Red);
  border-bottom: 0;
  border-left: 0;
  left: -80px;
  z-index: 2;
  transform: rotate(90deg);

}

#modalCreateProfile .btn-back .ico {
  display: block;
  width: 20px;
  height: 25px;
  margin-left: 15px;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
  margin-top: 13px;
}

#modalCreateProfile .back-ico:after {
  box-sizing: border-box;
  display: none;
  content: "";
  width: 20px;
  height: 6px;
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

#modalCreateProfile .back-ico:hover n {
  animation-name: toBottomFromTop;
  animation-duration: 0.5s;
}

#modalCreateProfile .back-ico n {
  display: block;
  width: 1.25px;
  height: 14px;
  background: var(--White);
  position: absolute;
  left: 50%;
  margin-left: -0.6125px;
  bottom: 5px;
  margin-bottom: 0.75px;
}

#modalCreateProfile .back-ico n:after,
#modalCreateProfile .back-ico n:before {
  content: "";
  width: 1.25px;
  height: 7px;
  background: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: 0 6.75px;
  transform: rotate(-45deg);
}

#modalCreateProfile .back-ico n:before {
  transform-origin: 1.25px 6.75px;
  transform: rotate(45deg);
}


/* -----------------------------  MODAL TUTORIAL  ----------------------------*/

#modalTutorial .modal-body .content {
  margin-top: 60px;
  margin-bottom: 60px;
}

#modalTutorial .modal-body .title-big {
  margin-bottom: 16px;
}

#modalTutorial .modal-body .description {
  color: var(--MidLightGrey);
  text-align: center;

  /* Arial - XS */
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

@media screen and (min-width: 992px) {
  #modalTutorial .modal-dialog {
    --bs-modal-width: 660px;
  }

  #modalTutorial .btn-close {
    left: -70px;
  }

  #modalTutorial .modal-body {
    padding: 58px 92px;
  }

}

@media screen and (max-width: 991px) {
  #modalTutorial .btn-close {
    top: -70px;
    /*-79px*/
  }
}

.introjs-helperLayer {
  border-radius: 0 !important;
}

.introjs-tooltipReferenceLayer {

  @media screen and (max-width: 991px) {
    left: 0 !important;
  }

}

.introjs-tooltipReferenceLayer .introjs-tooltip {
  padding: 18px 26px;
  border-radius: 0;
  height: auto;
  margin-top: 50px;
  max-width: 100vw;

  @media screen and (max-width: 991px) {
    top: 35px !important;
    left: 7px !important;
    width: 88vw;
    margin-left: 0 !important;
    margin-top: 50px !important;
  }

  @media screen and (min-width: 992px) {
    width: 492px !important;
    min-width: 492px;
  }
}

.introjs-tooltipReferenceLayer .introjs-tooltip-header {
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.introjs-tooltipReferenceLayer .introjs-tooltip-header .introjs-tooltip-title {
  color: var(--LightGrey);
  font-family: var(--FontPlay);
  font-size: 14px;
  font-weight: 400;
  width: auto;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-overlay {
  position: absolute;
  z-index: 999999;
  background: #181818;
  opacity: 0;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-fixParent {
  z-index: auto !important;
  opacity: 1.0 !important;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-showElement {
  z-index: 9999999 !important;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-relativePosition {
  position: relative;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-helperLayer {
  position: absolute;
  z-index: 9999998;
  background-color: var(--White);
  background-color: rgba(255, 255, 255, .9);
  border: 1px solid #777;
  border: 2px solid rgba(117, 117, 117, 1);
  border-radius: 4px;
  box-shadow: 0 5px 8px -3px rgba(0, 0, 0, .6);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-helperNumberLayer {
  position: absolute;
  top: -16px;
  left: -9px;
  z-index: 9999999999 !important;
  padding: 2px;
  font-family: Arial, verdana, tahoma;
  font-size: 13px;
  font-weight: bold;
  color: var(--White);
  /* Old browsers */
  /* Chrome10+,Safari5.1+ */
  background: #DA4433;
  width: 20px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .35);
  height: 20px;
  text-align: center;
  line-height: 20px;
  border: 2px solid #DA4433;
  border-radius: 0;
  /* IE6-9 */
  /* IE10 text shadows */
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-helperNumberLayer:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  content: 0;
  left: -3px;
  bottom: -10px;
  border: 4px solid transparent;
  border-right-color: #900;
  border-top-color: #900;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow {
  height: 30px;
  width: 30px;
  border: 0 none;
  background: url('../../images/hotspot.svg') no-repeat scroll center center transparent;
  content: '';
  position: absolute;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.top {
  top: -90px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.right {
  right: -90px;
  top: 10px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.bottom {
  bottom: -90px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-arrow.left {
  left: -90px;
  top: 10px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltip {
  position: absolute;
  padding: 10px 10px;
  background-color: #ecf0f1;
  min-width: 200px;
  max-width: 300px;
  border-radius: 3px;
  /* border-radius: 3px; */
  /* box-shadow: 0 6px 7px -4px rgba(0,0,0,.4); */
  -webkit-transition: opacity 0.1s ease-out;
  -moz-transition: opacity 0.1s ease-out;
  -ms-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  /* border: 5px double #0787AF; */
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltiptext {
  color: var(--MidLightGrey);
  padding: 0;
  margin: 40px 0 30px;
  text-align: center;
  font-size: 14px;
  line-height: normal;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltiptext h3 {
  color: var(--Black);
  font-family: var(--FontPlay);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  /* 160% */
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons {
  text-align: center;
  border-radius: 0;
  border-top: 0 none;
  font-family: var(--FontPlay);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 20px;

  @media screen and (min-width: 992px) {
    flex-direction: row;
  }
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-button {
  color: var(--Black);
  position: relative;
  overflow: visible;
  border: 1px solid var(--Red);
  border-radius: 0;
  padding: 18px 50px;
  font-family: var(--FontPlay);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 160% */
  text-shadow: none;
  margin: 0;
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-button:hover {
  color: var(--White);
  background: var(--Red);
  text-decoration: none;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-button:focus,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-button:active {
  box-shadow: none;
}

/* overrides extra padding on button elements in Firefox */
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-skipbutton {
  position: relative;
  border-color: transparent;
  font-family: Arial;
  font-size: 12px;
  font-weight: 400;
  text-decoration-line: underline;
  width: auto;
  height: auto;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-skipbutton:hover,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-skipbutton:active,
.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-skipbutton:focus {
  color: var(--Red);
  border-color: transparent;
  background-color: transparent;
  text-decoration: underline;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-prevbutton {
  display: none;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets {
  padding: 0;
  font-size: 0;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul {
  margin: auto auto;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul li {
  list-style: none;
  float: left;
  margin: 0 2px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul li a {
  display: block;
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  text-decoration: none;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul li a:hover {
  background: var(--Gray-50, #c94d51);
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-bullets ul li a.active {
  background: var(--Red);
  width: 20px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-progress {
  background-color: #FAFAFA;
  margin: 5px 20px;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjs-progressbar {
  background-color: #2980b9;
}

.introjs-tooltipReferenceLayer .introjs-tooltip .introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%;
}


/* ---------------------------  OFFCANVAS DOWNLOAD ---------------------------*/

#offcanvasDownload.offcanvas {
  --bs-offcanvas-height: fit-content;

}

#offcanvasDownload {
  .offcanvas-body {
    padding: 35px 30px;
  }
  
  .img-number {
    font-family: var(--FontPlay), sans-serif;
    color: var(--Black);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    font-style: normal;
    background: var(--LightestGrey);
    padding: 7px 14px;
    border-radius: 20px;
  }
  
  .selection {
    font-family: var(--FontArial), sans-serif;
    color: var(--MidLightGrey);
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    border: 1px solid var(--Black);
    border-radius: 0;
    height: 46px;
    padding: 18px 10px;
  }
  
  .dropdown-menu {
    border: 0 solid var(--Black);
    border-radius: 0;
    margin-bottom: 2px !important;
  }
  
  
  .dropdown-menu.show {
    display: block;
  }
  
  .dropdown-item {
    font-family: var(--FontArial), sans-serif;
    color: var(--MidLightGrey);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
  }
  
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
    vertical-align: 0;
    content: url('../../images/icon/arrowdown-ico.svg');
    border-top: 0 solid;
    border-right: 0 solid transparent;
    border-bottom: 0;
    border-left: 0 solid transparent;
    transition: all 0.3s ease-in-out;
    transform: rotate(180deg);
  }
  
  .dropdown-toggle.show::after {
    transform: rotate(0deg);
  }

  #type-advice {
    .type {
      display: none;
      margin: 0 auto;
    }

    .ico {
      height: 24px;
      width: 24px;
    }
  }

  #type-advice.photo > .type.photo,
  #type-advice.still-life > .type.still-life,
  #type-advice.video > .type.video,
  #type-advice.document > .type.document {
    display: block;
  }

  .btn-red-o {
    background: var(--LighterGrey);
  }

  .btn-red-o.collapsed {
    background: transparent;
  }

  #download-ready {
    #download-links {
      button {
        margin: 0 0 0 1.2rem;
        vertical-align: bottom;
        width: 28px;
        height: 28px;
        background-size: contain;
      }

      button:first-child {
        margin-left: 0;
      }
    }
  }

  #share-ready {
    #share-links {
      button {
        margin: 0 0 0 1.2rem;
        vertical-align: bottom;
        width: 28px;
        height: 28px;
        background-size: contain;
      }

      button:first-child {
        margin-left: 0;
      }
    }
  }
}


/* ---------------------------  OFFCANVAS ADD STARRED ---------------------------*/

#offcanvasAddStarred.offcanvas,
#offcanvasToggleStarred.offcanvas {
  --bs-offcanvas-height: fit-content;
  background: var(--LightestGrey);

}

#offcanvasAddStarred .offcanvas-body,
#offcanvasToggleStarred .offcanvas-body {
  padding: 18px 20px;
}

#offcanvasDownload .added-ico,
#offcanvasToggleStarred .added-ico {
  height: 34px;
}

#offcanvasToggleStarred .star-added,
#offcanvasToggleStarred .star-removed {
  display: none;
}

#offcanvasToggleStarred.star-added .star-added {
  display: unset;
}

#offcanvasToggleStarred.star-removed .star-removed {
  display: unset;
}

/* ---------------------------  OFFCANVAS REMOVE STARRED ---------------------------*/

#offcanvasRemoveStarred.offcanvas {
  --bs-offcanvas-height: fit-content;
  background: var(--LightestGrey);

}

#offcanvasRemoveStarred .offcanvas-body {
  padding: 18px 20px;
}


/* ---------------------------  OFFCANVAS TAG ---------------------------*/

#offcanvasTag.offcanvas {
  --bs-offcanvas-height: fit-content;
  border-top: 1px solid var(--Black);

}

#offcanvasTag .offcanvas-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--LightestGrey);
}

#offcanvasTag .offcanvas-title {
  font-family: var(--FontPlay), sans-serif;
  color: var(--Black);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  font-style: normal;
}

#offcanvasTag .offcanvas-body {
  padding: 20px 30px;
}

#offcanvasTag .tag {
  margin-right: 12px;
  margin-bottom: 12px;
}


/* ---------------------------  OFFCANVAS MY ACCOUNT  ---------------------------*/

#offcanvasAccount.offcanvas {
  width: 450px;
}

#offcanvasAccount .offcanvas-header {
  padding: 30px 30px 30px 50px;
  background: var(--LightestGrey);
}


#offcanvasAccount .offcanvas-body {
  padding: 50px 30px 30px 50px;
}

#offcanvasAccount .img-account {
  width: 90px;
  height: auto;

}

#offcanvasAccount .initials-profile {
  font-family: var(--FontPlay), sans-serif;
  font-size: 38px;
  line-height: 44px;
  font-weight: 400;
  color: var(--White);
  background: var(--LightGrey);
  text-align: center;
  vertical-align: middle;
  width: 90px;
  padding: 23px 0;
}


#offcanvasAccount .name {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: var(--Black);
  margin-bottom: 0;
}

#offcanvasAccount .email {
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  color: var(--LightGrey);
}

#offcanvasAccount ul {
  padding-left: 0;
  list-style: none;
}

#offcanvasAccount ul li a {
  font-family: 'Arial', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  padding: .5rem 0;
  display: block;
  transition: all 0.5s ease-in-out;
  /* background: linear-gradient(to right, var(--White), var(--White)); */
}

#offcanvasAccount ul li a:hover {
  /* background: linear-gradient(to right, var(--White), var(--Red)); */
}

#offcanvasAccount .btn-close {
  height: 50px;
  width: 50px;
  background: var(--Red);
  border-radius: 0;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 30px;
  right: 0;
  margin-right: -100px;
}

#offcanvasAccount .btn-close .ico {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
}

#offcanvasAccount .close-ico:after {
  box-sizing: border-box;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

#offcanvasAccount .close-ico:hover n {
  animation-name: toBottomFromTop;
  animation-duration: 0.5s;
}

#offcanvasAccount .close-ico n {
  display: block;
  width: 20px;
  height: 20px;
  background: transparent;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 24px;
}

#offcanvasAccount .close-ico n:after,
#offcanvasAccount .close-ico n:before {
  content: "";
  width: 20px;
  height: 1.25px;
  background: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(-45deg);
}

#offcanvasAccount .close-ico n:before {
  transform: rotate(45deg);
}


/* ---------------------------  ICON  ---------------------------*/

.loader-icon {
  height: 24px;
  aspect-ratio: 1 / 1;
}

.loader-icon.big {
  height: 48px;
}

.loader-ico {
  display: inline-block;
  height: 24px;
  aspect-ratio: 1 / 1;
  vertical-align: text-top;
}

.loader-ico.big {
  height: 48px;
}

.loader-ico.black {
  background-image: url('../../images/loader-black.svg');
}

.loader-ico.white {
  background-image: url('../../images/loader-white.svg');
}

.loader-ico.red {
  background-image: url('../../images/loader-red.svg');
}

.share-ico, .share-b-ico {
  background-image: url('../../images/icon/share-ico.svg');
  height: 24px;
  width: 24px;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-repeat: no-repeat;
  margin-top: 4px;
}

.sharing-ico {
  height: 60px;
  width: 60px;
  margin-bottom: 6px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: block;
}

.wish-ico {
  background-image: url('../../images/icon/wishlist-icon.svg');
  height: 17px;
  width: 17px;
  display: block;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.wish-ico.wished {
  background-image: url('../../images/icon/wishlist-icon-b.svg');
}

.wish-ico:hover {
  transform: scale(0.85);
}

.wish-ico.active {
  background-image: url('../../images/icon/wishlist-icon-b.svg');
}

.discover-ico {
  background-image: url('../../images/icon/discover-ico.svg');
  height: 40px;
  width: 40px;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  transition: all 0.3s ease-in-out;
  position: absolute;
  cursor: pointer;
  background-repeat: no-repeat;
}

.discover-ico:hover {
  transform: scale(0.85);
}


.btn-download {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 46px;
  width: 63px;
  border-bottom: 46px solid var(--Red);
  border-left: 17px solid transparent;
}


button.ico, button.btn-download > .ico {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 13px;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
  margin-top: 13px;
}

.download-ico:after {
  box-sizing: border-box;
  display: block;
  content: "";
  width: 20px;
  height: 6px;
  border-left: 1.25px solid var(--White);
  border-right: 1.25px solid var(--White);
  border-bottom: 1.25px solid var(--White);
  border-radius: 0;
  position: absolute;
  bottom: 0;
}

.download-ico:hover n {
  animation-name: toBottomFromTop;
  animation-duration: 0.5s;
}

.download-ico n {
  display: block;
  width: 1.25px;
  height: 14px;
  background: var(--White);
  position: absolute;
  left: 50%;
  margin-left: -0.6125px;
  bottom: 5px;
  margin-bottom: 0.75px;

}

.download-ico n:after,
.download-ico n:before {
  content: "";
  width: 1.25px;
  height: 7px;
  background: var(--White);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: 0 6.75px;
  transform: rotate(-45deg);
}

.download-ico n:before {
  transform-origin: 1.25px 6.75px;
  transform: rotate(45deg);
}

.btn-download-big {
  height: 68px;
  width: 93px;
  border-bottom: 68px solid var(--Red);
  border-left: 25px solid var(--Black);
  transition: all 0.3s ease-in-out;
}

.btn-download-big .ico {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 24px;
  position: relative;
  background: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
  margin-top: 23px;
}

.btn-download-multi {
  .btn-black {
    padding: 7px 20px;
  }
}


.download-b-ico {
  background-image: url('../../images/icon/download-b-ico.svg');
  height: 24px;
  width: 24px;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-repeat: no-repeat;
  margin-top: 4px;
}


/* ---------------------------  IMG HOVER EFFECT  ---------------------------*/

.image {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.img-hover-zoom-slowmo img {
  transform-origin: 50% 50%;
  transition: transform 0.75s;
  cursor: pointer;
}

/* The Transformation */
.img-hover-zoom-slowmo:hover img {
  transform: scale(1.1);
}

.image .hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  -webkit-transition: all 0.75s ease-in-out;
  -moz-transition: all 0.75s ease-in-out;
  -o-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
  opacity: 0;
  cursor: pointer;
}


.image:hover .hover-effect {
  top: 0;
  opacity: 1;
  -webkit-transition: all 0.75s ease-in-out;
  -moz-transition: all 0.75s ease-in-out;
  -o-transition: all 0.75s ease-in-out;
  transition: all 0.75s ease-in-out;
}


/* ---------------------------  FOOTER  ---------------------------*/

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--MidLightGrey);
  padding-top: 30px;
  padding-bottom: 30px;
}


/*------------ RESPONSIVE MEDIA ------------*/
/* X-Small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */
/* Small devices (landscape phones, 576px and up) */

@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {
  #sizes-form .form-check {
    width: auto;
  }
}

/* X-Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {}

/* XX-Large devices (larger desktops, 1400px and up) */

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}

@media (min-width: 1600px) {}

@media (max-width: 575px) {

  .text-login {
    font-size: 20px;
    line-height: 28px;
  }

  .title-big {
    font-family: var(--FontPlay), sans-serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    font-style: normal;
  }

  .arial-xs {
    font-size: 14px;
    line-height: 16px;
  }

  .padding-x {
    padding-left: 30px;
    padding-right: 30px;
  }

  .mt-header {
    margin-top: 140px;
  }

  .modal-det .title {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: var(--Black);
    margin-bottom: 0;
  }

  #download-list .link-black,
  #history-lists .history-list .link-black {
    font-size: 14px;
  }

  #ticket-detail .box {
    padding: 40px 30px 40px 30px;
    border-bottom: 1px solid var(--LightestGrey);
    transition: all 0.3s ease-in-out;
  }

  #offcanvasAccount .offcanvas-header {
    padding: 30px 30px 30px 30px;
    background: var(--LightestGrey);
  }

  #offcanvasAccount .btn-close {
    right: calc(100% + 20px);
  }

  #offcanvasAccount .offcanvas-body {
    padding: 30px 30px 30px 30px;
  }

  .login-form {
    margin-top: 30px;
  }

  .login-form .btn-login {
    margin-top: 30px;
  }

  .btn-red-o.small {
    font-size: 16px;
    padding: 6px 40px;
  }

  .btn-grey-o {
    font-size: 16px;
    padding: 6px 40px;
  }

  .search-bar .button-submit {
    width: 100%;

    @media screen and (min-width: 992px) {
      width: auto;
    }
  }

  .search-bar .btn.btn-search.dark {
    padding: 20px 10px;
  }

  #ticket-list .mt-filter {
    margin-top: 50px !important;
    margin-bottom: 50px;
  }

  #ticket-list .mt-list {
    margin-top: 40px !important;
  }

  #ticket-list .mb-date {
    margin-bottom: 10px !important;
  }

  #ticket-list .box {
    padding: 20px;
  }

  #ticket-list .title-mini {
    font-size: 14px;
    line-height: 16px;
  }

  #ticket-detail .box .title {
    font-size: 18px;
    line-height: 21px;
  }

  #ticket-detail .px-20 {
    padding-left: 20px;
    padding-right: 20px;
  }
}


@media (max-width: 991px) {
  .search-bar .dropdown-toggle::after {
    margin-left: 0;
  }

  .modal-det .p-content {
    padding: 0 30px;
  }

  #modalShare .modal-dialog,
  #modalDownload .modal-dialog,
  #modalCreateProfile .modal-dialog {
    margin-left: 30px;
    margin-right: 30px;
    padding-top: 80px; 
  }

  #modalShare .btn-back {
    height: 50px;
    width: 50px;
    background: var(--Red);
    border-radius: 0;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 2;
  }

  #modalShare .box-sharing-ico {
    margin-top: 30px;
  }

  #modalShare .modal-body {
    padding: 30px 70px 40px 70px;
  }

  #modalDownload .modal-body,
  #modalCreateProfile .modal-body {
    padding: 30px 50px 30px 50px !important;
  }

  #modalDownload .a-download {
    width: 100%;
  }


  #modalDownload .btn-back,
  #modalCreateProfile .btn-back {
    height: 50px;
    width: 50px;
    background: var(--Red);
    border-radius: 0;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 2;
  }


  #offcanvasAccount .mt-100 {
    margin-top: 100px;
  }

  #offcanvasDownload {
    .offcanvas-body {
      padding: 15px 20px;
    }

    .dropdown-menu {
      margin-bottom: 25px !important;
    }

    .btn-red-o {
      font-family: var(--FontPlay), sans-serif;
      color: var(--Black);
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;
      text-align: center;
      background: var(--LighterGrey);
      padding: 11px 13px;
      border: 1px solid var(--Red);
      transition: all 0.3s ease-in-out;
    }

    .btn-red-o.collapsed {
      background: transparent;
    }

    .share-ico, .download-b-ico {
      height: 18px;
      width: 18px;
      transition: all 0.3s ease-in-out;
      cursor: pointer;
      background-repeat: no-repeat;
      margin-left: 0;
      background-size: contain;
    }

    .btn-download-big {
      height: 46px;
      width: 46px;
      border-bottom: 46px solid var(--Red);
      border-left: 0 solid var(--Black);

      .ico {
        display: block;
        width: 20px;
        height: 20px;
        margin-left: 14px;
        position: relative;
        background: none;
        overflow: hidden;
        cursor: pointer;
        float: left;
        margin-top: 13px;
      }
    }
  }

  #offcanvasAddStarred .offcanvas-body,
  #offcanvasRemoveStarred .offcanvas-body,
  #offcanvasToggleStarred .offcanvas-body {
    padding: 25px 20px;
  }
}

@media (max-width: 1199px) {}

@media (min-width: 576px) and (max-width: 991px) {
  #offcanvasAccount .btn-close {
    height: 50px;
    width: 50px;
    background: var(--Red);
    border-radius: 0;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 38px;
    right: 100%;
  }
}

#keywords-select {
  position: relative;

  .select2-container .selection .select2-selection--multiple {
    background-color: var(--White);
  }
}

#search-form {

  .select2 {
    width: 100% !important;
  }

  .select2 .selection .select2-selection {
    border: 0 none;
    border-radius: 0;
  }

  .select2 .selection .select2-selection>ul {
    padding: 0 15px 15px 0;

    @media screen and (min-width: 992px) {
      padding-top: 15px;
      padding-left: 15px;
    }
  }
}

.select-container .select {
  flex-wrap: nowrap;
  align-items: center;
  min-height: 72px;
  padding-left: 20px;

  @media screen and (max-width: 991px) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.select-container .select label {
  font-size: small;
  white-space: nowrap;
}

.select2-container .select2-dropdown {
  border-radius: 0;

  @media screen and (max-width: 991px) {
    border: 0 none;
    background-color: var(--LightestGrey);
  }
}

.select2-container .select2-dropdown .select2-results .select2-results__option {
  font-size: 16px;
}

.select2-container .select2-dropdown .select2-results .select2-results__option:nth-child(odd) {
  /* background-color: var(--LightestGrey); */
}

.select2-container.select2-container--default .select2-results>.select2-results__options {
  max-height: 184px;
}

.select2-container .select2-dropdown .select2-results .select2-results__option {
  font-size: 12px;

  @media screen and (min-width: 992px) {
    font-size: 16px;
    padding: .5rem 2rem;
  }
}

.select2-container .select2-dropdown .select2-results .select2-results__option.select2-results__option--highlighted {
  background-color: var(--Red);
  border-color: var(--LightGrey);
}

.select2-container .selection .select2-selection--multiple {
  background-color: var(--LighterGrey);
  transition: all 0.3s ease-in-out;
}

.select2-container.select2-container--open .selection .select2-selection--multiple {
  background-color: var(--White);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  font-weight: normal;
  color: var(--Black);
  margin-right: 3px;

  @media screen and (min-width: 992px) {
    font-size: 20px;
    margin-right: 5px;
  }
}

.select2-container .select2-selection--multiple .select2-selection__rendered li.select2-selection__choice {
  background-color: var(--White);
  color: black;
  white-space: wrap;
  display: inline-flex;
  align-items: center;

  @media screen and (min-width: 992px) {
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
  }
}

.select2-container .select2-selection.error {
  background-color: #f8d7da;
}

.select2-container--default .select2-search--inline .select2-search__field {
  font-family: var(--FontPlay);
  font-size: 20px;
}

#accordionSearch .accordion-item .accordion-body label {
  display: none;
}

#accordionSearch .select2.select2-container--default .select2-selection {
  border: 0 none;
  border-radius: 0;
  font-family: var(--FontPlay);
  min-height: 35px;
  font-size: 18px;
  line-height: 20px;
}

#accordionSearch .select2.select2-container--default .select2-selection .select2-selection__rendered {
  padding: 0 18px 0 22px;
  background: url('/static/images/icon/searchgrey-ico.svg') no-repeat scroll calc(100% - 15px) center transparent;
  margin: 5px 0;
}

#accordionSearch .select2.select2-container--default .select2-search--inline .select2-search__field {}

#accordionSearch .select2.select2-container--default .select2-search--inline .select2-search__field {
  margin: 5px 0;
  padding: .5rem .25rem;
}

#thron_player {
  .th-button-color-active {
    fill: var(--Red);
    color: var(--Red);
  }

  .th-button-color:not(.th-hover-disabled):not(.th-button-disabled):hover {
    fill: var(--Red);
    color: var(--Red);
  }

  .th-selectable-container ::selection {
    background-color: var(--Red);
  }

  .th-progress {
    background-color: var(--Red);
  }
}

#password-recovery {
  height: auto;

  .nav {
    .nav-item {
      .nav-link {
        font-family: var(--FontPlay), sans-serif;
        text-transform: uppercase;
      }

      .nav-link.active {
        background-color: var(--LighterGrey);
      }
    }
  }
}