 


/* override boostrap table white baackground color */
/* override boostrap table white baackground color */

.table tr td, .table tr th{
  background-color: transparent !important;
}

/* end of override boostrap table white baackground color */
/* end of override boostrap table white baackground color */




/* animated-sign */
.animated-sign {
    display: inline-block;
}

.sale-sign {
    animation: swing 5s ease-in-out infinite alternate;
    transform-origin: bottom left;
    width: 78px;
    height: 34px;
    padding: 0;
    border-radius: 4px; 
    background: #F15F22;
    font-family: sans-serif;
    letter-spacing: 1px;
    position: relative;
}


.sale-sign:before{
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    left: 3px;
    bottom: 3px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 7.5px;
    background-color: #656565;
	
}






@keyframes swing {
    /* 0% { transform: rotate(80deg); }
    20% { transform: rotate(100deg); }
    40% { transform: rotate(85deg) }
    60% { transform: rotate(95deg) }
    80% { transform: rotate(77deg) }
    100% { transform: rotate(100deg) } */

    0% { transform: rotate(95deg); }
    20% { transform: rotate(115deg); }
    40% { transform: rotate(100deg) }
    60% { transform: rotate(115deg) }
    80% { transform: rotate(97deg) }
    100% { transform: rotate(115deg) }
}

/* end of animated-sign */



/*
 * billing-type-switch Styles
 */

/*
 * billing-type-switch Styles
 */

 .billing-type-switch {
    display: inline-block;
    position: relative;
    height: 22px;
    /* margin-top:3px; */
    margin-top: 0;
    padding: 2px;
    background: #fff;
    border-radius: 2px;
    width: 140px;
    border-radius: 30px;
    /* border: solid 1px #ddd; */
    border: 1px solid #E5D8C3;
    
  }
  
  .billing-type-switch-input {
    display: none;
  }
  
  .billing-type-switch-label {
    /* float: left; */
    width: 66px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: color 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;

    user-select: none;
    font-family: "Open Sans";
    color: #888;
    
    font-size: 10px;
    font-weight: 500;
    opacity: 0.7;
    
  }

  .billing-type-switch .bt-left {
 
    left: 3px;
 
  }
  .billing-type-switch .bt-right{
    /* width: 66px; */
    right: 0;
 
  }
  
  
  .billing-type-switch-toggle {
    position: absolute;
    float: left;
    height: 18px;
    width: 50%;
    font-size: 11px;
    line-height: 18px;
    cursor: pointer;
    /* background-color: #3366cc; */
    background-color: #FFF3CC;
    border: #DFBC6A 1px solid;
    border: 1px solid #E5D8C3;
    border-radius: 30px;
    left: 2px;
    top: 2px;
    transition: left 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
  }
  
  .billing-type-switch-input:checked + .billing-type-switch-label {
    /* color: #fff; */
    color: #888;
    color: #f95932;
    font-weight: 700; 
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }
  
  .billing-type-switch-input-bill-yearly:checked ~ .billing-type-switch-toggle {
    left: 72px;
    width: 64px;
     
  }
  
  
  /*
   * end of billing-type-switch Styles
   */
  




/* animate responeMSG show and hide v2.0 2023-10-12 */
/* animate responeMSG show and hide v2.0 2023-10-12 */
/* animate responeMSG show and hide v2.0 2023-10-12 */
 
div[class^='msg-response'].show {
  -webkit-animation: scaleUp 400ms 300ms ease both;
  animation: scaleUp 400ms 300ms ease both;
}

div[class^='msg-response'].hide {
  -webkit-animation: scaleDown 400ms ease both;
  animation: scaleDown 400ms ease both;
}

/* animate resized div */
.anim-resize {  
  height: 20px;
  transition: all .3s linear;
}

/* Animate response message */
@-webkit-keyframes scaleUp {
  0% { -webkit-transform: scale(0.5); opacity: 0; visibility: hidden;  }
  100% { -webkit-transform: scale(1); opacity: 1; visibility: visible; }
}
 
