@import url(./fontt/css/all.css);
@font-face {
	font-family: noodle;
	src: url(../fonts/UbuntuCondensed-Regular.ttf) format('truetype');
}
body {
	background: linear-gradient(to top, rgba(16,41,48,0.9), rgba(16,41,48,0.9));
	background-size: cover;
	background-attachment: fixed;
	font-family: "noodle";
	width: 1200px;
	margin: 5px auto;
}
section {
	width: 100%;
	display: grid;
	grid-template:
    [header-left] "head head" auto [header-right]
    [main-left] "main main" auto [main-right]
    [nav-left] "nav nav" auto [nav-right];
    grid-gap: 5px;
}
@media screen and (max-width: 1200px){
	body {
		width: 100%;
		margin-top: -15px;
	}
}

/* NAV */
nav {
	grid-area: nav;
	margin-top: 50px;
	margin: auto;
}

/* FOOTER */
footer {
  grid-area: foot;
}
/** boton plus  **/
.plus_bg {
  position: absolute;
}
.plus {
     width: 50px;
     height: 50px;
     color: #ffffff;
     background-color: #1ab188;
     border-radius: 50%;
     font-size: 25px;
     text-align: center;
     position: fixed;
     bottom: 10%;
     right: 50px;
     z-index: 99;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
}
.plus:hover {
     background-color: #ffffff;
     color: #1ab188;
     border: none;
}

