:root {
    --mariColor1:  #F9B233;
    --mariColor2:  #c8c8c8;
    --mariColor3:  #000000;
    --mariColor4:  #9f9f9f;
    --mariColor5: #515150;
    --number-of-options: 8;
  }
tr.selected1 {background-color:#B0BED9}

.whitCOlorText {
  font-weight: bold;
  color: white;
}

.mariButtonColor {
    font-weight: bold;
    color: white;
    background-color:var(--mariColor1)
}

.mariButtonColor2 {
  font-weight: bold;
  color: white;
  background-color:var(--mariColor2)
}
.mariButtonColor3 {
  font-weight: bold;
  color: white;
  background-color:var(--mariColor3)
}

.mariTextColor{
  color: var(--mariColor3);
}
.mariTextColo2{
  color: var(--mariColor1);
}
.mariTextColor3{
  color: var(--mariColor4);
  font-weight: bold;
  font: 20;
}
.mariColorBackground{
  color: white;
  background-color: var(--mariColor4);
}
.mariColorBackground2{
  color: white;
  background-color: var(--mariColor3);
}

hr.new1 {
  border-top: 1px solid white;
}

/* Clases para el loadeer */
.loader-container{
  position: relative;
  width: 200;
  height: 200;
  margin: 10px;
}
.loader-container .loader{
   position: absolute;
   top: 50%;
   left: 50%;
   width: 100%;
   height: 100%;
   border: solid 4px transparent;
   border-top-color: var(--mariColor1);
   border-left-color: var(--mariColor1);
   border-radius: 50%;
   animation: loader 1.2s linear infinite;
}

.loader-container .loader2{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  border: solid 4px transparent;
  border-top-color: var(--mariColor3);
  border-left-color: var(--mariColor3);
  border-radius: 50%;
  animation: loader2 1.2s linear infinite;
}

@keyframes loader {
  0%{
    transform: translate(-50%,-50%) rotate(0deg);
  }  
  100%{
    transform: translate(-50%,-50%) rotate(360deg);
  }  
}

@keyframes loader2 {
  0%{
    transform: translate(-50%,-50%) rotate(0deg);
  }  
  100%{
    transform: translate(-50%,-50%) rotate(-360deg);
  }  
}


/* ################################################################# */
/* ################################################################# */
/* ##################/* manejo de nuevo estilo   ################### */
/* ################################################################# */
/* ################################################################# */
/* ################################################################# */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}

.sidebar2{
  display: none;
}
.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 90px;
  background: #515150;
  padding: 6px 12px;
  z-index: 99;
  transition: all 0.5s ease;
}
.sidebar.open{
  width: 300px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}

.sidebar .user{
  font-size: 15px;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1e90ff;
}
.sidebar.open .user{
  width: 100%;
}
.sidebar .inter{
  font-size: 0px;
  height: 0%;
  width: 0%;
  overflow: hidden;
}
.sidebar.open .inter{
  font-size: 10px;
  height: 2%;
  width: 100%;
  overflow:visible;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #d5dcd5;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #d5dcd5;
  color: #FFF;
}
.sidebar.open .bx-search:hover{
  background: #d5dcd5;
  color: #FFF;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #515150;
}
.sidebar li a{
  display: flex;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #515150;
}


.left-menu{
        
  display: block;
  width: 275px;
  background: var(--mariColor5);
  /* 34495e */
  margin: 0px;
  padding-top: 10px;
  position: fixed;
  height: 100%;
  overflow-y: auto;
}

.list{
  color: #fff;
  list-style-type: none;
  padding-top: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
  border-bottom:solid 3.5px #2c3e50;
}

li{
  display: flex;
  align-content: center;
  justify-content: flex-start;
  padding-left: 30px;
  cursor: pointer;
  margin-top: 0px;
}

li i{
  margin-left: auto;
  margin-right: 30px;
  margin-top: 20px;
}

.sub h3{
  font-weight: 100;
}

.sub{
  display: none;
  background: var(--mariColor5);
  transition: background 0.3s ease;
}

.sub:hover{
  background: #212F3D;
}

.main{
  width: 100%;
  margin-left: 300px;
  text-align: center;
}

.top{
  transition: all 0.3s ease;
  text-transform: uppercase;
  
}

.top h3{
  font-weight: 500;
font-size:17px;
}

.top:hover{
  background: var(--mariColor1); 
  
}

.rotatedown{
  
  margin-top: 0px;
  margin-right: 50px;
  transform: rotate(90deg);
}

/* 
####################################
####################################
####################################
####################################
#################################### */


