/*
Custom Css
*/
.gradient-custom {
	/* fallback for old browsers */
	background: #6a11cb;

	/* Chrome 10-25, Safari 5.1-6 */
	background: -webkit-linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1));

	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	background: linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1))
}

.border-radius-30{
	border-radius: 30px!important;
}

.border-radius-100{
	border-radius: 100px!important;
}

/********************LOGIN********************/
  
.btn-login {
	font-size: 0.9rem;
	letter-spacing: 0.05rem;
	padding: 0.75rem 1rem;
}
  
.btn-google {
	color: white !important;
	background-color: #ea4335;
}
  
.btn-facebook {
	color: white !important;
	background-color: #3b5998;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    background-color: #caedd1;
}
/***********************LOGIN END**************/

/***********************INBOX START ************/

tr.message-row {
    cursor: pointer;
}


/***********************INBOX END *************/

/***************ERROR MESSAGE START***************/
body{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
.info, .success, .warning, .error, .validation {
	border: 1px solid;
	margin: 10px 0px;
	padding: 15px 10px 15px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
}
.info {
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../img/info_message.png');
}
.success {
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('../img/success_message.png');
}
.warning {
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../img/warning_message.png');
}
.error{
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('../img/error_message.png');
}
/***************ERROR MESSAGE END***************/

tr.success:hover {
    cursor: pointer;
}

tr.danger:hover {
    cursor: pointer;
}

.templatemo-submenu a:hover {
    color: #59ab6e;
	font-weight: bold;
}

/***************CONTACT FORM START***********/
div#success {
    text-align: center;
    box-shadow: 1px 1px 5px #455644;
    background: #bae8ba;
    padding: 10px;
    border-radius: 3px;
    margin: 0 auto;
    width: 350px;
}

.inputBox {
    width: 100%;
    margin: 5px 0px 15px 0px;
    border: #dedede 1px solid;
    box-sizing: border-box;
    padding: 15px;
}

#contact-popup {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    color: #676767;
}

.contact-form {
    width: 350px;
    margin: 0px;
    background-color: white;
    font-family: Arial;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -210px;
    margin-top: -255px;
    box-shadow: 1px 1px 5px #444444;
    padding: 20px 40px 40px 40px;
}

#contact-icon {
    padding: 10px 5px 5px 12px;
    width: 58px;
    color: white;
    box-shadow: 1px 1px 5px grey;
    border-radius: 3px;
    cursor: pointer;
    margin: 60px auto;
}

.info {
    color: #d30a0a;
    letter-spacing: 2px;
    padding-left: 5px;
}

#send {
    background-color: #09F;
    border: 1px solid #1398f1;
    font-family: Arial;
    color: white;
    width: 100%;
    padding: 10px;
    cursor: pointer;
}

#contact-popup h1 {
    font-weight: normal;
    text-align: center;
    margin: 10px 0px 20px 0px;
}

.input-error {
    border: #e66262 1px solid;
}

/***************CONTACT FORM START***********/

.templatemo-sidebar .templatemo-submenu >li.active {
    background-color: rgb(191, 232, 167);
}

.dropdown-menu {
    min-width: unset;
}

div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 180px;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
  }
.upload-button-area{
  max-width: 500px;
}

