@import url(https://fonts.googleapis.com/css?family=Lato:100);
html{ height:100%; }
body{
	/* background-image: url(http://localhost/cchc-form/img/back.svg); */
	background-repeat: no-repeat;
	background-size: cover;
  font-family: Lato;
  min-height: 100vh; 
  margin: 0; 
  
  /* display: grid;
  grid-template-rows: auto 1fr auto; */
}
.section-title{
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
}
.section-title-h2{
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
  font-family: Lato;
  font-weight: normal;
  font-size: 55px;
  text-transform: uppercase;
}
.colab-cchc{
  padding: 40px;
  display: flex;
}
.colab-cchc a{
  background-color: #50ACFF;
  display: flex;

}
.colab-cchc img{
  width: 100%;
  vertical-align: middle;
}
.colab-cchc:hover{
  padding: 30px;
}
/* body > footer {
  display: table-row;
} */
/* @media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
/* @media (min-width: 768px) {
    
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(25%);
    }
    
    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
  transform: translateX(0);
} */ 
.card-with-shadow{
    border: 0px !important;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
}
.divider-dash{
  border-top: 1px;
  border-top-width: 2px;
  border-top-style: dashed;
  border-top-color: #d3d3d380;
  margin-top: 16px;
  margin-bottom: 16px;
}
.btn-cchc {
  color: white;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 900;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  background: #DC2A19;
  padding: 16px;
  /* float: right; */
  padding-left: 32px;
  padding-right: 32px;
margin: 16px;
}
.btn-cchc:hover {
  background: #FE5740
}

.gallery{
  padding: 10px;
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
.v-stretch{
  grid-row: span 2;
}
.h-stretch{
  grid-column: span 2;
}
.big-stretch{
  grid-row: span 2;
  grid-column: span 2;
}
.gallery div{
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
  cursor: pointer;
}
/* .gallery div:hover img{
  transform: scale(1.02);
} */
.gallery div img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallerie div img{
  width: 100%;
  padding: 5px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 560px)
{
  .v-stretch{
    grid-row: span 1;
  }
  .h-stretch{
    grid-column: span 1;
  }
  .big-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* img full view box */
/* .container-popup{
  position: relative;
  min-height: 100vh;
} */
.container-popup .popup-img{
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(0,0,0,.9);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}
.container-popup .popup-img span{
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 60px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: inherit;
}
.container-popup .popup-img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
  border-radius: 5px;
  width: 950px;
  object-fit: cover;
}
@media(max-width:768px)
{
  .container-popup .popup-img img{
      width: 95%;
  }
}
/* img full view box */



.hr {
  width: 100%;
  height: 5px;
  display: block;
  position: relative;
  margin-bottom: 0em;
  padding: 2em 0;
}
.hr:after, .hr:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 50%;
  left: 0;
}
.hr:before {
  background: linear-gradient(90deg, #10111F 0%, #10111F 50%, transparent 50%, transparent 100%);
  background-size: 15px;
  background-position: center;
  z-index: 1;
}
.hr:after {
  transition: opacity 0.3s ease, animation 0.3s ease;
  background: linear-gradient(to right, #A876C7 5%, #50ACFF 15%, #71D99A 25%, #FDAA00 35%, #FD7900 45%, #EFA169 55%, #A876C7 65%, #50ACFF 75%, #71D99A 85%, #FDAA00 95%);
  background-size: 200%;
  background-position: 0%;
  animation: bar 15s linear infinite;
}
@keyframes bar {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
}
.hr.anim:before {
  background: linear-gradient(90deg, #fff 0%, #fff 5%, transparent 5%, transparent 10%, #fff 10%, #fff 15%, transparent 15%, transparent 20%, 
  #fff 20%, #fff 25%, transparent 25%, transparent 30%, #fff 30%, #fff 35%, transparent 35%, transparent 40%, #fff 40%, #fff 45%, 
  transparent 45%, transparent 50%, #fff 50%, #fff 55%, transparent 55%, transparent 60%, #fff 60%, #fff 65%, transparent 65%, transparent 70%, 
  #fff 70%, #fff 75%, transparent 75%, transparent 80%, #fff 80%, #fff 85%, transparent 85%, transparent 90%, #fff 90%, #fff 95%, transparent 95%, 
  transparent 100%);
  background-size: 150px;
  background-position: center;
  z-index: 1;
  animation: bar 120s linear infinite;
}
.hr.anim:hover:before {
  animation-duration: 60s;
}
.hr.anim:hover:after {
  animation-duration: 60s;
}

/**********File Inputs**********/
/* .container-input {
  text-align: center;
  background: #282828;
  border-top: 5px solid #c39f77;
  padding: 50px 0;
  border-radius: 6px;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
} */

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  border: 1px solid #F6F6F6;
  text-align: center;
}

.inputfile + label svg {
  width: 3em;
  height: 3em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  margin-right: 0.25em;
}

.iborrainputfile {
font-size:16px; 
font-weight:500;
font-family: 'Lato regular';
}

/* style 1 */

.inputfile-1 + label {
  color: #222222;
  background-color: #fff;
}

.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
  background-color: #F6F6F6;
}

/* #preview img { max-height: 100px; } */
.img-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-inner{
  height: 500px;
}
.carousel-item{
  height: 500px;
}
.carousel-item img{
  object-fit: cover;
  vertical-align: middle;
}

.carousel-content-div{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  /* background-color: rgba(0, 0, 0, 0.1); */
  background: rgb(2,0,36);
  background: linear-gradient(0deg, rgba(2,0,36,0.6) 0%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,50%) 100%); 
}
.error-label{
  padding: 16px;
  background-color: #D4101D;
  color: white;
  width: 90%;
  text-align: center;
  font-weight: 600;
}
.tag-chip div{
  background-color: #f6f6f6;
  padding: 10px;
  margin: 10px;
  border-radius: 10px 30px;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
  min-height: 70px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.prize-box img{
  width: 100%;
}
.winner-description{
  padding: 16px;
  min-height: 100px;
  text-align: justify;
}
.win-img img{
  width: 100%;
  height: 250px;
  padding: 5px;
  margin: auto;
  max-height: 250px;
  object-fit: cover;
  cursor: pointer;
}
.img-rank{
  padding: 10px;
  position: absolute;
  border-radius: 14px;
  color: white;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 7%), 0 4px 6px -2px rgb(0 0 0 / 5%);
}