/* SESSION */
.session {
	border-radius: 10px;
 	border: 2px solid #34B7F1;
 	display: inline-block;
 	padding: 10px;
 	text-align: left;
 	width: calc(50% - 25px);
 	margin: 0px auto 2px auto;
}
@media screen and (max-width: 900px) {
	.session {
		width: calc(100% - 50px);
		border-radius: 0px;
		margin: 10px 5px 0px 5px;
	}
}
.session h2 {
    color: #fff;
    font-size: 1.5em;
}
.session h3, .producto h3 {
    color: #ff5252;
    font-size: 1em;
}
.session span {
	display: block;
	color: #ff5252;
}
.session .time, .producto .time {
	float: right;
	display: table-row;
}
.session img {
	width: 75px;
	height: 75px;
	margin: 10px auto;
}
.session .main1, .producto .main1 {
	display: flex;
	margin: 0px;
	padding: 0px;
	width: calc(100% - 50px);
}
.session .pro, .producto .pro {
	width: 150px;
	height: 150px;
}
.session .pro img, .producto .pro img {
	object-fit: contain;
	width: calc(100%);
	height: 150px;
	margin: 0px;
	padding: 0px;
}
.session .main, .producto .main {
	width: calc(100% - 130px);
	margin: 5px 15px;
}
.session .main pre {
	color: #fff;
	font-family: 'noodle';
}
.session form {
	color: #fff;
	margin: 0px;
}
.session form input, input[type="date"], textarea, select {
	background: transparent;
	text-decoration: none;
	border: 2px solid #34B7F1;
	margin: 2px auto;
	padding: 5px;
	width: 100%;
	color: inherit;
	font-family: "noodle";
	font-size: 1em;
	
	&:focus {
    	outline: 0 transparent solid;
    	color: #34B7F1;
    }
}
.session form input::placeholder, input[type="date"]::placeholder, textarea::placeholder {
	color: #34B7F1;	
}
.session input[type="file"]::file-selector-button {
  border: 2px solid #ff5252;
  padding: 0.2em 0.4em;
  border-radius: 5px 0px 0px 5px;
  background-color: #ff5252;
  transition: 1s;
  color: #fff;
  font-family: "noodle";
  margin: -5px 5px -5px -5px;
}
.bimg {
	width: auto;
}
.bimg img {
	width: 300px;
	height: 300px;
	object-fit: cover;
}
.bimg .brr {
	position: relative;
}
.bimg .brr a {
	top: -305px;
	right: 50px;
	width: 50px;
  height: 50px;
  color: #ffffff;
  position: absolute;
  border-radius: 50%;
  font-size: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.bimg .brr a:hover {
	background-color: #fff;
	color: #1ab188;
}
.btn {
	display: flex;
	width: 100%;
	align-items: center;
    justify-content: center;
    margin: 0px;
}
.btn button {
	background: #34B7F1;
	margin: 10px 1px;
	width: calc(50% - 10px);
	height: 30px;
	border: none;
	color: #fff;
	font-family: "noodle";
	font-weight: 300;
	display: flex;
	cursor: pointer;
	border-radius: 50px;
	font-size: 1em;
	align-items: center;
    justify-content: space-around;
	text-align: center;
	transition: 1s;
}
.btn button:hover {
	background: #fff;
	color: #34B7F1;
}
.btn a {
	background: #34B7F1;
	margin: 10px 1px;
	width: calc(50% - 10px) ; 
	height: 30px;
	border: none;
	color: #fff;
	font-family: "noodle";
	font-weight: 300;
	display: flex;
	cursor: pointer;
	border-radius: 50px;
	font-size: 1em;
	align-items: center;
    justify-content: space-around;
	text-align: center;
	text-shadow: none;
	transition: 1s;
}
.btn a:hover {
	background: #fff;
	color: #34B7F1;
}

/* MAIN */
main {
  grid-area: main;
  text-align: center;
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: stretch;
	margin-top: 60px;
}
main a {
	text-decoration: none;
}
main figure {
	width: 100px;
	height: 100px;
	margin: 25px;
}
main figure img {
	width: 75px;
	height: 75px;
}
main figure figcaption {
	color: #fff;
	background: #ff5252;
	border-radius: 5px;
	padding: 5px;
}
.info {
	background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin: 5px auto;
  width: 100%;
  text-shadow: 0px 0px 2px #000;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.info .aside-1 {
	display: inline-block;
	flex: 1 1 1;
}
.info .aside-1 .imgv {
	width: 75px;
	height: 75px;
	object-fit: cover;
	border-radius: 50%;
	margin: auto;
}
.info .aside {
	margin: 5px;
	display: inline-block;
	flex: 0 1 1;
	width: calc(100% - 200px);
}
.info h1, h2 ,h3 {
	color: #fff;
	text-align: left;
	margin: 2px;
}
.info h1 {
	font-size: 18px;
}
.info h2 {
	font-size: 15px;
}
.info h3 {
	font-size: 12px;
}
.info .foot {
	display: flex;
	flex: 0 0 1;
	margin: 5px 0px;
	padding: 5px;
	width: 100%;
}
.info .foot span {
	color: #fff;
	width: 100%;
	font-size: 12px;
}
@media screen and (max-width: 900px) {
.info {
    width: 100%;
	}
}

/* HEADER */
header {
	grid-area: head;
	background: #34B7F1;
	border-radius: 5px;
	color: #fff;
	width: 1200px;
	height: 50px;
	margin: 5px 0px 5px 0px;
	position: fixed;
	display: flex;
	z-index: 999;
}
header .logo {
	flex: 1 1 auto;
	width: 50px;
	height: 50px;
	margin: 0 15px;
}
header .logo img {
	width: 50px;
}
header .logo h1 {
	color: #fff;
	display: inline-block;
	vertical-align: top;
	line-height: 12px;
	font-size: 1.5em;
}
header form {
	display: flex;
	flex:  1 1 auto;
	vertical-align: top;
	height: 40px;
	margin: 5px;
	background: #fff;
	border-radius: 40px;
	width: calc(50% - 200px);
}
header form input, header form select, header form button {
	display: inline-block;
	flex: 1 1 auto;
  color: #ff5252;
  outline: none;
  margin: 2px;
  padding: 0 5px;
  font-family: noodle;
  font-size: 20px;
}
header form input {
	border: none;
	width: 40%;
}
header form select {
	border: none;
  border-right: 2px solid #ff5252;
  border-radius: 40px 0px 0px 40px;
  background: none;
  width: 20%;
  outline: none;
  padding: 0px 10px;
}
header form input::placeholder {
	color: #ff5252;
}
header form select option {
	color: #fff;
	background: rgba(16,41,48,0.9);
}
header form button {
	color: #fff;
	background: #ff5252;
	border-radius: 40px;
	cursor: pointer;
	border: none;
  width: 0px;
}
header form button:hover {
	color: #ff5252;
	background: #fff;
}
.icon {
	flex: 1 1 auto;
	height: 40px;
	margin: 5px;
	display: flex;
  align-items: center;
  justify-content: center;
}
.icon a {
	flex: 1 1 auto;
  height: 40px;
  font-size: 25px;
  cursor: pointer;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon a label {
	height: 20px;
}
.icon a:hover{
  background: #fff;
  color: #34B7F1;
}
.line {
	background: rgba(255, 255, 255, 1);
  color: #34B7F1;
}
.line i, .line span {
	color: #34B7F1;
}
.ver{
  display: none;
}
.icon2 {
	height: 40px;
	margin: 5px;
  align-items: center;
  justify-content: center;
}
.icon2 a {
  height: 40px;
  font-size: 25px;
  cursor: pointer;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon2 a:hover{
  background: #fff;
  color: #34B7F1;
}
.icon2 input:checked  ~ .ver {
  display:flex;
}
.icon2 input {
  display: none;
}
.ver {
  position: absolute;
  top: 50px;
  width: 500px;
  right: 0;
  height: auto;
  border-radius: 10px;
  background-color: #ff5252;
  align-items: center;
  justify-content: center;
}
.ver ul {
	width: 100%;
	list-style-type: none;
	padding: 0px 10px;
}
.ver ul li {
	border-bottom: 1px solid #fff;
}
.ver ul li a {
	font-size: 20px;
	margin: 5px;
	padding: 0px 20px;
	font-family: "noodle";
}
.ver ul li a i {
	flex: 1 1 auto;
}
.ver form {
	background: #fff;
	width: 100%;
	height: 50px;
	border-radius: 5px;
}
.ver form input, .ver form select, .ver form button {
	display: inline-block;
	color: #ff5252;
	border-radius: 0px;
}
.ver form select {
	width: 15%;
	border-radius: 10px 0 0 1px;
}
.ver form button {
	border-radius: 10px;
	color: #fff;
	width: 30px;
}
.ver form input::placeholder {
	color: #ff5252;;
}
.full {
	display: block;
	width: 25%;
	margin: 0px;
}
.mini {
	display: flex;
}
.hidden {
	display: none;
}

/* HEADER RESPONSIVE */
@media screen and (max-width: 1200px) {
	header {
		width: 100%;
		margin-top: 20px;
		border-radius: 0px;
	}
	header h1 {
		display: none;
	}
	.ver {
		width: 100%;
	}
	.mini {
		display: none;
	}
}
table {
	padding: 5px;
	margin: 0px;
	color: #fff;
	width: calc(100% - 10px);
	text-align: center;
}
table tr td {
	border-bottom: 1px solid #34B7F1;
	margin: 15px;
}
table tr:hover {
	background: rgba(100,32,32,0.1);
}

/* PERFIL */
.perfil {
	display: flex;
	border-bottom: 0.5px dashed #fff;
	margin: 10px;
	align-items: center;
}
.perfil .photo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-block;
	margin: 10px;
}
.perfil .conten {
	display: flex;
	flex-direction: column;
	margin: 10px;
	text-align: left;
}
.perfil .conten h1 {
	color: #000;
	font-size: 16px;
	margin: 0;
}
.perfil .conten span {
	color: #000;
	font-size: 12px;
}

/* PRODUCTO */
.producto {
	width: calc(50% - 2.5px);
 	background: rgba(255, 255, 255, 1.0);
 	margin: 1.5px auto;
 	display: inline-block;
 	border-radius: 5px;
}
.producto img {
	width: 100%;
	height: auto;
	object-fit: cover;
	margin: 0px;
}
.empty {
	width: 100%;
	text-align: center;
	margin: auto;
}
.empty h1 {
	margin: 60px auto;
	color: #ff5252;
	font-weight: 900;
}
.producto h3 {
	color: #ff5252;
	margin: 15px;
	text-align: left;
	font-weight: 900;
	display: block;
	font-size: 1em;
}
.producto h4 {
	color: #ff5252;
	margin: 0px;
	text-align: left;
	font-weight: 300;
	display: inline-block;
	width: calc(50% - 15px);
}
.producto form {
	color: #ff5252;
	margin: 5px;
	display: block;
}
.producto form input, .producto form select, .producto form textarea {
	display: inline-block;
	background: transparent;
	text-decoration: none;
	border: 2px solid #ff5252;
	margin: 5px;
	padding: 5px;
	width: calc(50% - 15px);
	color: inherit;
	font-family: "noodle";
	border-radius: 10px;
	font-size: 1em;
	
	&:focus {
    	outline: 0 transparent solid;
    	color: #ff5252;
    }
}
.producto form input::placeholder {
	color: #ff5252;
}
.producto input[type="file"]::file-selector-button {
  border: 2px solid #ff5252;
  padding: 0.2em 0.4em;
  border-radius: 5px 0px 0px 5px;
  background-color: #ff5252;
  transition: 1s;
  color: #fff;
  font-family: "noodle";
  margin: -5px 5px -5px -5px;
}
.producto .info1 {
	width: calc(100% - 20px);
	margin: 0px;
	padding: 10px;
	text-align: left;
	color: #fff;
	font-family: "noodle";
}
.producto .info1 h3 {
	font-size: 20px;
	margin: 5px 0px;
	font-weight: 600;
	text-transform: uppercase;
}
.producto .info1 pre {
    white-space: pre-wrap;
    font-family: "noodle";
    font-size: 15px;
    color: #000;
    text-transform: lowercase;
    margin: 0px;
}
.producto .info1 span {
	color: #fff;
	text-align: right;
	margin: 10px;
	width: 100%;
}
.inactivo {
	display: none;
}
.producto .foot-2 {
	margin: 10px 0px;
	padding: 5px;
	display: flex;
	align-items: flex-end;
}
.producto .foot-2 span {
	color: #fff;
}
.producto .time1 {
	float: right;
	display: table-row;
	background: #fff;
	padding: 0px 10px;
	margin: 0px;
	border-radius: 10px;
	text-shadow: none;
	font-weight: 900;
}

/* PRODUCTO RESPONSIVE */
@media screen and (max-width: 900px) {
	.producto {
		width: calc(100% - 0px);
		margin: 5px 0px 5px 0px;
		border-radius: 5px;
	}
	.producto img {
		border-radius: 0px;
		height: auto;
	}
}

/* MUESTRA DE IMAGENES */
.lightbox {
display: none; /**sets the default display to hide the lightbox until it's the :target**/
position: fixed; /**the rest of this styling makes the lightbox full screen when selected**/
z-index: 999;
width: 100%;
height: 100%;
text-align: center;
top: 0;
left: 0;
background: rgba(0,0,0,.8);
}
.lightbox img { /**sets the styling of the image in the lightbox**/
width: calc(100% - 700px);
height: 700px;
object-fit: cover;
text-align: center;
margin-top: 1%;
}
.lightbox:target { /**this is where the magic happens. makes the lightbox display when it's the target of a clickable link**/
outline: none;
display: block;
}
.previous { /**styling the left arrow**/
position: fixed;
left: 5%;
top: 40%;
width: 40px;
}
.exit { /**styling the exit button**/
position: fixed;
margin-top: 1%;
left: calc(100% - 425px);
width: 60px;
font-size: 30px;
color: #ff5252;
}

/* RESPOSIVE MUESTRA DE IMAGENES */
@media screen and (max-width: 900px) {
	.lightbox img {
		width: calc(100% - 20px);
		height: 300px;
		margin: 5% auto;
	} 
	.exit {
		display: none;
	}
}
.dialog {
	color: #000;
	padding: 0px 10px 10px 0px;
	margin: 0px 5px;
	display: inline-block;
	width: calc(100% - 12px);
}
.dialog h2 {
	text-transform: uppercase;
	margin: 5px 0px 0px 0px;
	font-size: 15px;
	color: #ff5252;
}
.dialog ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
.dialog ul li {
	text-align: left;
	border-bottom: 1px solid #ff5252;
	padding: 2px;
}
.dialog ul li span {
	float: right;
	font-weight: 300;
}
.dialog pre {
	color: #fff;
  white-space: pre-wrap;
  text-align: justify;
  font-size: 20px;
  font-family: "noodle";
  -webkit-overflow-scrolling: touch;
}
#lista2 {
  list-style: none; 
  font: 15px;
  padding: 0;
  margin: 5px;
  text-shadow: 0 1px 0 rgba(255,255,255,.1);
}

#lista2 ol {
  margin: 0px;
  padding: 0px;
}