.has-error {
    border: #a94442 solid 2px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

#toast {
    visibility: hidden;
    background-color: #e06666;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 5px;
    position: fixed;
    z-index: 1;
    margin-left: 25%;
    bottom: 30px;
    font-size: 17px;
    border-radius: 25px;
    padding: 1% 2% 1% 4%;
    right: 0px;
    /*width: max-content;*/
  }
  
  #toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 5s;
    animation: fadein 0.5s, fadeout 0.5s 5s;
  }

  #toast.show.success {
    background-color: #93c47d;
  }

  #toast.show.warning {
    background-color: #ffd966;
  }

  #toast.show.error {
    background-color: #e06666;
  }
  
  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;} 
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;} 
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }

  .row.row-order{
    cursor:pointer;
    border: solid 0.5px;
  }

  .row.row-order:hover{
    background-color: #ded8d8!important;
  }

  .card-body-order {
    flex: 1 1 auto;
    padding: 1rem 1rem;
    /* background-color: #caedd1; */
}

  @media only screen and (max-width: 600px) {
    .mb-4 {
        margin-bottom: 0px!important;
    }
    .p-class{
      margin-bottom:0px;
      font-size: 18px!important;
    }

    .padding-bottom-10px{
      padding-bottom: 20px!important;
    }

    .mobile-logo-class{
      width:30%!important;
      height:30%!important;
    }

    .hide-mobile{
      display: none;
    }

    .hide-desktop{
      display: unset!important;
    }

    .width-for-mobile{
      width: 80%!important;
      height: 80%!important;
    }

    .width-for-mobile-active{
      width: 110%!important;
      height: 110%!important;
    }

    .whatsapp {
      position: fixed;
      bottom: 60px!important;
      right: 10px!important;
      width: 60px!important;
      overflow: hidden;
      z-index: 999999;
      padding-top: 0px!important;
      padding-left: 0px!important;
      padding-bottom: 0px!important;
      cursor: pointer;
    }
    .whatsapp a{
      padding-left: 0%!important;
    }
  }

  .background-color-azure{
    background-color: azure;
  }

  .order-prev-status{
    background-color: #4F8A10;
    color:white;
  }
  
  /*.order-next-status{
    background-color: #56469e;
    color:white;
  }*/
  .order-curr-status{
    background-color: #9b8c40;
    color:white;
  }

  /** CHAT START **/
  .chat-body {
    margin: 0 auto;
    width: 100%;
    /*padding: 0 20px;*/
  }
  
  .chat-container {
    border: 2px solid #dedede;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    overflow-y: auto;
    max-height: 300px;
    min-height: 100px;
  }
  
  .darker-from {
    border-color: #ccc;
    background-color: #ddd;
  }
  .darker-to {
    border-color: #ccc;
    background-color: #efeaea;
}
  
  .chat-container::after {
    content: "";
    clear: both;
    display: table;
  }
  
  .chat-container img {
    float: left;
    max-width: 60px;
    width: 100%;
    margin-right: 20px;
    border-radius: 50%;
  }
  
  .chat-container img.right {
    float: right;
    margin-left: 20px;
    margin-right:0;
  }
  
  .time-right {
    float: right;
    color: #aaa;
  }
  
  .time-left {
    float: left;
    color: #999;
  }

  .msg-inputs{

    bottom: 0;
    display: flex;
    width: 100%;
 }
         
 .msg-inputs .msg-input[type=text] {
   width: 80%;
   overflow: hidden;
   background-color: #caedd1;
   color: black;
   border: 2px solid black; /* or make 'none' */
   border-radius: 15px;
 }
 
 .msg-inputs .send-btn{
     background-color: #181818; 
     color: #ff9e3d;
     border: 2px solid #ff9e3d;
     margin-left: 2px;
     width: 20%;
     overflow: hidden;
     justify-content: center;
 }
   
 .send-btn:hover {
   background-color: #ff9e3d;
   color: white;
   cursor: pointer;
 }

 .send-btn-chat {
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  padding: 0.75rem 1rem;
  margin: 0px 0px 0px 10px;
  border-radius: 15px;
}
  /** CHAT END **/

.padding-bottom-10px{
  padding-bottom: 20px;
}

.p-class{
  margin-bottom:0px;
  font-size: 12px;
}

.row-limited{
  max-height: 350px;
  overflow: auto;
}


#toast-text {
  padding: 30px;
}

.mobile-logo-class{
  width:10%;
}

.hide-desktop{
  display: none;
}

.img-black-and-white{
  filter: grayscale(1.0);
}

.width-for-mobile{
  width: 30%;
  height: 100%;
}

.width-for-mobile-active{
  width: 30%;
  height: 100%;
}

