/*----------------------------------

	General

------------------------------------*/

html {

  overflow-x: hidden;

}



html, html a, body {

  -webkit-font-smoothing: antialiased;

}



html {

  font-size: 14px;

  -webkit-tap-highlight-color: transparent;

}



body {

	z-index: 1;

	overflow-x: hidden;

	background: linear-gradient(-45deg, #fff, #fafafa, #fff, #fafafa);

	background-size: 400% 400%;

	-webkit-animation: Gradient 15s ease infinite;

	-moz-animation: Gradient 15s ease infinite;

	animation: Gradient 15s ease infinite;

}





@-webkit-keyframes Gradient {

	0% {

		background-position: 0% 50%;

	}

	50% {

		background-position: 100% 50%;

	}

	100% {

		background-position: 0% 50%;

	}

}



@-moz-keyframes Gradient {

	0% {

		background-position: 0% 50%;

	}

	50% {

		background-position: 100% 50%;

	}

	100% {

		background-position: 0% 50%;

	}

}



@keyframes Gradient {

	0% {

		background-position: 0% 50%;

	}

	50% {

		background-position: 100% 50%;

	}

	100% {

		background-position: 0% 50%;

	}

}

a:hover {

text-decoration:none;

}

.bg-overlay {

   position: relative;

   z-index: 1;

}

.bg-overlay::after {

    position: absolute;

    z-index: -1;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: #000;

    opacity: 0.30;

    content: ''; 

}




/*----------------------------------

	Varios

------------------------------------*/

.col-center {

    float: none;

    margin: 0 auto;

}

.sinpadding [class*="col-"] {

    padding: 0;

}



::-webkit-scrollbar{

    width: 10px;

    background-color: #000;

}

::-webkit-scrollbar-track{

    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.9);

    border-radius: 10px;

    background-color: #000;

}

::-webkit-scrollbar-thumb{

    border-radius: 10px;

    background-color: #dcb186;

    background-image: -webkit-linear-gradient(90deg,transparent,rgba(0, 0, 0, 0.4) 50%,transparent,transparent)

}

.cuadro-footer {

background: -moz-linear-gradient(left, #00d1d6 0%, #ff87f2 100%); /* FF3.6-15 */

background: -webkit-linear-gradient(left, #00d1d6 0%,#ff87f2 100%); /* Chrome10-25,Safari5.1-6 */

background: linear-gradient(to right, #00d1d6 0%,#ff87f2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00d1d6', endColorstr='#ff87f2',GradientType=1 ); /* IE6-9 */

padding: 20px;

margin: 20px 0;

overflow:hidden;

border-radius: 20px;

}


/*----------------------------------

  Popup

------------------------------------*/

#popup1 {

   position: fixed;

   visibility: hidden;

   opacity: 0;

}

#popup1:target {

	visibility: visible;

	opacity: 1;

	background-color: #dcb186;

	position: fixed;

	top: 0;

	left: 0;

	right: 0;

	bottom: 0;

	margin: 0;

	z-index: 99999999999;

	transition: all 1s;

}

#popup2 {

   position: fixed;

   visibility: hidden;

   opacity: 0;

}

#popup2:target {

	visibility: visible;

	opacity: 1;

	background-color: #FAFAFA;

	position: fixed;

	top: 0;

	left: 0;

	right: 0;

	bottom: 0;

	margin: 0;

	z-index: 99999999999;

	transition: all 1s;

}





.popup {

   position: relative;

   margin: auto;

   width: 100%;

   z-index: 99999;

   height: 100vh;

   overflow:hidden;

   display: flex;

   justify-content: center;

   align-content: center;

   flex-direction: column;

   

   

}

.popup-2 {

   position: relative;

   margin: auto;

   width: 100%;

   z-index: 99999;

   height: 100vh;

   overflow:hidden;

   display: flex;

   justify-content: center;

   align-content: center;

   flex-direction: column;

   

   

   

}



.popup-cerrar {

   position: absolute;

   top:20px;

   right: 20px;

   z-index: 999999;

}

.popup-icon {

margin: 20px 0;

}

