input[type="file"]::-webkit-file-upload-button { display: none }
.upload-file {
    font-size: 13px; cursor: pointer;
    content: 'Hola' !important;
    border-radius: 50px;
    box-shadow: 2px 2px 4px #000;
    width: 240px;
    height: 40px;
    outline: none;
    padding-left: 60px;
    padding-top: 10px;
}
.upload-file::before {
    position: absolute;
    color: #fff;
    content: '> Imagen';
    background: crimson;
    padding: 15px;
    border: none;
    border-radius: 50px;
    box-shadow: 1px 0 1px 1px #e4606d;
    outline: none;
    height: 43px;
    line-height: 0.8rem;
    left: 0;
    top: 0;
    width: 70px;
}
@media (min-width: 750px){
    /* Modificado por Wiedens */
    .upload-box { z-index: 1 }
}

.pagenumbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.pagenumbers button {
	width: 45px;
	height: 45px;
	appearance: none;
	border: none;
	/* outline: none; */
	cursor: pointer;
	background-color: #49a2d6;
	margin: 5px;
	transition: 0.4s;
	color: #2b1a1a;
	font-size: 20px;
	text-shadow: 0px 0px 4px rgba(0,0,0, 0.2);
	box-shadow: 0px 0px 2px 2px #67f8fc;
	border-radius: 10px;
}
.pagenumbers button:hover{
	background-color: #44EEAA;
}
.pagenumbers button.active{
	background-color: #ce2fb3;
	color: #fff;
	box-shadow: inset 0px, 0px, 4px, rgba(211, 15, 168, 0.89);

}

/*________________________ ntik ________________________*/
#list_categories {
    overflow: hidden; list-style: none;
    margin-bottom: -10px;
    padding: 24px 16px;
    display: flex;
    justify-content: center; 
}
#list_categories .seccion {
    float: left;
    text-align: center;
    /* width: 10.5%; */
}
#list_categories .seccion a {
    color: #005d93;
    display: block;
    margin: 0 auto;
    position: relative;
    text-decoration: none;
    height: 100px;
    width: 80%;
    background: #fafafa;
    box-shadow: 0 0 27px rgb(0 0 0 / 15%);
    border-radius: 6px;
    -moz-transition: all .2s;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}
#list_categories .seccion a .title-category {
    font-size: .85rem; line-height: 1;
    display: block;
    color: #636060;
    font-weight: 400;
}
#list_categories .seccion a:before {
    content: '';
    display: block;
    height: 48px;
    position: relative;
    top: 16px;
    width: 100%;
    z-index: 3;
    margin-bottom: 24px;
}
#list_categories .seccion a:hover {
    box-shadow: 0 0 27px rgb(0 0 0 / 30%); cursor: pointer;
}
@media (max-width: 767px) {
    .swiper { height: 240px }
    .swiper-slide { display: flex; justify-content: center; align-items: center; width: 340px!important; height: 240px!important }
    .swiper-slide img { height: 240px; width: 340px }
}

/*________________________ Online T. ________________________*/
#circle {
    position: relative;
    width: 270px; height: auto;
}
#circle span {
    position: absolute; left: -10px; width: 80px; height: 80px; z-index: -1;
    transition: 0.5s; cursor: pointer;
    transform-origin: 140px; border-radius: 50%;
    transform: rotate(0deg) translateX(110px);
}
#circle span img { height: 80px; }
#circle #toggle {
    /* position: absolute; */
    z-index: 5; transition: transform 1.25s;
}
#circle.active #toggle {
    transform: rotate(315deg);
}
#circle.active span {
    transform: rotate(calc(360deg / var(--n) * var(--i))) translateX(0px); z-index: 1;
}
#circle span:hover {
    box-shadow: 0 0 10px rebeccapurple,
    0 0 30px rebeccapurple,
    0 0 50px rebeccapurple
}