@keyframes scaleUp {
  0% { transform: scale(0.5); opacity: 0; visibility: hidden;  }
  100% { transform: scale(1) ; opacity: 1; visibility: visible; }
}

@-webkit-keyframes scaleDown {
  0% { -webkit-transform: scale(1); opacity: 1; visibility: visible; }
  100% { -webkit-transform: scale(0.5); opacity: 0; visibility: hidden; }
}

@keyframes scaleDown {
  0% { transform: scale(1); opacity: 1; visibility: visible; }
  100% { transform: scale(0.5); opacity: 0; visibility: hidden;  }
}

/* end of animate responeMSG show and hide v2.0 2023-10-12 */
/* end of animate responeMSG show and hide v2.0 2023-10-12 */
/* end of animate responeMSG show and hide v2.0 2023-10-12 */
















/* animate show and hide */
   
.animate-show {
    -webkit-animation: animateShow 400ms ease both;
    animation: animateShow 400ms ease both;

}

.animate-hide {
    -webkit-animation: animateHide 400ms ease both;
    animation: animateHide 400ms ease both;

}

@-webkit-keyframes animateShow {
    0% { -webkit-transform: scale(0.5); opacity: 0;  }
    100% { -webkit-transform: scale(1); opacity: 1;  }
}

@keyframes animateShow {
    0% { transform: scale(0.5); opacity: 0;    }
    100% { transform: scale(1) ; opacity: 1;  }
}


@-webkit-keyframes animateHide {
    0% { -webkit-transform: scale(1); opacity: 1;  }
    100% { -webkit-transform: scale(0.5); opacity: 0;   }
}

@keyframes animateHide {
    0% { transform: scale(1); opacity: 1;  }
    100% { transform: scale(0.5); opacity: 0;   }
}


/* end animate show and hide */


/* animate zoom in price and out */
   
.animate-zoom-normal {
    -webkit-animation: animateZoomNormal 400ms ease both;
    animation: animateZoomNormal 400ms ease both;

}

.animate-zoom-in {
    -webkit-animation: animateZoomIn 400ms ease both;
    animation: animateZoomIn 400ms ease both;

}

@-webkit-keyframes animateZoomNormal {
    0% { -webkit-transform: scale(1.5); }
    100% { -webkit-transform: scale(1);  }
}

@keyframes animateZoomNormal {
    0% { transform: scale(1.5);    }
    100% { transform: scale(1) ;  }
}


@-webkit-keyframes animateZoomIn {
    0% { -webkit-transform: scale(1);    }
    100% { -webkit-transform: scale(1.5);    }
}

@keyframes animateZoomIn {
    0% { transform: scale(1);    }
    100% { transform: scale(1.5);   }
}







.animate-hide-sale-btn {
  width: 0px;
  transition: width 500ms ease-in-out;;

}
 

  /* end animate show and hide */



  
/* button with icon */


.btn-right-text {
  padding-left: 5px;
  padding-right: 10px;
}
.btn-left-icon {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 7px 10px;
}

