html, body {
   margin:0;
   padding:0;
}



#navbar {
    background-color: #ffffff;
    height: 200px;
    /* padding: 90px 10px; */
    transition: 0.6s all; 
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 99;
}

img.header_logo {
    margin-top: 20px;
    margin-bottom: 8px;
    width: 400px;
    left: 0;
    right: 0;
}
img.header_logo_small {
    margin-top: 9px;
    margin-left: 9px;
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    display: none;
}
div.header_large {
    margin: 0 auto;
    text-align: center;
}
#menu_bars {
  display: none;
}

#menu_mobile {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  z-index: 2;
  display: none;
}

.menu_contact {
  width: 100%;
  position: fixed;
  z-index: 9999;
  display: none;
  background-color: white;
  border-bottom: 2px dotted #000000;
}
.menu_contact_mobile {
  width: 100%;
  position: fixed;
  z-index: 9999;
  display: none;
  background-color: white;
  border-bottom: 2px dotted #000000;
}
.contact_wrapper {
  margin: 0 auto;
  display: table;
  z-index: 5;
  max-width: 800px;
}
.contact_wrapper_mobile {
  margin: 0 auto;
  display: table;
  z-index: 5;
  padding: 10px;
  max-width: 800px;
}
.contact_content {
  font-size: 14px;
  font-family: "Open Sans", Futura, Helvetica Neue, Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  margin-top: 45px;
  z-index: 5;
}

.logout_button {
  position: absolute;
  right: 0px;
  top: 0px;
}


.gallery {
  margin: 0 auto;
  z-index: 1;
}

div.gallery_wrapper {
  max-width: 100%;
  margin-left: 5px;
  margin-top: 200px;
  margin-right: 15px;
  z-index: 1;
}
.gallery_item {
    cursor: pointer;
    margin-bottom: 10px;
}
img.gallery_image {
   width: 250px;
   border-radius: 12px;
   border: solid 2px #fff;
   transition: 0.6s all; 
}
img.gallery_image:hover {
    border: solid 2px #000;
}
.gallery_image_full {
    max-width: calc(100vw - 65px);
    max-height: 100vh;
}
div.admin {
    position: absolute;
    top: 2px;
    right: 2px;
    opacity: 0.6;
    transition: all 0.5s ease-in 0s;
    background-color: #b2b2b2;
}
div.admin:hover {
    opacity: 1;
    background-color: #ffffff;
}

div.social_media_buttons {
  position: relative;
  display: block;
  margin-top: 10px;
}

