.tab-section .sidetab-button{
	position: sticky;
    top: 81px;
    left: 0;
    backdrop-filter: blur(6px);
    background-color: #ffffffcc;
    padding: 1rem 0;
    z-index: 2;
}
.sidetab-button button{
	width: 190px;
}
.app-sidebar-nav{
	border-right: 1px dashed #e1e3ea;
}


/* ribbon */
.ribbon-box {
  position: relative; }
  .ribbon-box .ribbon {
    position: relative;
    float: left;
    clear: both;
    padding: 5px 12px 5px 12px;
    margin-left: -30px;
    margin-bottom: 15px;
    -webkit-box-shadow: 2px 5px 10px rgba(83, 45, 0, 0.15);
    -o-box-shadow: 2px 5px 10px rgba(83, 45, 0, 0.15);
    box-shadow: 2px 5px 10px rgba(83, 45, 0, 0.15);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600; }
    .ribbon-box .ribbon:before {
      content: " ";
      border-style: solid;
      border-width: 10px;
      display: block;
      position: absolute;
      bottom: -10px;
      left: 0;
      margin-bottom: -10px;
      z-index: -1; }
    .ribbon-box .ribbon + p {
      clear: both; }
  .ribbon-box .ribbon-dark {
    background: #172b4c; }
    .ribbon-box .ribbon-dark:before {
      border-color: #172b4c transparent transparent; }
  .ribbon-box .ribbon-two {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right; }
    .ribbon-box .ribbon-two span {
      font-size: 1rem;
      color: #ffffff;
      text-align: center;
      line-height: 20px;
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      width: 100px;
      display: block;
      -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
      box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
      position: absolute;
      top: 19px;
      left: -21px;
      font-weight: 600;
      background-color:red; }
      .ribbon-box .ribbon-two span:before {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        z-index: -1;
        background-color:red; 
        border-right: 3px solid transparent;
        border-bottom: 3px solid transparent; }
      .ribbon-box .ribbon-two span:after {
        content: "";
        position: absolute;
        right: 0;
        top: 100%;
        z-index: -1;
        background-color:red; 
        border-left: 3px solid transparent;
        border-bottom: 3px solid transparent; }
  .ribbon-box .ribbon-two-dark span {
    background: #172b4c; }
    .ribbon-box .ribbon-two-dark span:before {
      border-left: 3px solid #050a11;
      border-top: 3px solid #050a11; }




@media only screen and (max-width: 991px) {
	  .tab-section .sidetab-button {
	    position: relative;
	    top: 0px;
	}
	.sidetab-button {
		padding: 10px !important;
    	margin: 0px !important;
	}
	.sidetab-button button{
		width: auto;
	}
}




/*------------------laser_run_button------------------*/


/*.laser_run_button{
    display: grid;
    place-items: center;
}*/

.laser_run_button {
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.laser_run_button span:nth-child(1) {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #3498DB,#FE80C0,#9B59B6,#0dcaf0,#5949d6);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.laser_run_button span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #3498DB,#FE80C0,#9B59B6,#0dcaf0,#5949d6);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

.laser_run_button span:nth-child(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #3498DB,#FE80C0,#9B59B6,#0dcaf0,#5949d6);
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.laser_run_button span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to top, #3498DB,#FE80C0,#9B59B6,#0dcaf0,#5949d6);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}


/*------------------laser_run_button-End-----------------*/



/*------------------rgb_button-----------------*/


.rgb_button {
  border: 0;
  position: relative;
  background: linear-gradient(-45deg, #3498DB,#FE80C0,#9B59B6,#0dcaf0,#5949d6);
  background-size: 400% 400%;
  animation: gradientBG 4.5s ease infinite;
  color: white !important ;
  transition: .3s;
  font-size: 16px;
  padding: 10px 25px;
  font-weight: 600;
}
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}




/*------------------rgb_button-end----------------*/