.btn-left-icon-bg {
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-left-icon-p {
  padding: 7px 10px;
}

.mat-button{
  box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
  box-sizing: border-box;
}

.mat-process{
  border: 0;
  box-shadow: 0 0 1px -2px rgba(0,0,0,.12),0 0 2px 0 rgba(0,0,0,.12),0 0 5px 0 rgba(0,0,0,.12) !important;
  box-sizing: border-box !important;
}


/* end of button with icon */



   
/*animated checkmark */
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #FFF3CC;
  fill: none; 
}
.checkmark {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: block;
  stroke-width: 10;
  stroke: rgb(49, 49, 49);
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #FFF3CC;
}
.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 96;
  stroke-dashoffset: 96;
}
.checkmark-circle-animation{
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-animation{
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}
.checkmark-check-animation{
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
.checkmark-circle-animation-end{
  stroke-dashoffset: 1;
}
.checkmark-animation-end{
  transform: none;
  box-shadow: inset 0px 0px 0px 60px #FFF3CC;
 
}
.checkmark-check-animation-end{
  stroke-dashoffset: 1;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 60px #FFF3CC;
  }
}

/*end animated checkmark */ 

      
/* or line */
.horizontal-line {
	display: flex;
	flex-basis: 100%;
	align-items: center;
	color: rgba(0, 0, 0, 0.35);
	margin: 8px 0px;
}
.horizontal-line::before,
.horizontal-line::after {
	content: "";
	flex-grow: 1;
	background: rgba(0, 0, 0, 0.25);
	height: 1px;
	font-size: 0px;
	line-height: 0px;
	margin: 0px 8px;
}
/* end of or line */

/* horizontal  line */
.horizontal-line-full {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
/* end of horizontal  line */





/* Animate login message */
@-webkit-keyframes in {
  0% { -webkit-transform: scale(0) rotate(12deg); opacity: 0; visibility: hidden;  }
  100% { -webkit-transform: scale(1) rotate(0); opacity: 1; visibility: visible; }
}

@keyframes in {
  0% { transform: scale(0) rotate(12deg); opacity: 0; visibility: hidden;  }
  100% { transform: scale(1) rotate(0); opacity: 1; visibility: visible; }
}

@-webkit-keyframes out {
  0% { -webkit-transform: scale(1) rotate(0); opacity: 1; visibility: visible; }
  100% { -webkit-transform: scale(0) rotate(-12deg); opacity: 0; visibility: hidden; }
}

@keyframes out {
  0% { transform: scale(1) rotate(0); opacity: 1; visibility: visible; }
  100% { transform: scale(0) rotate(-12deg); opacity: 0; visibility: hidden;  }
}
 
/* Animate response message */
@-webkit-keyframes scaleUp {
  0% { -webkit-transform: scale(0.5); opacity: 0; visibility: hidden;  }
  100% { -webkit-transform: scale(1); opacity: 1; visibility: visible; }
}
 
@keyframes scaleUp {
  0% { transform: scale(0.5); opacity: 0; visibility: hidden;  }
  100% { transform: scale(1) ; opacity: 1; visibility: visible; }
}

@-webkit-keyframes scaleDown {
  0% { -webkit-transform: scale(1); opacity: 1; visibility: visible; }
  100% { -webkit-transform: scale(0.5); opacity: 0; visibility: hidden; }
}

@keyframes scaleDown {
  0% { transform: scale(1); opacity: 1; visibility: visible; }
  100% { transform: scale(0.5); opacity: 0; visibility: hidden;  }
}
 

div[class^='msg-response-']{
  color: #F00;
}


#hint.show {
  -webkit-animation: in 700ms ease both;
  animation: in 700ms ease both;
}
 
#hint.hide {
  -webkit-animation: out 700ms ease both;
  animation: out 700ms ease both;
}


#msg-response.show {
  -webkit-animation: scaleUp 400ms 300ms ease both;
  animation: scaleUp 400ms 300ms ease both;
}

#msg-response.hide {
  -webkit-animation: scaleDown 400ms ease both;
  animation: scaleDown 400ms ease both;
}


#filter-box-anim.show {
  -webkit-animation: scaleUp 400ms 300ms ease both;
  animation: scaleUp 400ms 300ms ease both;
}

#filter-box-anim.hide {
  -webkit-animation: scaleDown 400ms ease both;
  animation: scaleDown 400ms ease both;
}

#checkedActionBoxAnim.show {
  -webkit-animation: scaleUp 400ms 300ms ease both;
  animation: scaleUp 400ms 300ms ease both;
}

#checkedActionBoxAnim.hide {
  -webkit-animation: scaleDown 400ms ease both;
  animation: scaleDown 400ms ease both;
}

.animate-show {
  -webkit-animation: animateShow 400ms ease both;
  animation: animateShow 400ms ease both;
  
}

.animate-hide {
  -webkit-animation: animateHide 400ms ease both;
  animation: animateHide 400ms ease both;
  
}

@-webkit-keyframes animateShow {
  0% { -webkit-transform: scale(0.5); opacity: 0;  }
  100% { -webkit-transform: scale(1); opacity: 1;  }
}
 
