
#the_iframe {
    overflow-y: scroll;
    z-index:99999999999;
    transition: left .2s ease-out;
}

.envite-text {
    font-family: "gilroyBold";
}

iframe {
    width: 0;
    height: 0;
}

div.new {
    height: 0;
}

#chat-box {
    width: 500px;
    height: 322px;
    overflow-y: auto;
    border: 1px solid black;
}

#message-form {
    margin-top: 20px;
    width: 500px;
}

.flex-container-messages {
    display: flex;
    flex-direction: row;
    align-content: space-between;
}

.flex-container-header {
    width: 500px;
    height: 50px;
    margin-top: -40px;
    display: flex;
    flex-direction: row;
    align-content: space-between;
}

#envite-title {
    flex-grow: 8;
    margin-top: auto;
}


#user-container {
    flex-grow: 3;
    display: flex;
    flex-direction: row;
    align-content: space-between;
}


#sign-in-facebook {
    flex-grow: 1;
    margin: 6px;
}

#sign-in-google {
    flex-grow: 1;
    margin: 6px;
}

#user-name {
    flex-grow: 1;
    margin: 13px 6px;
}

#sign-out {
    flex-grow: 1;
    margin: 6px 0px;
}


#message {
    flex-grow: 8;
}

#submit {
    flex-grow: 3;
}

.product-category .liChk{
    display: none!important;
}

.liChk{
    right: 11px;
    position: absolute;
    top: 0;
    width: 112px;
    height: 85px;
    margin: 0;
    padding: 0;
    display: block;
    z-index: 100;
    display: none;
}

.envite-chat-conversation .liChk {
    display: block !important;
}

.text-description{
    display: none;
    width: 112px;
    height: 43px;
    box-shadow: 0 8px 9px -5px #fcb388;
    background-image: linear-gradient(111deg, #f75070, #ffe194);
    position: absolute;
    top: 40px;
    padding-left: 0;
    padding-top: 0;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.text-description-part{
    display: none;
    width: 20px;
    height: 20px;
    box-shadow: 0 8px 9px -5px #fcb388;
    background-image: linear-gradient(111deg, #f75070, #ffe194);
    transform: rotate(45deg);
    position: absolute;
    right: 6px;
    top: 35px;
    z-index: -1;
}

.woocommerce-product-gallery:hover .liChk{
    cursor: pointer;
    background: url("../img/circle.png") no-repeat top right;
} 

.chat-about-it-button-img {
    cursor: pointer;
    background: url("../img/circle.png") no-repeat top right;
} 

.woocommerce-product-gallery:hover .text-description,
.woocommerce-product-gallery:hover .text-description-part {
    display: flex;
}

li.product:hover .liChk{
    cursor: pointer;
    background: url("../img/circle.png") no-repeat top right;
} 
li.product:hover .text-description,
li.product:hover .text-description-part {
    display: flex;
}

/*-------------------
  #checkbox-v style
  ------------------*/

input[type='checkbox']#checkbox-v+label {
    border: 1px solid #fff;
    background: transparent;
    overflow: visible;
}

input[type='checkbox']#checkbox-v+label:before,
input[type='checkbox']#checkbox-v+label:after {
    position: absolute;
    opacity: 0;
    z-index: -1;
@include transition(0.5s, ease, all);
}

input[type='checkbox']#checkbox-v+label:before {
    content: '';
    width: 1px;
    left: 0;
    right: 0;
    bottom: calc(100% + 3px);
    margin: auto;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #D3D3D3;
}

input[type='checkbox']#checkbox-v+label:after {
    content: attr(data-input-value);
    width: 100%;
    display: block;
    padding: 5px 0;
@include border-radius(4px);
    background-color: #D3D3D3;
    color: #f79494;
@include custom-font(12px, 400);
    text-align: center;
    text-transform: none;
    bottom: calc(100% + 10px);
    text-indent: 0;
    overflow: hidden;
}

input[type='checkbox']#checkbox-v:checked+label {
    background: #D3D3D3;
}

input[type='checkbox']#checkbox-v:checked+label:before,
input[type='checkbox']#checkbox-v:checked+label:after {
    opacity: 1;
    z-index: 11;
@include transition(0.25s, ease, all);
}

.iframe-container {
    /* padding-left: 50px; */
    width: 320px;
    /* transform: translateX(-50px); */
    height:100%;
    position: fixed;
    left: -50px;
    top: 0;
}
.iframe__envite-button {
    height: 77px;
    width: 210px;
    position: fixed;
    bottom: 40px;
    left: 40px;
}
.iframe-login {
    height: 386px;
    width: 270px;
    position: fixed;
    bottom: 40px;
    left: 40px;
}

.iframe-profile-with-navigation {
    /* padding-left: 50px; */
    width: 320px;
    /* transform: translateX(0); */
    height:100%;
    position: fixed;
    left: 0;
    top: 0;
}

.iframe-minimized {
    left: -50px;
}

.animate {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

.animate-slow {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  @keyframes fade-out-left {
    from {
      opacity: 1;
    }
  
    to {
      opacity: 1;
      transform: translate3d(-120%, 0, 0);
    }
  }
  
  .fade-out-left {
    animation-name: fade-out-left;
  }

@keyframes moveDown {
    from {
      opacity: 1;
    }
      to {
      opacity: 1;
      transform: translate3d(0, calc(100% - 48px), 0);
    }
  }
  
  .moveDown {
    animation-name: moveDown;
  }

  .moveDownFast {
    transform: translate3d(0, calc(100% - 48px), 0);
  }

     
  @keyframes moveUp {
    from {
      opacity: 1;
      transform: translate3d(0, calc(100% - 48px), 0);
    }
      to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  .moveUp {
    animation-name: moveUp;
  }

  @keyframes fade-in-left {
    from {
      opacity: 1;
      transform: translate3d(-110%, 0, 0);
    }
      to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
.fade-in-left {
    animation-name: fade-in-left;
}

.iframe-profile-mobile {
    bottom: 0;    
    width: 100%;
    height: 460px;
}

.envite-button-mobile {
    width: 85px;
    height: 80px!important;
    bottom: 20px;
    left: 20px;
}

.minimized-desktop {
    width: 300px;
    height: 48px;
    left: 0;
    bottom: 0;
}