select {
  background-color: white;
  border: thin solid grey;
  border-radius: 4px;
  display: inline-block;
  font: inherit;
  line-height: 1.5em;
  padding: 0.5em 3.5em 0.5em 1em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select.arrows {
  background-image:    url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAA3klEQVRIS+3VMU9CMRTF8d8zBL+aizoQFhx0kUk33RzdYMNFXUFnYeGrYYyaJiUxJHDLSxodbNKpfeffc9/pbaPyaCrr+3OA++z4rtT5Pg5GuMnCY9yWQEoBE1xhlUUP8YDrCBIB0vojLvGO0yz4hm4JJAKcYYoPHGOZAUdYoIMBXrc5iQAHeMlzviFygj7O8dkWEJU4XI8chALRhn9AVKHf70VRTHu4wFfbmKZLNKt50dLBnna0imcMd/2I0phWa3Y/D1e1Xa9BCZJG0VuQNpaWKMx72xS1Fl5/WN3BN+AgJhnZQlq4AAAAAElFTkSuQmCC');
  background-position: calc(100% - .5rem), 100% 0;
  background-size:  1.5em 1.5em;
  background-repeat: no-repeat;
  padding: 5px 30px 5px 5px;
}

select.arrows:focus {
  border-color: blue;
  outline: 0;
}

#cookie-law-info-bar {
  font-size: 15px;
  margin: 0 auto;
  padding: 12px 10px;
  position: absolute;
  text-align: center;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  width: 100%;
  z-index: 9999;
  display: none;
  left: 0;
  font-weight: 300;
  box-shadow: 0 -1px 10px 0 rgba(172,171,171,.3)
}

#cookie-law-info-again {
  font-size: 10pt;
  margin: 0;
  padding: 5px 10px;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
  box-shadow: #161616 2px 2px 5px 2px
}

/* Popup styles */
#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border: 1px solid black;
  border-radius: 20px;
  backdrop-filter: blur(15px);
}

/* Close button styles */
#popup .popup-content button {
  float: right;
}

#popup .btn.btn-default {
  margin: 10px;
    background-color: green;
    color: white;
}

#popup .btn {
  margin: 10px;
    background-color: rgb(68, 87, 68);
    color: white;
}

.overlay {
  position:absolute;
  display:none; 

   /* color with alpha transparency */
   background-color: rgba(0, 0, 0, 0.7);

   /* stretch to screen edges */
   top: 0;
  left: 0;
   bottom: 0;
   right: 0;
}


.ribbon-wrapper .ribbon {
  box-shadow: 0 0 3px rgba(0,0,0,.3);
  font-size: .8rem;
  line-height: 100%;
  padding: 0.375rem 0;
  position: relative;
  right: -2px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0,0,0,.4);
  text-transform: uppercase;
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 90px;
  font-weight: bold;
  color:white;
}

.ribbon-wrapper.ribbon-lg {
  height: 120px;
  width: 120px;
}

.ribbon-wrapper.ribbon-xl {
  height: 180px;
  width: 180px;
}
.ribbon-wrapper {
  height: 70px;
  overflow: hidden;
  position: absolute;
  right: -2px;
  top: -2px;
  width: 70px;
  z-index: 1;
}

.ribbon-wrapper.ribbon-xl .ribbon {
  right: 4px;
  top: 47px;
  width: 240px;
}

.bg-sale{
  background-color: red!important;
}

.user-panel img {
  height: 2rem;
  width: 2rem;
}

.elevation-2 {
  box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)!important;
}
.img-circle {
  border-radius: 50%;
}
img {
  border-style: none;
  vertical-align: sub;
}

.profile-user-img {
  border: 3px solid #adb5bd;
  margin: 0 auto;
  padding: 3px;
  width: 100px;
}

.img-fluid-v2 {
  /*max-width: 100%;
  height: auto;*/
  height: 10.1rem;
  width: 10.1rem;
}

.customized-cursor {
  /*cursor:url('../img/change-profile.png'), auto;*/
  cursor: pointer;
}

.hidden {
  display: none;
}

.form-check-input{
  cursor: pointer;
}

.store-product-name{
  cursor: pointer;
  z-index: 4;
  position: relative;
}

.store-product-name:hover {
  text-decoration: underline!important;;
}

#myTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: green;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 100px 100px 0px 0px;
}

#myTopBtn:hover {
  background-color: #555;
}

.selected-elements-class{
  background: rgb(207, 244, 207);
  border-radius: 5px;
  padding: 2px;
}

.original-amount{ 
  text-decoration: line-through;
  color: gray;
  font-size: 15px;
}

.current-amount{ 
  color: black;
  font-weight: bold;
  font-size: 15px;
}

.whatsapp {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: auto;
  overflow: hidden;
  z-index: 999999;
  padding-top: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  cursor: pointer;

}
.whatsapp a{
  padding-left: 73%;
}
.whatsapp img {
  animation-name: bounce;
  animation-timing-function: ease;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  width: 60px;
  height: 70px;
  padding-top: 10px;
}

.ballon{
  visibility: hidden;  
}

.whatsapp:hover .ballon{
  visibility: visible!important;
  color: green;
}