@keyframes animateShow {
  0% { transform: scale(0.5); opacity: 0;    }
  100% { transform: scale(1) ; opacity: 1;  }
}


@-webkit-keyframes animateHide {
  0% { -webkit-transform: scale(1); opacity: 1;  }
  100% { -webkit-transform: scale(0.5); opacity: 0;   }
}

@keyframes animateHide {
  0% { transform: scale(1); opacity: 1;  }
  100% { transform: scale(0.5); opacity: 0;   }
}





@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.shake {
  -webkit-animation: shake 800ms cubic-bezier(.36,.07,.19,.97) both;
  animation: shake 800ms cubic-bezier(.36,.07,.19,.97) both;
}

/* /end of animate login message */

/* animate resized div auto height */

/* animate resized div */
.anim-resize {
 
   
  height: 20px;
 
  transition: all .3s linear;
}

.anim-resize-h-show {   
  max-height: 300px; 
  transition: max-height 600ms ease-in;
}
.anim-resize-h-hide {   
  max-height: 0px; 
  transition: max-height 600ms ease-out;
}

/* animate resized vertical div auto width */
.anim-resize-v-show {   
   
  animation: expandROut 300ms ease-in;
  
}
.anim-resize-v-hide {   
   
  animation: expandRIn 300ms ease-out;

}


.anim-top-loading-bar {   
   
  animation: topLoadingBarProgress 600ms ease-out;

} 

@keyframes expandROut {
  0% {width: 0;}
  100% {width: 76px;}
}

@keyframes expandRIn {
  0% {width: 76px;}
  100% {width: 0;}
}

@keyframes topLoadingBarProgress {
  0% {width: 0%;}
  100% {width: 100%;}
}



/* Bootstrap placeholder color  */
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #929ba1;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #929ba1;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #929ba1;
}

/* end of Bootstrap placeholder color  */

/* fix forms padding */
.form-group {
  margin-bottom: 1rem;
}


/* // diable outline border when select is selected */
.bootstrap-select .btn:focus {
  outline: none !important;
   
}

