.button-cart-right
{
    text-align: right;
}

.button-cart-right .button
{
    padding: 8px 20px;
    background-color: #00a0e7;
    border: 0;
    font-family: 'Lato';
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    border-radius: 9px;
}

.button-cart-right .cart{
    padding: 0px;
    border: 0;
    font-family: 'Lato';
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-thumb {
    background: #11b5dd;
    border: 0px none #ffffff;
    border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00a0e7;
}
::-webkit-scrollbar-thumb:active {
    background: #00a0e7;
}
::-webkit-scrollbar-track {
    background: #666666;
    border: 0px none #ffffff;
    border-radius: 58px;
}
::-webkit-scrollbar-track:hover {
    background: #666666;
}
::-webkit-scrollbar-track:active {
    background: #666666;
}
::-webkit-scrollbar-corner {
    background: transparent;
}

.buy {
    display: block;
    float: left;
    font-family: 'Lato';
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    line-height: 14px;
    padding: 13px 50px;
    text-transform: uppercase;
    background: #00a0e7;
    margin-top: 30px;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
	border-radius: 10px!important;
}
a.buy:hover, a.buy:focus {
    color: #FFF;
    background: #000;
}

.bannceleste{
    background: #00a0e7;
}

.bannceleste .container h3{
    color: #fff;
}

.banncategfirst{
    margin-top: 0px;
    padding: 10px 0;
}

.banncateg{
    margin-top: 20px;
    padding: 10px 0;
}

.ulportal{
    margin: 10px 0 0 !important;
}
#tickets_compra h3 {
	font-family: 'Lato'!important;
    font-weight: 400!important;
    font-size: 24px!important;
    line-height: 25px!important;
}
@media screen and (max-width: 600px){
	.link_playlist{
		display:block;
		max-width:100%;
	}
	#tickets_compra h3 {
		font-family: 'Lato'!important;
		font-weight: 400!important;
		font-size: 19px!important;
		line-height: 20px!important;
	}
	#tabla_tracks td, #cola_player td {
		font-size: 0.9em;
	}
}

.nota {
	overflow: hidden;
	border-radius: 10px !important;
}
.nota a{
	text-decoration:none;
}
.nota .info{
    opacity: 1 !important;
	top:57%;
	height: 43%!important;
}
@media screen and (max-width: 991px){
	.novedades .member{
		max-width: 30vw!important;
	}
	.nota {
		width: max(30vw, 50%)!important;
		height: min(19vw, 250px)!important;
	}
	.nota .info p {
	    font-size: 12px!important;
		-webkit-box-orient: vertical;
        line-clamp: 3;
		-webkit-line-clamp: 3;
		text-overflow: ellipsis;
		display: -webkit-box;
	}
}
@media screen and (max-width: 600px){
	.nota {
		width: max(30vw, 30%)!important;
		height: min(30vw, 200px)!important;
	}
	.nota .info p {
	    font-size: 10px!important;
		-webkit-box-orient: vertical;
        line-clamp: 2;
		-webkit-line-clamp: 2;
		text-overflow: ellipsis;
		display: -webkit-box;
	}
	.nota .info i{
		display: none;
	}
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 10px;
  width: min(280px, 50vw);
  height: 50px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  min-width: 260px;
  max-width: 360px;
  height: auto;
  padding: 14px 16px;
  border-radius: 10px;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.hide {
  opacity: 0;
  transform: translateX(30px);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.toast-icon {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 1px;
}

.toast-message {
  word-break: break-word;
  width:min(220px,40vw);
}

.toast-close {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.8;
}

.toast-close:hover {
  opacity: 1;
}

/* Types */
.toast.success { background: #5cb85c; }
.toast.error { background: #dc2626; }
.toast.warning { background: #d97706; }
.toast.info { background: #555554; }