.dropdown-content {
  display: none;
  position: absolute;
  border-radius: 10px;
  min-width: 160px;
  background-color: #515150;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.sidebar.open .dropdown:hover .dropdown-content {
  display:grid;
}
.sidebar.open .dropdown:hover .dropdown-content a{
  padding-right: 5%;
  padding-left: 5%;
}

/* 
####################################
####################################
####################################
####################################
#################################### */


/* color para el focus de los bvotones de la barra de navegacion */
.navbar-light .navbar-nav .nav-link {
  color: var(--mariColor1);
}

/* footer colgroup */
.footerColor{
  font-weight: bold;
  color: var(--mariColor1);
  background-color:var(--mariColor2)
}

footer.page-footer .footer-copyright {
  overflow: hidden;
  color: rgba(255,255,255,0.6);
  background-color: rgba(0,0,0,0.2);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2.5rem;      
}

#footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3.5rem;               /* Footer height */
}

/* seccion de banners principal */
@keyframes slidy {
  0% { left: 0%; }
  20% { left: 0%; }
  25% { left: 0%; }
  45% { left: -100%; }
  50% { left: -100%; }
  70% { left: -100%; }
  75% { left: -200%; }
  95% { left: -200%; }
  100% { left: -200%; }
  /* 
  0% { left: 0%; }
20% { left: 0%; }
25% { left: -100%; }
45% { left: -100%; }
50% { left: -200%; }
70% { left: -200%; }
75% { left: -300%; }
95% { left: -300%; }
100% { left: -400%; }
  
  
  */
  }
  
  body { 
    margin: 0px 0px 0px 0px ;
    position: relative;
    padding-bottom: 6rem;
    min-height: 100vh;
   } 
  div#slider { overflow: hidden; }
  div#slider figure img { width: 20%; float: left; }
  div#slider figure { 
    position: relative;
    width: 500%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 20s slidy infinite; 
  }
  

  /* carousel de productos */
  tr.selected1 {background-color:#B0BED9}

  input,
  textarea {
    border: 1px solid #eeeeee;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    padding: 10px;
  }
  
  input[type="button"] {
    /* -webkit-appearance: button; */
    cursor: pointer;
  }
  
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  
  .input-group {
    clear: both;
    margin: 15px 0;
    position: relative;
  }
  
  .input-group input[type='button'] {
    background-color: #eeeeee;
    min-width: 38px;
    width: auto;
    transition: all 300ms ease;
  }
  
  .input-group .button-minus,
  .input-group .button-plus {
    font-weight: bold;
    height: 38px;
    padding: 0;
    width: 38px;
    position: relative;
  }
  
  .input-group .quantity-field {
    position: relative;
    height: 38px;
    left: -6px;
    text-align: center;
    width: 62px;
    display: inline-block;
    font-size: 13px;
    margin: 0 0 5px;
    resize: vertical;
  }
  
  .button-plus {
    left: -13px;
  }
  
  input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: none;
  }
  
  .max-lines {
    display: block;/* or inline-block */
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 3.6em;
    line-height: 1.8em;
  }

/* Tablet and up */