.soc_m_share {
  margin-left: 5px;
  filter: url(filters.svg#grayscale);
  filter: gray;
  -webkit-filter: grayscale(1);
  transition: 0.6s all;
  width: 40px;
  height: 40px;
}
.soc_m_share:hover {
  filter: none;
  -webkit-filter: none;
  opacity: 1;
  filter: alpha(opacity=100);
}

.socm_insta {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.socm_twitter {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

img.add_section {
  opacity: 0.2;
  cursor: pointer;
  transition: 0.6s all;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}

img.add_section:hover {
  opacity: 1.0;
  filter: alpha(opacity=100); /* For IE8 and earlier */
}



div.entry_wrapper {
    display: flex;
}
div.entry_content {
  width: 100%;
  margin-left: 15px;
  margin-right: 15px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  text-align: center;
}
div.entry_arrow {  
    top: 50%;
    position: fixed;
    -webkit-transform: translateY(-45%);
       -moz-transform: translateY(-45%);
        -ms-transform: translateY(-45%);
         -o-transform: translateY(-45%);
            transform: translateY(-45%);
    padding: 15px;
    cursor: pointer;
}
div.entry_arrow_left {  
    left: 10px;
}
div.entry_arrow_right {  
    right: 15px;
}
div.save_success {
  position: fixed;
  top: 30px;
  left: 30px;
}
div.entry_textbox {
  padding: 10px;
  max-width: 800px;
  text-align: left;
}
  .gallery_image_full {
      max-width: 800px;
      border-radius: 5px;
  }
div.edit_wrapper {
  width: 900px;
}
div.save_box {
  width: 100%;
  max-width: 800px;
  border-style: dotted;
  border-width: 2px;
  border-radius: 10px;
  margin: 10px;
  padding-top: 5px;
  cursor: text;
  float: left;
}
div.edit_box {
  width: 50px;
  padding: 10px;
  margin-top: 20px;
  float: right;
  opacity: 0.2;
  cursor: pointer;
  transition: 0.6s all;
  filter: alpha(opacity=50); /* For IE8 and earlier */
}
div.edit_box:hover {
  opacity: 1.0;
  filter: alpha(opacity=100); /* For IE8 and earlier */
}
.file_upload {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.file_upload + label {
  width: 50px;
  height: 50px;
  background-image: url(../images/upload_file.png);
  display: inline-block;
}
.submit_button {
  color: #494949 !important;
  text-transform: uppercase;
  text-decoration: none;
  background: #ffffff;
  padding: 2px;
  border: 2px solid #494949 !important;
  display: inline-block;
  transition: all 0.4s ease 0s;
  cursor: pointer;
}
.submit_button:hover {
  color: #ffffff !important;
  background: #f6b93b;
  border-color: #f6b93b !important;
}

div.add_entry_button {
  position: fixed;
  left: 5px;
  top: 180px;
  z-index: 1000;
  background-color: #ffffff;
  border-radius: 5px;
}

div.edit_add_options {
  width: 800px;
  margin: 10px;
  padding-top: 5px;
}

[contenteditable]:empty::before {
    content: 'Your Placeholder Text';
    color: rgba(0,0,0,0.2);
}

h1 {
  font-size: 32px;
  font-family: "Open Sans", Futura, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 20px;
  font-family: "Open Sans", Futura, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline;
}

h3 {
  font-family: "Open Sans", Futura, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  display: inline;
}

h4 {
  font-size: 14px;
  font-family: "Open Sans", Futura, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: italic;
  display: inline;
}

p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  display: inline;
}

p.about_mobile {
  padding: 0px 10px;
  vertical-align: top;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 100;
}

a.no_style {
  color: inherit;
  text-decoration: inherit;
}

div.menu {
  background-color: #;
  padding: 4px 8px 4px 8px;
  margin: 0px 2px 0px 2px;
  font-size: 14px;
  font-family: "Open Sans", Futura, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}
div.menu:hover {
  background-color: #00a2c5;
}

div.contact {
  background-color: #;
  padding: 4px 8px 4px 8px;
  margin: 0px 2px 0px 2px;
  font-size: 14px;
  font-family: "Open Sans", Futura, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-weight: 500;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}
div.contact:hover {
  background-color: #00a2c5;
}


div.menu_active {
  background-color: #00a2c5;
  color: #ffffff;
}

.menu_mobile_item {
  width: 100%;
  border-top: 1px solid #545b65;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-family: "Open Sans", Futura, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  display: inline-block;
  
}
.menu_mobile_item:hover {
  background-color: #00a2c5;
}

div.about_wrapper {
  max-width: 100%;
  margin-top: 200px;
  padding-bottom: 50px;
  min-height:100%;
  position:relative;
}

.about_tablet {
  display: none;
}
.about_mobile {
  display: none;
}

table.about {
  width: 100%;
  margin-top: 15px;
}

table.about, td {
  padding: 10px 8px 8px 5px;
  vertical-align: top;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 100;
}

div.about_copyright {
   position:absolute;
   bottom: 0px;
   right: 0px;
   padding: 6px;
   text-align: right;
}

div.gallery_end_wrapper {
  width: 100%;
  display: none;
}
div.gallery_end {
  margin: 0 auto;
  display: table;
  padding: 30px 0px 40px 0px;
}

ul.radioslight{
    padding: 0;
    list-style: none;
    text-align: left;
}
ul.radioslight li{
    position: relative;
}
ul.radioslight li input[type=radio]{
    position: absolute;
    visibility: hidden;
}
ul.radioslight li label{
    padding: 0 0 0 2em;
    margin: 0.5em auto;
    display: block;
    cursor: pointer;
}
ul.radioslight li .check{
    position: absolute;
    width: 1em;
    height: 1em;
    top: 0;
    left: 0;
    border: 0.33em solid #545b65;
    border-radius: 100%;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}
ul.radioslight li:hover .check {
    border-color: #0b90cf;
}
ul.radioslight li .check::before {
    content: '';
    position: absolute;
    height: 0.5em;
    width: 0.5em;
    top: 0.25em;
    left: 0.25em;
    border-radius: 100%;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

input.lightblue[type=radio]:checked ~ .check {
    border-color: #0b90cf;
}
input.lightblue[type=radio]:checked ~ .check::before{
    background: #0b90cf;
}
input.lightblue[type=radio]:checked ~ label{
    color: #0b90cf;
}

.rotated { 
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}




/* Hiding the title image top left so it does not overlap the menu */
@media all and (max-width: 960px) {
  #header_logo_small_div {
    display: none;
  }
}

/* Switch about section into tablet mode */
@media all and (max-width: 780px) {
  .about_desktop {
    display: none;
  }
  .about_tablet {
    display: block;
  }
}


/* Removing some of the border margins for full view gallery items */
@media all and (max-width: 736px) {
  .gallery_image_full {
      max-width: calc(100vw - 35px);
  }
  div.entry_content {
    margin-left: 0px;
    margin-right: 0px;
    height: calc(100vh - 80px);
  }
  div.entry_arrow {
    display: none;
  }
}

/* Switch from desktop to mobile menu header */ 
@media all and (max-width: 580px) {
  #navbar {
    height: 56px !important;
  }
  #header_logo_small_div {
    display: block;
  }
  #div_header_logo {
    display: none !important;
  }
  img.header_logo_small {
    display: block !important;
  }
  div.gallery_wrapper {
    margin-top: 60px !important;
  }
  div.header_large {
    display: none !important;
  }
  #menu_bars {
    display: block;
    padding: 10px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
  }
  div.div_menu_bars {
    float: right;
    display: block;
  }
  div.about_wrapper {
    margin-top: 70px;
  }
  div.contact_wrapper {
    display: none;
  }
}

/* Remove all border margins for full view gallery items */
@media all and (max-width: 480px) {
  .gallery_image_full {
      max-width: 100vw;
  }
  div.entry_content {
    margin-bottom: 0px;
    height: calc(100vh - 40px);
  }
  .about_mobile {
    display: block;
  }
  .about_tablet {
    display: none;
  }
}