#lista2 li{
	counter-increment: li;
	width: calc(100% - 63px);
	list-style-type: none;
  position: relative;
  padding: 0.9em .4em 1.2em 3.5em;
  margin: .5em 0;
  background: #ddd;
  color: #ff5252;
  text-decoration: none;
  border-radius: .3em;
  transition: all .3s ease-out;
  font-family: "noodle";
  text-align: left;
  font-size: 16px;
}

#lista2 li:before{
    content: counter(li);
    position: absolute; 
    left: 0.3em;
    top: 0px;
    margin-top: 0.3em;
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}
#lista2 pre {
	color: #000;
  text-align: justify;
  font-size: 15px;
  font-family: "noodle";
  -webkit-overflow-scrolling: touch;
  margin: 0px 10px 0px 0px;
}

/* SEARCH */
.search {
  vertical-align: top;
  border-radius: 40px;
  width: 100%;
  margin: 0px 0 -5px 0;
  color: #fff;
}
.search form input, .search form select, .search form button {
  display: inline-block;
  color: #34B7F1;
  outline: none;
  padding: 5px;
  background: transparent;
  font-size: 22px;
  font-family: "noodle";
  width: 100%;
}
.search form input {
  border: 2px solid #34B7F1;
  border-radius: 40px;
  padding: 5px 15px;
}
.search form select {
  border: none;
  border-right: 2px solid #34B7F1;
  border-radius: 40px 0px 0px 40px;
  background: none;
  width: 20%;
  outline: none;
  padding: 0px 10px;
}
.search form input::placeholder {
     color: #34B7F1;
}
.search form select option {
     color: #fff;
     background: #ff5252;
}
.search form button {
    position: relative;
  color: #fff;
  background: #34B7F1;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  width: 100px;
  margin-right: 4px;
  margin-top: -36px;
  float: right;
}
.search form button:hover {
     color: #34B7F1;
     background: #fff;
}
@media screen and (max-width: 1200px){
	.search {
		margin-top: 10px;
	}
}
.notas {
  width: auto;
  background-color: #34B7F1;
  color: #fff;
  padding: 1px 10px;
  margin: 5px 0px 5px 0px;
  font-family: "noodle";
  border-radius: 10px;
}
.notas pre {
  color: #fff;
  white-space: pre-wrap;
  text-align: justify;
  font-size: 20px;
  font-family: "noodle";
  -webkit-overflow-scrolling: touch;
}
.ima {
	width: 500px;
	margin: 15% auto;
}
@media screen and (max-width: 900px) {
	.ima {
		width: 250px;
	}
	.dialog {
		width: 100%;
		border-radius: 0px;
	}
}
dialog {
  background: #00a65a;
  color: #fff;
  border: none;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  width: 500px;
}
dialog h3 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1em;
}
/* Radio botones */
.radioT {
  position: relative;
  display: inline-block;
}
.radioT a {
  color: #34B7F1;
  padding: 5px 15px 5px 40px;
  display: inline-block;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.radioT a:hover:before {
  background: #34B7F1;
  color: #fff;
}
.radioT a:before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background: none;
  border: 3px solid #34B7F1;
  border-radius: 50%;
  position: absolute;
  left: 12px;
  top: 4px;
}
.radioT1 {
  position: relative;
  display: inline-block;
}
.radioT1 a {
  color: #fff;
  background: transparent;
  padding: 5px 15px;
  display: inline-block;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.radioT1 a:visited + a:before {
  display: none;
}
.radio-2 label, .checkbox label {
  display: inline-block;
  cursor: pointer;
  color: #FF4136;
  position: relative;
  padding: 5px 15px 5px 30px;
  font-size: 1em;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.radio-2 label:hover, .checkbox label:hover {
  background: rgba(255, 65, 54, 0.1);
}
.radio-2 label:before, .checkbox label:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 5px;
  border-radius: 50%;
  background: none;
  border: 3px solid #FF4136;
}
.radio-2 input[type="radio"] {
  display: none;
}
.radio-2 input[type="radio"]:checked + label:before {
  display: none;
}
.radio-2 input[type="radio"]:checked + label {
  padding: 5px 15px;
  background: #FF4136;
  border-radius: 2px;
  color: #fff;
}
/*PRECIOS*/
.precio {
	width: 100%;
	margin: 0px;
	text-align: center;
}
.precio .marca {
	background: #ff5252;
	padding: 10px;
	width: auto;
}
.precio .marca h1 {
	font-size: 1em;
	margin: 0px;
	color: #fff;
	text-shadow: none;
	text-transform: uppercase;
}
.precio .monto {
	background: #fff;
	padding: 10px;
	width: auto;
}
.precio .monto h2 {
	font-size: 2em;
	color: #000;
	text-shadow: none;
	text-align: center;
}
.precio .prima {
	background: #ff5252;
	padding: 10px;
	width: auto;
}
.precio .prima span {
	font-size: 1em;
	color: #fff;
	text-shadow: none;
}

/*POST CARD*/
.column {
  width: calc(33.33% - 10px);
  padding: 0px;
  margin: 6px 3px;
  display: flex;
	justify-content: space-around;
}
.post-module {
  position: relative;
  z-index: 1;
  display: block;
  background: transparent;
  width: calc(100% - 0px);
  height: auto;
}
.thumbnail {
    background: transparent;
    width: 100%;
    height: 450px;
}
.thumbnail .date {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    text-align: center;
}
.thumbnail .date .day {
    font-size: 18px;
}
.thumbnail .date .month {
    font-size: 12px;
    text-transform: uppercase;
}
.thumbnail .date .ima {
    width: 55px;
    height: 55px;
    object-fit: cover;
    background: transparent;
}
.thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.post-content {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    width: calc(100% - 20px);
    height: 100px;
    padding: 10px;
    border-radius: 10px;
}
.category {
      position: absolute;
      top: -39px;
      left: 0;
      background: #ff5252;
      padding: 10px 15px;
      color: #fff;
      font-size: 1.25em;
      font-weight: 700;
      text-transform: uppercase;
}
.title {
      margin: 0;
      padding: 0 0 10px;
      color: #ff5252;
      font-size: 1.25em;
      font-weight: 700;
      display: inline-block;
}
.sub_title {
      margin: 0;
      padding: 0 0 20px;
      font-size: 1em;
      font-weight: 400;
      display: inline-block;
}
.description {
  display: none;
  color: #ff5252;
  font-size: 14px;
  line-height: 1.8em;
}
@media screen and (max-width: 900px) {
    .column {
        width: calc(100% - 5px);
    }
    .thumbnail {
        height: auto;
    }
}
/* CARD */
.card {
	border-radius: 10px;
 	display: inline-block;
 	padding: 5px;
 	text-align: center;
 	width: calc(50% - 15px);
 	margin: 0px auto 3px auto;
 	background-color: rgba(255, 255, 255, 1);
}
@media screen and (max-width: 900px) {
	.card {
		width: calc(100% - 10px);
		margin: 10px 5px 0px 5px;
	}
}
.card h2 {
  color: #34B7F1;
  font-size: 1.3em;
  text-transform: uppercase;
}
.card h3 {
  color: #ff5252;
  font-size: 1em;
  text-transform: uppercase;
}
.card span {
	display: block;
	color: #ff5252;
}
.card .time {
	float: right;
	display: table-row;
}
.card .main1 {
	margin: 0px;
	padding: 0px;
	width: calc(100% - 30px);
}
.card .pro {
	margin: 0px auto;
	width: 150px;
	height: 150px;
}
.card .pro img {
	object-fit: contain;
	width: calc(100%);
	height: 150px;
	margin: 0px;
	padding: 0px;
}
.card .main {
	width: calc(100% - 0px);
	margin: 5px 15px;

}
.card .main pre {
	color: #34B7F1;
	font-family: 'noodle';
}
.card form {
	color: #fff;
	margin: 0px;
}
.card form label {
	color: #fff;
	float: left;
	width: 25%;
	margin: 2px auto;
	background: #34B7F1;
	border-radius: 10px 0px 0px 10px;
	padding: 7.5px 10px;
	font-size: 16px;
}
.card form input, input[type="date"], textarea, select {
	text-decoration: none;
	font-size: 17.5px;
	border: 2px solid #d0d3d4;
	background: #d0d3d4;
	border-radius: 0px 10px 10px 0px;
	margin: 2px auto;
	padding: 5px;
	width: calc(75% - 20px);
	font-family: "noodle";
	color: #34B7F1;
	&:focus {
    	outline: 0 transparent solid;
    	color: #34B7F1;
    }
}
.card form input::placeholder, input[type="date"]::placeholder, textarea::placeholder {
	color: #34B7F1;
}
.card input[type="file"]::file-selector-button {
  border: 2px solid #ff5252;
  padding: 0.2em 0.4em;
  border-radius: 5px 0px 0px 5px;
  background-color: #ff5252;
  transition: 1s;
  color: #34B7F1;
  font-family: "noodle";
  margin: -5px 5px -5px -5px;
}
@media screen and (max-width: 900px) {
	.card form label {
		padding: 7.3px 10px;
	}
	.card form input, input[type="date"], textarea, select {
		width: calc(75% - 30px);
		font-size: 17.5px;
	}
}
/* CARD2 */
.card2 {
	border-radius: 10px;
 	display: inline-block;
 	padding: 10px;
 	text-align: left;
 	width: calc(33% - 24px);
 	margin: 0px auto 8px auto;
 	background-image: linear-gradient(to top, #34B7F1 0%, #fa71cd 100%);
}
@media screen and (max-width: 900px) {
	.card2 {
		width: calc(100% - 10px);
		margin: 10px 5px 0px 5px;
	}
}
.card2 h2 {
  color: #fff;
  text-align: center;
  font-size: 1.1em;
  text-transform: uppercase;
}
.card2 h3 {
  color: #fff;
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
}
.card2 span {
	display: block;
	color: #ff5252;
}
.card2 .time {
	float: right;
	display: table-row;
}
.card2 .circle img {
	overflow: hidden;
  object-fit: cover;
  width: calc(100% - 5px);
  height: auto;
  border: 4px solid #fff;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto 10px auto;
}
.card2 .square img {
	overflow: hidden;
  object-fit: cover;
  width: calc(100% - 5px);
  height: auto;
  border: 2px solid #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card2 .main1 {
	display: flex;
	margin: 0px;
	padding: 0px;
	width: calc(100% - 50px);
}
.card2 .pro {
	width: 150px;
	height: 150px;
}
.card2 .pro img {
	object-fit: contain;
	width: calc(100%);
	height: 150px;
	margin: 0px;
	padding: 0px;
}
.card2 .main {
	width: calc(100% - 130px);
	margin: 5px 15px;
}
.card2 .main pre {
	color: #fff;
	font-family: 'noodle';
}
.card2 form {
	color: #fff;
	margin: 0px;
}
.card2 form label {
	color: #ff5252;
	font-size: 1em;
}
.card2 form input, input[type="date"], textarea, select {
	background: #34B7F1;
	text-decoration: none;
	border: 2px solid #34B7F1;
	border-radius: 10px;
	margin: 2px auto;
	padding: 5px;
	width: 100%;
	color: inherit;
	font-family: "noodle";
	font-size: 1em;
	
	&:focus {
    	outline: 0 transparent solid;
    	color: #fff;
    }
}
.card2 form input::placeholder, input[type="date"]::placeholder, textarea::placeholder {
	color: #fff;
}
.card2 input[type="file"]::file-selector-button {
  border: 2px solid #ff5252;
  padding: 0.2em 0.4em;
  border-radius: 5px 0px 0px 5px;
  background-color: #ff5252;
  transition: 1s;
  color: #fff;
  font-family: "noodle";
  margin: -5px 5px -5px -5px;
}
.card2 .foot {
	margin: 10px 0px;
	margin-bottom: auto;
	border-top: 2px solid #fff;
}