.form-control-no-outline:focus {
  border: solid 1px #d3d3d3;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}






/* switch  */
.switch input { 
  display:none;
}
.switch {
  display:inline-block;
  text-align: left;
  width:32px;
  height:16px;
  margin:4px 0;
  /* transform:translateY(50%); */
  position:relative;
}
.switch.switch-xxs {
  width:20px;
  height:10px;
  margin:-1px 0;
 }
.switch.switch-xs {
  width:24px;
  height:12px;
  margin:-2px 0;
 }
 .switch.switch-sm {
 width:28px;
 height:14px;
 margin:-2px 0;
}
/* Style Wired */
.switch-slider {
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  
  border-radius:16px;
  /* box-shadow:0 0 0 1px #999, 0 0 4px #999; */
  box-shadow:0 0 0 1px  #D0D0D0;
  cursor:pointer;
  border:2px solid transparent;
  overflow:hidden;
   transition:.4s;
}
.switch-slider:before {
  position:absolute;
  content:"";
  width:100%;
  height:100%;

  background:#D0D0D0;
  border-radius:16px;
  transform:translateX(-16px);

  transition:.4s;
  overflow:hidden;
}

input:checked + .switch-slider:before {
  transform:translateX(16px);
  background:#707070;
}
input:checked + .switch-slider {
  /* box-shadow:0 0 0 1px #707070,0 0 2px #707070; */
  box-shadow:0 0 0 1px rgb(206, 212, 218);
  background:#fff2d0;
}

/* slider colors */
input:checked + .slider-red:before {
   background:white;
}
input:checked + .slider-red {
  /* box-shadow:0 0 0 1px #707070,0 0 2px #707070; */
   background:red;
}

input:checked + .slider-blue:before {
   background:white;
   /* #dee2e6; */
}
input:checked + .slider-blue {
  /* box-shadow:0 0 0 1px #707070,0 0 2px #707070; */
   background:#007ff8;
}

/* dynamic switch size change */

/* extra extra small */
.slider-xxs:before{ 
  border-radius:10px;
  transform:translateX(-10px);   
}

input:checked + .slider-xxs:before{
  transform:translateX(10px);   
}
/* extra small */
.slider-xs:before{ 
  border-radius:12px;
  transform:translateX(-12px);   
}

input:checked + .slider-xs:before{
  transform:translateX(12px);   
}
/*small */
.slider-sm:before{ 
  border-radius:14px;
  transform:translateX(-14px);   
}

input:checked + .slider-sm:before{
  transform:translateX(14px);   
}
/* end of switch */





.action-button{
  width: 120px;
    height: 30px;
    line-height: 26px;
  display: inline-block;
  padding: 0;
  background-color: #FFF3CC;
  border: #DFBC6A 1px solid;
  color: #6c757d;
  border-radius: 50vh;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 2px 0 rgba(0, 0, 0, 0.19);
  box-sizing: border-box;
}

.action-button div {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

/* order button */
.order-button{
  width: 120px;
    height: 30px;
    line-height: 26px;
  display: inline-block;
  padding: 0;
  background-color: #FFF3CC;
  border: #DFBC6A 1px solid;
  color: #6c757d;
  border-radius: 50vh;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 2px 0 rgba(0, 0, 0, 0.19);
  box-sizing: border-box;
}



.order-button div {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

 
.order-button div:after {
  content: '\00bb';
  font-family: 'Roboto';
  position: absolute;
  opacity: 0;
  top: 0;
  
  right: 0px;
  
  font-size: 18px;
  /* line-height: 18px; */

}

.order-button:hover div {
  padding-right: 15px;
}

.order-button:hover div:after {
  opacity: 1;
  right: 0;
}
/* end of order button */



 
.app-btn {
width: 120px;
height: 30px;
line-height: 26px;
display: inline-block;
padding: 0;
background-color: #FFF3CC;
border: #DFBC6A 1px solid;
color: #6c757d;
border-radius: 50vh;
text-align: center;
box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 2px 0 rgba(0, 0, 0, 0.19);
box-sizing: border-box;
}
 
 
 
.app-btn-arrow {
  /* position: relative;
  -webkit-transition: background-color 300ms ease-out;
  transition: background-color 300ms ease-out; */
}
.app-btn-arrow span {
  display: inline-block;
  position: relative;
 
}
.app-btn-arrow .app-btn-arrow-animate {
  display: inline-block;
  position: relative;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: transform;
}
.app-btn-arrow:hover .app-btn-arrow-animate {
  -webkit-transform: translate3d(-0.50rem, 0, 0);
          transform: translate3d(-0.50rem, 0, 0);
}
.app-btn-arrow img {
  position: absolute;
  width: 1.1em;
  right: 0px;
  right: 0rem;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  will-change: right, opacity;
}
.app-btn-arrow img * {
  stroke-width: 5;
  stroke-color: black;
}
.app-btn-arrow:hover img {
  opacity: 1;
  right: -1.5rem;
}






/* zz preloader */
/* usage
<div class="preloader" >
    <span></span>
</div> 
*/
@keyframes preloaderZoomInOut {
  0% {
      transform: scale(0);
  }
  100% {
      transform: scale(1);
      opacity: 0;
  }
}

/*------------------
Preloader
-------------------*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2100;
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader span {
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  /* background-color: #DFBC6A; */
  background-color: #5e5e5e;
  animation: preloaderZoomInOut 1s ease infinite;
}

/* end of zz preload */




/* fix bootstrap annoying outline with append */

.form-control-no-outline .input-group .form-control {
  border-right: 0;
}
.form-control-no-outline .input-group .form-control:focus {
  box-shadow: none;
}
.form-control-no-outline .input-group .form-control.is-valid:focus {
  box-shadow: none;
}
.form-control-no-outline .input-group .form-control.is-invalid:focus {
  box-shadow: none;
}
.form-control-no-outline .input-group .form-control:focus ~ .input-group-append .input-group-text {
  border-color: #80bdff;
}

.form-control-no-outline .input-group .form-control.is-valid ~ .input-group-append .input-group-text {
  border-color: #28a745;
}

.form-control-no-outline .input-group .form-control.is-invalid ~ .input-group-append .input-group-text {
  border-color: #dc3545;
}
 

/* end of fix bootstrap annoying outline with append */



/* fix bootstrap annoying outline with prepend left */


.form-control-no-outline-l:focus {
  border: solid 1px #d3d3d3;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control-no-outline-l .input-group .form-control {
  border-left: 0;
}
.form-control-no-outline-l .input-group .form-control:focus {
  box-shadow: none;
}
.form-control-no-outline-l .input-group .form-control.is-valid:focus {
  box-shadow: none;
}
.form-control-no-outline-l .input-group .form-control.is-invalid:focus {
  box-shadow: none;
}
.form-control-no-outline-l .input-group .form-control:focus ~ .input-group-prepend .input-group-text {
  border-color: #80bdff;
 
}

.form-control-no-outline-l .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text {
  border-color: #28a745;
}

.form-control-no-outline-l .input-group .form-control.is-invalid ~ .input-group-prepend .input-group-text {
  border-color: #dc3545;
}
 



.prepend-focus{
  border-color: #80bdff;
}

/* end of fix bootstrap annoying outline with prepend */

/* fix nav tabs nav-link background color */
 
 

.tabs-parent .nav-tabs .nav-item.show .nav-link, .tabs-parent .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff !important;
  border-color: #dee2e6 #fff  #dee2e6 #dee2e6 !important;
  position: relative; left: 2px !important;

  border-top-right-radius: 0; 
  border-bottom-right-radius: 0; 
  cursor: pointer;
  /* border-top-left-radius: 0; 
  border-bottom-left-radius: 0; */
}
.tabs-parent .nav-tabs .nav-link {

  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
}


.nav-tabs .nav-link {
  color: #666666;
  /* border-top-right-radius: 0;
  border-bottom-right-radius: 0; */
  cursor: pointer;
}


/* end of fix nav tabs nav-link background color */


 

/* //// fix tabs for home settings */


.tabs-parent .nav-tabs .nav-item.show .nav-link, .tabs-parent .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #dee2e6 #dee2e6;
  position: relative; left: 1px;

  border-top-right-radius: 0; 
  border-bottom-right-radius: 0; 
  cursor: pointer;
  /* border-top-left-radius: 0; 
  border-bottom-left-radius: 0; */
}
.tabs-parent .nav-tabs .nav-link {

  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
}