@media screen and (min-width: 768px) {
  .carousel-inner .active,
  .carousel-inner .active+.carousel-item {
    display: block;
  }
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item {
    -webkit-transition: none;
    transition: none;
  }
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-inner .active.carousel-item+.carousel-item+.carousel-item+.carousel-item {
    position: absolute;
    top: 0;
    right: -50%;
    z-index: -1;
    display: block;
    visibility: visible;
  }
  /* left or forward direction */
  .active.carousel-item-left+.carousel-item-next.carousel-item-left,
  .carousel-item-next.carousel-item-left+.carousel-item {
    position: relative;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  /* farthest right hidden item must be abso position for animations */
  .carousel-inner .carousel-item-prev.carousel-item-right {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    visibility: visible;
  }
  /* right or prev direction */
  .active.carousel-item-right+.carousel-item-prev.carousel-item-right,
  .carousel-item-prev.carousel-item-right+.carousel-item {
    position: relative;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    display: block;
    visibility: visible;
  }
}

/* Desktop and up */

@media screen and (min-width: 992px) {
  .carousel-inner .active,
  .carousel-inner .active+.carousel-item,
  .carousel-inner .active+.carousel-item+.carousel-item {
    display: block;
  }
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item+.carousel-item {
    -webkit-transition: none;
    transition: none;
  }
  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-inner .active.carousel-item+.carousel-item+.carousel-item+.carousel-item {
    position: absolute;
    top: 0;
    right: -33.3333%;
    z-index: -1;
    display: block;
    visibility: visible;
  }
  /* left or forward direction */
  .active.carousel-item-left+.carousel-item-next.carousel-item-left,
  .carousel-item-next.carousel-item-left+.carousel-item,
  .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item,
  .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item+.carousel-item {
    position: relative;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  /* farthest right hidden item must be abso position for animations */
  .carousel-inner .carousel-item-prev.carousel-item-right {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    visibility: visible;
  }
  /* right or prev direction */
  .active.carousel-item-right+.carousel-item-prev.carousel-item-right,
  .carousel-item-prev.carousel-item-right+.carousel-item,
  .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item,
  .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item+.carousel-item {
    position: relative;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    display: block;
    visibility: visible;
  }
}


/* seccion para manejo de botyones */
.boton.uno::after {
	content: "";
	width: 100%;
	height: 100%;
	background: var(--mariColor3);
	position: absolute;
	z-index: 1;
	top: -80px;
	left: 0;
	transition: .3s ease-in-out all;
}

.boton.uno:hover::after {
	top: 0;
}
.contenedor-botones {
	width: 100%;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.contenedor {
	width: 1200px;
	margin: auto;
	padding: 100px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.boton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80px;
	background: var(--mariColor1);
	color: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 20px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	transition: .3s ease all;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.boton span {
	position: relative;
	z-index: 2;
	transition: .3s ease all;
}

.radiusImage{
  border-radius: 20%;
}

/* para el cambio de iamgen por texto */
.containerImage {
  position: relative;
  /* width: 50%; */
}

.imageImage {
  display: block;
  /* width: 100%;  */
  /* height: auto; */
}

.overlayImage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: var(--mariColor4);
}

.containerImage:hover .overlayImage {
  opacity: 1;
}

.textImage {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.btn-whats {
margin: 0;
  position: fixed;
  width: 55px;
  height: 55px;
  line-height: 55px;
  bottom: 30px;
  right: 30px;
  background: #0d82f0;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 52px;
  box-shadow: 0 1px 10px rgba(0,0,0,.3);
  z-index: 100;
  padding: 0;
}
/* fondo para Dashboard */
.fondoDash{
  background: var(--mariColor4);
}

/* para el login */

.main-login {
  margin-left: -80px;
  width: 100vw;
  height: 94vh;
  background: #201b2c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.left-login {
  width: 50vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

  .left-login > h1 { color: #F9B233; }

.left-login-img {
  /* width: 35vw; */
  width: 15vw;
}

.right-login {
  width: 50vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-login {
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 35px;
  background: #2f2841;
  border-radius: 20px;
  box-shadow: 0px 10px 40px #00000056;
}

  .card-login > h1 {
      color: #F9B233;
      font-weight: 800;
      margin: 0;
  }

.textfield {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 10px 0;
}

  .textfield > input {
      width: 100%;
      border: none;
      border-radius: 10px;
      padding: 15px;
      background: #514869;
      color: #f0ffffde;
      font-size: 12px;
      box-shadow: 0px 10px 40px #00000056;
      outline: none;
      box-sizing: border-box;
  }

      .textfield > input::placeholder { color: #f0ffff94; }

  .textfield > label {
      color: #f0ffffde;
      margin-bottom: 10px;
  }

.btn-login {
  width: 100%;
  padding: 16px 0;
  margin: 25px;
  border: none;
  text-transform: uppercase;
  border-radius: 8px;
  outline: none;
  font-weight: 800;
  letter-spacing: 3px;
  color: #2b134b;
  background: #F9B233;
  cursor: pointer;
}

@media only screen and (max-width: 950px) {
  .card-login { width: 85%;}
}

@media only screen and (max-width: 600px) {
  .main-login { flex-direction: column; }
  .left-login { width: 100%; height: auto; }
      .left-login > h1 { display: none; }

  .right-login { width: 100%; height: auto; }
  .left-login-img { width: 50vw; }
  .card-login { width: 90%; }
}

.fbody {
  margin-left: 80px;
}

/* zoombar */


#zoombar {
  overflow: hidden;
  /* background-color: #099; */
  /* position: fixed; */
  top: 0;
  width: 100%;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 20px;
}

#zoombar a {
  float: left;
  display: block;
  color: #666;
  text-align: center;
  padding-right: 20px;
  text-decoration: none;
  font-size: 17px;
}

#zoombar a:hover {
  background-color: #ddd;
  color: black;
}

#zoombar a.active {
  background-color: #4CAF50;
  color: white;
}

#plain {
  overflow: auto;
  padding: 16px;
  margin-top: 30px;
  width: 100%;
  height: 100vh;
  overflow: auto;
  cursor: grab;
  cursor: -o-grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

#plain img {
  height: auto;
  width: 100%;
}


/* cambios para seleccionable de minutos asignados  888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888*/


#form-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
form {
	width: 100%;
	max-width: 600px;
	#form-title {
		margin-top: 0;
		font-weight: 400;
		text-align: center;
	}
	#debt-amount-slider {
		display: flex;
		flex-direction: row;
		align-content: stretch;
		position: relative;
		width: 100%;
		height: 50px;
		user-select: none;
		&::before {
			content: " ";
			position: absolute;
			height: 2px;
			width: 100%;
			width: calc(100% * (7 / 8));
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			background: #000;
		}
		input, label {
			box-sizing: border-box;
			flex: 1;
			user-select: none;
			cursor: pointer;
		}
		label {
			display: inline-block;
			position: relative;
			width: 20%;
			height: 100%;
			user-select: none;
			&::before {
				content: attr(data-debt-amount);
				position: absolute;
				left: 50%;
				padding-top: 10px;
				transform: translate(-50%, 45px);
				font-size: 14px;
				letter-spacing: 0.4px;
				font-weight: 400;
				white-space: nowrap;
				opacity: 0.85;
				transition: all 0.15s ease-in-out;
			}
			&::after {
				content: " ";
				position: absolute;
				left: 50%;
				top: 50%;
				transform: translate(-50%, -50%);
				width: 30px;
				height: 30px;
				border: 2px solid #000;
				background: #fff;
				border-radius: 50%;
				pointer-events: none;
				user-select: none;
				z-index: 1;
				cursor: pointer;
				transition: all 0.15s ease-in-out;
			}
			&:hover::after {
				transform: translate(-50%, -50%) scale(1.25);
			}
		}
		input {
			display: none;
			&:checked {
				+ label::before {
					font-weight: 800;
					opacity: 1;
				}
				+ label::after {
					border-width: 4px;
					transform: translate(-50%, -50%) scale(0.75);
				}
				~ #debt-amount-pos {
					opacity: 1;
				}
				@for $i from 1 through $number-of-options {
					&:nth-child(#{$i * 2 - 1}) ~ #debt-amount-pos {
						left: #{($i * 10%) - 10%};
					}
				}
			}
		}
		#debt-amount-pos {
			display: block;
			position: absolute;
			top: 50%;
			width: 12px;
			height: 12px;
			background: #000;
			border-radius: 50%;
			transition: all 0.15s ease-in-out;
			transform: translate(-50%, -50%);
			border: 2px solid #fff;
			opacity: 0;
			z-index: 2;
		}
	}
	&:valid {
		#debt-amount-slider {
			input {
				+ label::before {
					transform: translate(-50%, 45px) scale(0.9);
					transition: all 0.15s linear;
				}
				&:checked + label::before {
					transform: translate(-50%, 45px) scale(1.1);
					transition: all 0.15s linear;
				}
			}
		}
	}
	& + button {
		display: block;
		position: relative;
		margin: 56px auto 0;
		padding: 10px 20px;
		appearance: none;
		transition: all 0.15s ease-in-out;
		font-family: inherit;
		font-size: 24px;
		font-weight: 600;
		background: #fff;
		border: 2px solid #000;
		border-radius: 8px;
		outline: 0;
		user-select: none;
		cursor: pointer;
		&:hover {
			transform: scale(1.1);
			background: #000;
			color: #fff;
			&:active {
				transform: scale(0.9);
			}
		}
		&:focus {
			background: #4caf50;
			border-color: #4caf50;
			color: #fff;
			pointer-events: none;
			&::before {
				animation: spin 1s linear infinite;
			}
		}
		&::before {
			display: inline-block;
			width: 0;
			opacity: 0;
			content: "@";
			font-family: "Font Awesome 5 Pro";
			font-weight: 900;
			margin-right: 0;
			transform: rotate(0deg);
		}
	}
	&:invalid + button {
		pointer-events: none;
		opacity: 0.25;
	}
}
@keyframes spin {
	from {
		transform: rotate(0deg);
		width: 24px;
		opacity: 1;
		margin-right: 12px;
	}
	to {
		transform: rotate(360deg);
		width: 24px;
		opacity: 1;
		margin-right: 12px;
	}
}





.ticket-info {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.ticket-info strong {
  font-weight: bold;
}
.messages-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.message {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}
.message strong {
  font-weight: bold;
}