/*** Cookie ***/
.cookie-alert {
    position: fixed;
    top: auto;
    bottom: 0;
    /* right: calc((100% - 1200px) / 2); */
    right: 20px;
    left: auto;
    padding: 0 !important;
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    max-width: 400px;
    width: 100%;
    border: 2px solid #333;
  }
  .cookie-alert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
  }
  .cookie-alert .card-body {
    border-radius: 10px;
  }
  .cookie-alert .card-title {
    font-size: 45px;
  }
  .cookie-alert .card-text {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #545e6c !important;
  }
  .cookie-alert .card-title {
    letter-spacing: -1px;
  }
  #cookiessettingsmodal .modal-header{padding: 15px 25px;}
  #cookiessettingsmodal .modal-header .modal-title{color: #333;font-size: 20px;font-weight: 600;}
  #cookiessettingsmodal .modal-header .btn-close{
    color: #333;
    opacity: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 25px;
    height: 25px;
  }
  #cookiessettingsmodal .modal-body .form-check.form-switch{
    display: flex;
    align-items: center;
    justify-content: end;
    width: auto;
    margin: 0;
    margin-bottom: -30px;
  }
  @media (max-width: 480px) {
      .cookie-alert {
        right: 0;
        left: 0;
        margin: auto;
        width: 95%;
      }
      .cookie-alert .card-title {
          font-size: 24px;
          line-height: 28px;
          margin-bottom: 10px;
      }
      .cookie-alert .card-text {
        font-size: 12px;
      }
  }  
  
  /*** Linkedin Modal ***/
  .SocialMediaModal .ModalAll__content {    
      inset: 0;
      width: 100%;
      height: auto;
      max-width: 400px !important;
      max-height: 400px !important;
      border-radius: 16px !important;
  }	
  @media (max-width: 480px) {
      .SocialMediaModal .ModalAll__content {
          max-width: 100% !important;
          max-height: 400px !important;
          top: auto !important;
      }
  }
  
  
  /*** Video Play ***/
  .video-wrap {
      display: flex;
      align-items: center;
      justify-content: flex-start;
  }
  
  .video-wrap .lets-play {
      width: 55px;
      height: 55px;
      border-radius: 100%;
      text-align: center;
      line-height: 53px;
      padding: 0 0 0 3px;
      background: #ffa301;
      border: 5px solid #ffffff;
      position: absolute;
  }
  
  .video-wrap .lets-play i {
      font-size: 24px;
      color: #ffffff;
  }
  
  .video-wrap:hover .lets-play {
      background: #ffffff82;
      border: 5px solid #ffa3017a;
  }
  
  .video-wrap:hover .lets-play i {
      color: #ffa301;
  }
  
  #video-wrap:not(.active) {
      opacity: 0;
      visibility: hidden;
  }
  
  #video-wrap .video-overlay {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
  }
  
  #video-wrap .video-container {
      width: 100vh;
      transition: all 0.3s ease-in-out;
      transform: scale(0.9);
  }
  
  #video-wrap .close-video {
      background-color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 5%;
      top: 5%;
      width: 42px;
      height: 42px;
      border-radius: 100%;
      border: solid 2px #ffa301;
      padding: 0;
      transition: all 0.3s ease-in-out;
      z-index: 150;
  }
  
  #video-wrap .close-video:before, #video-wrap .close-video:after {
      content: "";
      width: 60%;
      height: 3px;
      background-color: #ffa301;
      position: absolute;
      transition: all 0.3s ease-in-out;
  }
  
  #video-wrap .close-video:before {
      transform: rotate(42deg);
  }
  
  #video-wrap .close-video:after {
      transform: rotate(-42deg);
  }
  
  #video-wrap .close-video:focus {
      outline: none;
  }
  
  #video-wrap .close-video:hover {
      background-color: #ffa301;
  }
  
  #video-wrap .close-video:hover:before, #video-wrap .close-video:hover:after {
      background-color: #fff;
  }
  
  #video-wrap video, #video-wrap iframe {
      position: relative;
      z-index: 10;
      border-radius: 0px;
      box-shadow: 0 0 19px rgba(0, 0, 0, 0.16);
      width: 100%;
      height: 70vh;
      max-height: 80vh;
      background-color: #000;
  }
  
  #video-wrap video {
      object-fit: cover;
  }
  
  #video-wrap.active {
      opacity: 1;
      visibility: visible;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 12px;
      height: 100vh;
      display: flex;
      transition: all 0.3s ease-in-out;
      z-index: 99991;
      align-items: center;
      justify-content: center;
  }
  
  #video-wrap.active .video-container {
      transform: scale(1);
  }
  
  @media (max-width: 1659px) and (min-width: 1330px) {
      #video-wrap .video-container {
              max-width: 978px;
      }
  }
  
  @media (min-width: 1660px) {
      #video-wrap .video-container {
              max-width: 1431px;
      }
  }
  
  @media (max-width: 720px) {
      #video-wrap .video-container {
              width: 99%;
      }
      .video-wrap .lets-play {
              /* top: 32%; */
              /* left: 41%; */
      }
  }
  