.nav-tabs.flex-column .nav-item.show .nav-link, .nav-tabs.flex-column .nav-link.active{
  border-right: solid 1px white;
  background-color: transparent;

}


/* //// end of fix tabs for home settings */

/* Remove Arrows/Spinners form number input */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* end of Remove Arrows/Spinners form number input */


.fa-red{

  color: red;
}


.input-font-1{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

/* PP Form */

.hosted-field {
 
  padding: 4px 12px;
  
 
  border-radius: 6px;
  border: 1px solid #dddddd;
 
  /* background: #fcfcfc; */
 
  /* background: linear-gradient(to right, white 50%, #fcfcfc 50%); */
  /* background-size: 200% 100%; */
  /* background-position: right bottom; */
  /* transition: all 300ms ease-in-out; */
  /* font-size: 18px; */
  color: #383838;
  background-color: #fafafa;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.hosted-fields--label {
  
  margin: 0; 
  padding-bottom: 8px; 
  font-size: 14px;    
  text-transform: uppercase;
}
 

.braintree-hosted-fields-focused {
  border: 1px solid #80bdff;
 
  /* border-radius: 1px; */
  background-position: left bottom;
}

.braintree-hosted-fields-invalid {
  border: 1px solid #ed574a;
}

.braintree-hosted-fields-valid {
}
 

/* PP end of form */


.empty-invalid-input{

  border: 1px solid #ed574a;
}




.pp-prepend-focus-valid{
  border-color: #80bdff !important;  
}

 
.pp-prepend-focus-invalid{
  border-color: #ed574a !important;
}

.pp-fa-red{
color: red;
}





/* fix settings users list - adminlte not loaded  */
.user-block {
  float: left;
}

.user-block img {
  float: left;
  height: 40px;
  width: 40px;
}

.user-block .username,
.user-block .description,
.user-block .comment {
  display: block;
  margin-left: 50px;
}

.user-block .username {
  font-size: 16px;
  font-weight: 600;
  margin-top: -1px;
}

.user-block .description {
  color: #6c757d;
  font-size: 13px;
  margin-top: -3px;
}

.user-block.user-block-sm img {
  width: 1.875rem;
  height: 1.875rem;
}

.user-block.user-block-sm .username,
.user-block.user-block-sm .description,
.user-block.user-block-sm .comment {
  margin-left: 40px;
}

.user-block.user-block-sm .username {
  font-size: 14px;
}


/*  end of fix settings users list - adminlte not loaded  */



/* mobile menu */
 
.imageContainer {
  overflow: hidden;
  transform-origin: 100% 0;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
 
.phone-menu-overlay {
  display: none;
  background: linear-gradient(#0000001f 0%, #0000009f 80%, #000000bf 100%);
  height: 100%;
  opacity: 0;
  position: fixed;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  top: 0;
  width: 100%;
}
.active .phone-menu-overlay {
  display: block;
  opacity: 1;
  z-index: 1011;
}
 
 
.mb-menu {
  /* display: none; */


  background-color: #ffffff;
/*   
  background: linear-gradient(rgb(131 63 63), transparent),
    linear-gradient(to top left, rgb(47 144 120), transparent),
    linear-gradient(to top right, rgb(94 94 160), transparent); */
  background-blend-mode: screen;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  height: 340px;
  position: fixed;
  transform: translateY(-340px);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.active .mb-menu  {
  /* display: flex; */
  transform: translateY(340px);
}
 
.active .mb-menu  {
  transform: translateY(0);
}

 
/* ////zz */


.mb-menu-sm-top{
  height: 38px;
  
}
/* 
.mb-menu-sm-top .show{

  transform: translateY(0);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mb-menu-sm-top .hide{

  transform: translateY(-40px);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
} */


.mb-menu-btn {
  position: relative;
  
  width: 22px;
}

.mb-menu-btn-pos {
  cursor: pointer;
  display: block;
}

.mb-menu-btn-pos span {
  background: #444444;
  display: block;
  width: 22px;
  height: 4px;
  margin-bottom: 3px;
  position: relative;
  top: 0;
  transition: all ease-in-out 0.2s;
}

.mb-menu-btn.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.mb-menu-btn.open span:nth-child(3) {
  transform: rotate(45deg);
  top: -7px;
}

.mb-menu-btn.open span:nth-child(1) {
  transform: rotate(-45deg);
  top: 7px;
}
 

/* end of mobile menu */



.news-content h1 {
  font-size: 21px !important;
}
    
.news-content h2 {
  font-size: 20px !important;
}
.news-content h3 {
  font-size: 19px !important;
}
.news-content h4 {
  font-size: 18px !important;
}





/* Small devices (landscape phones, 576px and up) */
@media screen and (max-width: 575.98px)  {
  .app-btn-arrow .app-btn-arrow-img {
   display: none;
  }
}

/* Medium devices (tablets, 576px and up) */
@media screen and (min-width: 576px) and (max-width: 767.98px) { 
  .app-btn-arrow .app-btn-arrow-img {
    display: none;
   }
}

/* Medium devices?? (tablets, 768px and up) */
@media screen and (min-width: 768px) and (max-width: 991.98px) { 
  .app-btn-arrow .app-btn-arrow-img {
    display: none;
   }
}

/* Large devices (desktops, 992px and up) */
@media screen and (min-width: 992px) and (max-width: 1199.98px) { 
  
   
}

/* Extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1200px) { 
 
}




/* Will only apply when the browser window is wider than its height >> "Landscape" */
@media only screen and (orientation: landscape) {

}
