* {
    box-sizing: border-box;
    font: 400 12px/16px "Open Sans", Helvetica;
}
body {
    background-color: #24272b;
}
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* background: linear-gradient(to bottom, #4286f4 0%, #24272b 100%); */
    background-color: #35383d;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 4px;
}
.gallery-item {
    flex-basis: 32.7%;
    margin-bottom: 6px;
    opacity: .85;
    cursor: pointer;
}
.gallery-item:hover {
    opacity: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-content {
    font-size: .8em;
}

.lightbox {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;              
    overflow: auto;
    top: 0;
    left: 0;
}
.lightbox-content {
    position: relative;
    width: 70%;
    height: 70%;
    margin: 5% auto;
}
.lightbox-content img {
    border-radius: 7px;
    box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 7px;
    top: 45%;
    cursor: pointer;
}
.lightbox-prev {
    left: 0;
}
.lightbox-next {
    right: 0;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: .8;
} */

@media (max-width: 767px) {
    .gallery-container {
        width: 100%;
    }
    .gallery-item {
        flex-basis: 49.80%;
        margin-bottom: 3px;
    }
    .lightbox-content {
        width: 80%;
        height: 60%;
        margin: 15% auto;
    }
}
@media (max-width: 480px) {
    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }
    .lightbox-content {
        width: 90%;
        margin: 20% auto;
    }
}

/* FORM */

#my-form {
    margin-left: 10%;
    margin-right: auto;
}

#my-form-status {
    /* background: #4286f4; */
    color: white;
    font-weight: bold;
    /* box-shadow: 0px 5px #33912C; */
    display: block;
    /* border-radius: 10px; */
    text-align: left;
    font-size: 15px;
    font-family: "Open Sans", Helvetica;
    /* width: 88.9%; */
    margin-top: 15px;
    padding: 2px;
}

/* button {
    display: table-cell;
    vertical-align: middle;
} */

#info {
    border-radius: 4px;
	color: #EEEEEE;
	background: #35383d;
}

.header {
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    padding: 30px;
}

.text {
    padding: 30px;
    margin-left: 8px;
    font-size: 18px;
    /* font-weight: bold; */
    line-height: 25px;
    text-align: center;
}

#my-form-button {
    cursor: pointer;
    /* width: auto; */
    width: 169px;
    border: none;
    background: #4286f4;
    /* margin-left: 15px; */
    color: #FFF;
    /* margin: 5px 87px 5px; */
    margin-top: -18px;
    padding: 10px;
    font-size: 15px;
    border-radius: 4px;
  }
  
  #my-form-button:hover {
    background: #2263D2;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #my-form-button:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .textarea {
    border-radius: 4px;
    /* width: auto; */
    width: 169px;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    display: table-cell;
    vertical-align: middle;
  }

    .textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #4286f4;
  }

.textarea:focus {
  outline: 0;
  border: 1px solid #4286f4;
}

label {
    color: #4286f4;
    font-weight: bold;
    display: table-cell;
    vertical-align: middle;
}

.log {
	width: 100%;
	text-align: center;
	padding-bottom: 5px;
	order: -1;
    margin-top: 10px;
}
.logo {
	width: 100px;
	transition-duration: 0.5s;
	margin: 0 70px;
	/* margin-top: -63px; */
	/* display: block;
	margin-left: auto;
	margin-right: auto; */
}
.logo:hover {
	transform: scale(1.05);
}

#imgur {
    /* display: block;
    margin-left: auto;
    margin-right: auto; */
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 5px;
    /* height: 43px; */
    width: 169px;
  }

  @media only screen and (max-width: 300px) {
	#imgur {
		height: 42px;
	}
}

/* @media only screen and (max-width: 980px) {
  #myBtn {
    display: none;
  }
} */

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #4286f4 gray;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: gray;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #4286f4;
    border-radius: 10px;
    border: 3px solid #4286f4;
  }

  ::-webkit-scrollbar {
	background: #000000;
	height: 5px;
	width: 5px;
  }
  
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 2px #000000;
  }
  
  ::-webkit-scrollbar-thumb {
	background: #4286f4;
	border-radius: 2px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: #2263D2;
  }

  /* #myBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #3B8FEE;
    color: #EEEEEE;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  
  #myBtn:hover {
    background-color: #2263D2;
    transition-duration: 0.2s;
  } */

  @media only screen and (max-width: 767px) {
    #my-form {
      margin-left: auto;
    }
  }