/* Global ******************************************** */
	html {  box-sizing: border-box; }
	*, *:before, *:after {  box-sizing: inherit; }
/* Positioning ******************************************** */
	.fixed       { position: fixed;    }
	.absolute { position: absolute; }
	.relative { position: relative; }
	.abs-top-left {
		top: 0;
		left: 0;
	}
	.abs-top-right {
		top: 0;
		right: 0;
	}
	.abs-bottom-left {
		bottom: 0;
		left: 0;
	}
	.abs-bottom-right {
		bottom: 0;
		right: 0;
	}
/* Sizing ******************************************** */
	.fullbox {
		width: 100%;
		height: 100%;
	}

	.fullwidth                   { width: 100%; }
	.threequarterwidth   { width: 75%;  }
	.halfwidth                   { width: 50%;  }
	.quarterwidth             { width: 25%;  }

	.fullheight { height: 100%; }
/* Flex Sizing ******************************************** */
	.flex-box {
		display: flex;
		display: -ms-flexbox;
		display: -moz-flex;
		display: -webkit-flex;
	}
	.flex-wrap {
		flex-wrap: wrap;
	}
/* Margins ******************************************** */
	.no-margin { margin: 0; }
	.margin-auto { margin: auto auto; }

	.top-margin-none-auto { margin: 0px auto; }

	.top-margin-xs-auto { margin: 10px auto;  }
	.top-margin-s-auto   { margin: 25px auto;  }
	.top-margin-auto       { margin: 50px auto;  }
	.top-margin-l-auto   { margin: 75px auto;  }
	.top-margin-xl-auto { margin: 100px auto; }

	.margin-xs { margin: 10px;  }
	.margin-s   { margin: 25px;  }
	.margin       { margin: 50px;  }
	.margin-l   { margin: 75px;  }
	.margin-xl { margin: 100px; }

	.margin-x-xs { margin: 10px 0;  }
	.margin-x-s   { margin: 25px 0;  }
	.margin-x       { margin: 50px 0;  }
	.margin-x-l   { margin: 75px 0;  }
	.margin-x-xl { margin: 100px 0; }

	.margin-y-xs { margin: 0 10px;  }
	.margin-y-s   { margin: 0 25px;  }
	.margin-y       { margin: 0 50px;  }
	.margin-y-l   { margin: 0 75px;  }
	.margin-y-xl { margin: 0 100px; }

	.margin-top-xs { margin-top: 10px;  }
	.margin-top-s   { margin-top: 25px;  }
	.margin-top       { margin-top: 50px;  }
	.margin-top-l   { margin-top: 75px;  }
	.margin-top-xl { margin-top: 100px; }

	.margin-bottom-xs { margin-bottom: 20px;  }
	.margin-bottom-s   { margin-bottom: 25px;  }
	.margin-bottom       { margin-bottom: 50px;  }
	.margin-bottom-l   { margin-bottom: 75px;  }
	.margin-bottom-xl { margin-bottom: 100px; }
/* Padding ******************************************** */
	.no-padding { padding: 0; }

	.padding-xs { padding: 10px;  }
	.padding-s   { padding: 25px;  }
	.padding       { padding: 50px;  }
	.padding-l   { padding: 75px;  }
	.padding-xl { padding: 100px; }

	.padding-x-xs { padding: 10px 0;  }
	.padding-x-s   { padding: 25px 0;  }
	.padding-x       { padding: 50px 0;  }
	.padding-x-l   { padding: 75px 0;  }
	.padding-x-xl { padding: 100px 0; }

	.padding-y-xs { padding: 0 10px;  }
	.padding-y-s   { padding: 0 25px;  }
	.padding-y       { padding: 0 50px;  }
	.padding-y-l   { padding: 0 75px;  }
	.padding-y-xl { padding: 0 100px; }
/* Overflow ******************************************** */
	.overflow-hidden { overflow: hidden; }
/* Text ******************************************** */
	.font-bold { font-weight: bold; }
	.text-centre { text-align: center; }
	.font-s { font-size: 0.8em; }
	.font { font-size: 1em; }
	.font-l { font-size: 1.2em; }
	.font-xl { font-size: 2em; }
/* Background ******************************************** */
	.bg-image-full-centre {
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}
	.bg-image-fixed { background-attachment: fixed; }
	.bg-image-repeat-y { background-repeat-y: inherit; }
	.bg-black-transparent { background-color: rgba(22,22,22,0.8); }
/* Shadow ******************************************** */
	.shadow-bottom {
		-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
		box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
	}
/* Border ******************************************** */
	.border { border: 1px solid; }
	.border-semi { border: 3px solid; }
	.border-strong { border: 6px solid; }
	.border-bottom-strong { border-bottom: 6px solid; }
/* Form ******************************************** */
	.resize-none { resize: none;	}
	textarea, input { outline: none; }

	.form-error { border-color: red!important; }

	.animate {
		transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
	}

.bage-colour { color: #e2dcc0; }
.bage-border-colour { border-color: #e2dcc0; }
.pt-sans { font-family: 'PT Sans', sans-serif; }
textarea#tr-request { min-height: 150px; }
/* body#tr-body { background-image: url("wallpaper.jpg"); } */
/* div#tr-logo-content { background-image: url("background.jpg"); } */
div#tr-header-logo { max-width: 750px; }
h2#tr-text-header {  font-size: 2em; }
.gallery-project { display: none; }
.gallery-project-active { display: block!important; }
.gallery-project {
    display: none;
    position: absolute;
   /*  top: 50%; */
    top: 1px;
    left: 50%;
   /*  transform: translate(-50%,-50%); */
     transform: translate(-50%);

}
.gallery-project .lazy {
    /* portfolio image height */
height: 740px;

}

.tr-project-gallery { display:none; }
.tr-project-close { z-index: 10; color: white; font-weight: bold; font-weight: bold; font-size: 2em;

    padding: 0em; }
.tr-gallery-project-container { z-index: 5; }



.hover:hover {
	cursor: pointer;
	opacity: 0.8;
}
.gallery-projects-left {
    top: 50%;
    left: 20%;
    font-weight: bold; font-size: 60px!important;


}
.gallery-projects-right {
    top: 50%;
    right: 20%;
    font-weight: bold; font-size: 60px!important;

}
.form-error-msg { color: red; }

@media screen and (max-device-width: 500px) {
	.flex-box { display: block!important; }
	.threequarterwidth { width: 100%!important; }
	.halfwidth { width: 100%!important; }
	div#tr-text { text-align: center!important; }
}


/*
Theme Name: Tim Rice
 */
 html {
   /* scroll-behavior: smooth; */
 }





header{

	/* background: #fff; */
	/* width: 100%; */
	/* height: 110px; */
	/* font-family: 'PT Sans', sans-serif; */

}


a{

	color: #302D22;
}

a.anchor {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}

.main{


}

.logo {
  position: absolute;
  /* display: inline-block; */
 width: 20%;
 margin-top: 20px;
    margin-left: 40%;
    margin-right: 40%;
  z-index: 5000;
}

.wrapper{
	/* background-image: url("watermark.png"); */
  	font-family: 'Amiri', serif;
    font-size: 120%;
    line-height: 110%;
  width: 1000px;
	margin: 40px auto 40px auto;
overflow: hidden;
  /* border: solid 1px #900; */

}

.wrapper-blog{

	/* background-image: url("watermark.png"); */
  	font-family: 'Amiri', serif;
    font-size: 120%;
    line-height: 110%;
  width: 1000px;
	margin: 40px auto 40px auto;
overflow: auto;
  /* border: solid 1px #900; */
}

.wrapper > div {

	/* background: rgba(200, 200, 200, 0.5); */
	/* padding: 2em; */
	/* box-shadow: 3px 3px #ddd; */
	/* font-family: 'Libre Baskerville', serif; */
}

.textboxr{
	padding: 38px 10px 20px 50px;

  vertical-align: middle;
/* border: solid 1px #555; */
}

.textboxl{
	padding: 38px 50px 20px 10px;

  vertical-align: middle;
/* border: solid 1px #555; */
}



.shadowimage{


        box-shadow:  0 0 40px  rgba(0,0,0,0.5);
        -moz-box-shadow: 0 0 40px  rgba(0,0,0,0.5);
        -webkit-box-shadow: 0 0 40px  rgba(0,0,0,0.5);
        -o-box-shadow: 0 0 40px  rgba(0,0,0,0.5);


}

.left-column {

	width: 499px;
	float: left;
}

.right-column {

	width: 490px;
	margin-left: 500px;
}

.fh{

  height: 500px;
  /* overflow: hidden; */

}

.slider{
  /* old carousel */
  margin: 0px 0px 10px 0px;

}
.parallax-window{

margin:110px 0px 110px 0px;
  box-shadow:
         /* inset 0px 20px 10px -10px #555,
         inset 0px -20px 10px -10px #555; */

         inset 0px 20px 10px -10px rgba(0,0,0,0.6),
         inset 0px -20px 10px -10px rgba(0,0,0,0.6);
  min-height: 50vh;
  max-height: 50vh;
    background: transparent;
}




.img-blog{
/* margin-top: 10px;
margin-bottom: 10px; */
  object-fit: scale-down;
  width: 480px;
  height: 515px;
  border: solid 1px #555;

}

.textbox-blog{
  /* margin-top: 10px;
  margin-bottom: 10px; */
  width: 480px;
  height: 515px;
	padding: 25px 0px 25px 25px;
/* border: solid 1px #555; */
}




/* Tim Rice */
.project-info {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 48px;
}
.recent-project-content:hover div.project-info { max-height: 50%; }
.project-btn { padding: 8px; margin-right:3px; }
.project-btn:hover, .post-see-more:hover, .see-all-projects:hover, .see-all-news:hover { background-color: #262626; color: white; }
h1.home-title { margin: 0 auto 12px; }
.home-form-submit:hover {background-color:#262626;color:white;}
.recent-post .relative.bg-black-transparent.z-index-10.padding-s, .recent-post .recent-post-content { min-height: 175px; }
.recent-post br { display: none; }
@media only screen and (max-device-width: 480px) and (max-width: 480px) {
	div#tim-rice-featured-gallery-content { min-height: 250px!important; max-height: 250px!important; }
	.recent-project.halfwidth { width: 100%!important; }
	.recent-project-content { min-height: 150px!important; max-height: 150px!important; margin: 0 0 10px 0!important; }
	.see-all-projects { width: 90%; }
	div#tim-rice-recent-posts div.flex-box { flex-wrap: wrap!important; }
	div#tim-rice-recent-posts-content, div#tim-rice-recent-posts div.flex-box div.halfwidth { width: 100%!important; }
	.display-inline-block { display: block!important; }
	.recent-posts { margin: 0!important; }
	.project-info { padding: 5px!important; max-height: 55%!important;}
	.project-info h3 {margin: 0!important;}
	.project-info-links div {width: 100%;}
	.project-btn {width: 50%!important;margin: 0!important;}
	.project-info-links p {display: inline-block;margin: 0 5px 5px 0!important;}
	.project-info-links { flex-wrap: wrap; }
}

/* Global ******************************************** */
	html {  box-sizing: border-box; }
	body {
		background-image: url("/wp-content/uploads/2023/03/lion.gif");
		background-repeat: no-repeat;
		background-attachment: scroll;
		background-size: 100%;
	}
	*, *:before, *:after {  box-sizing: inherit; }
	/* * { font-family: 'PT Sans', sans-serif; } */
/* Display ************	******************************** */
	.display-inline-block {
		display: inline-block;
	}
/* Positioning ******************************************** */
	.fixed       { position: fixed; }
	.fixed-index { z-index: 5000; }
	.fixed-fullbox {
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10000;
	}
	.absolute { position: absolute; }
	.relative { position: relative; }
	.z-index-0 { z-index: 0; }
	.z-index-10 { z-index: 10; }
	.abs-bottom-right-25 {
		right: 25px;
		bottom: 0;
	}
	.abs-top-left {
		top: 0;
		left: 0;
	}
	.abs-top-right {
		top: 0;
		right: 0;
	}
	.abs-bottom-left {
		bottom: 0;
		left: 0;
	}
	.abs-bottom-right {
		bottom: 0;
		right: 0;
	}
/* Sizing ******************************************** */
	.fullbox {
		width: 100%;
		height: 100%;
	}

	.fullwidth                   { width: 100%; }
	.fourfifthswidth   { width: 80%;  }
	.threequarterwidth   { width: 75%;  }
	.sixtywidth                 { width: 60%;  }
	.halfwidth                   { width: 50%;  }
	.fortywidth                 { width: 40%;  }
	.thirtywidth             { width: 30%;  }
	.twothirdwidth             { width: 66.66%;  }
	.thirdwidth             { width: 33.33%;  }
	.quarterwidth             { width: 25%;  }
	.onefifthwidth             { width: 20%;  }
	.min-height-xxxs { min-height: 75px; }
	.min-height-xxs { min-height: 150px; }
	.min-height-xs {
		min-height: 225px!important;
	}
	.min-height-s { min-height: 350px; }
	.min-height { min-height: 500px; }
	.min-height-l { min-height: 900px; }

	.fullheight { height: 100%; }
/* Flex Sizing ******************************************** */
	.flex-box {
		display: flex;
		display: -ms-flexbox;
		display: -moz-flex;
		display: -webkit-flex;
	}
	.flex-wrap { flex-wrap: wrap; }
	.flex-grow { flex-grow: 1; }
/* Margins ******************************************** */
	.no-margin { margin: 0; }
	.no-margin-padding { margin: 0; padding: 0; }
	.margin-auto { margin: auto auto; }

	.top-margin-none-auto { margin: 0px auto; }

	.top-margin-xs-auto { margin: 10px auto;  }
	.top-margin-s-auto   { margin: 25px auto;  }
	.top-margin-auto       { margin: 50px auto;  }
	.top-margin-l-auto   { margin: 75px auto;  }
	.top-margin-xl-auto { margin: 100px auto; }

	.margin-xs { margin: 10px;  }
	.margin-s   { margin: 25px;  }
	.margin       { margin: 50px;  }
	.margin-l   { margin: 75px;  }
	.margin-xl { margin: 100px; }

	.margin-x-xs { margin: 10px 0;  }
	.margin-x-s   { margin: 25px 0;  }
	.margin-x       { margin: 50px 0;  }
	.margin-x-l   { margin: 75px 0;  }
	.margin-x-xl { margin: 100px 0; }

	.margin-y-xs { margin: 0 10px;  }
	.margin-y-s   { margin: 0 25px;  }
	.margin-y       { margin: 0 50px;  }
	.margin-y-l   { margin: 0 75px;  }
	.margin-y-xl { margin: 0 100px; }

	.margin-top-xs { margin-top: 10px;  }
	.margin-top-s   { margin-top: 25px;  }
	.margin-top       { margin-top: 50px;  }
	.margin-top-l   { margin-top: 75px;  }
	.margin-top-xl { margin-top: 100px; }

	.margin-bottom-xs { margin-bottom: 10px;  }
	.margin-bottom-s   { margin-bottom: 25px;  }
	.margin-bottom       { margin-bottom: 50px;  }
	.margin-bottom-l   { margin-bottom: 75px;  }
	.margin-bottom-xl { margin-bottom: 100px; }

	.margin-bottom-only-xs { margin: 0 0 10px 0;  }
	.margin-bottom-only-s  { margin: 0 0 25px 0;  }
	.margin-bottom-only    { margin: 0 0 50px 0;  }
	.margin-bottom-only-l  { margin: 0 0 75px 0;  }
	.margin-bottom-only-xl { margin: 0 0 100px 0; }
/* Padding ******************************************** */
	.no-padding { padding: 0; }

	.padding-xs { padding: 5px;  }
	.padding-10   { padding: 10px;  }
	.padding-s   { padding: 15px;  }
	.padding       { padding: 25px;  }
	.padding-l   { padding: 50px;  }
	.padding-xl { padding: 100px; }

	.padding-x-xs { padding: 5px 0;  }
	.padding-x-s   { padding: 15px 0;  }
	.padding-x       { padding: 25px 0;  }
	.padding-x-l   { padding: 50px 0;  }
	.padding-x-xl { padding: 100px 0; }

	.padding-left-xs { padding-left: 5px;  }
	.padding-left { padding-left: 25px;  }

	.padding-right-xs { padding-right: 5px;  }
	.padding-right { padding-right: 25px;  }

	.padding-y-xs { padding: 0 5px;  }
	.padding-y-s   { padding: 0 15px;  }
	.padding-y       { padding: 0 25px;  }
	.padding-y-l   { padding: 0 50px;  }
	.padding-y-xl { padding: 0 100px; }
/* Overflow ******************************************** */
	.overflow-hidden { overflow: hidden; }
/* Text ******************************************** */
	.txt-centre { text-align: center; }
	.txt-left { text-align: left; }
	.txt-right { text-align: right; }
	.txt-no-decoration { text-decoration: none; }
	.txt-lowercase { text-transform: lowercase; }
	.txt-uppercase { text-transform: uppercase; }
	.font-s { font-size: 0.8em; }
	.font-l { font-size: 1.2em; }
	.font-xl { font-size: 1.6em; }
	.font-bold { font-weight: bold; }

	.colour-cream { color: #FCFFFC; }
	.colour-bage { color: #ffffe6; }
	.colour-charcoal { color: #262626; }
	.colour-white { color: #ffffff; }
/* List Style ******************************************** */
	.no-list-style { list-style: none; }
/* Background ******************************************** */
	.bg-image-full-centre {
		background-size: cover;
		background-position: center center;
	}
	.bg-image-fixed { background-attachment: fixed; }
	.bg-image-repeat-y { background-repeat-y: inherit; }
	.bg-black-transparent { background-color: rgba(22,22,22,0.8); }
	.bg-cream-transparent { background-color: rgba(255,255,255,0.8); }
    .bg-white-logo { background-image: url("http://fornex.online/tim/wp-content/uploads/2019/10/BackgroundLogo-e1572539819542.png");
		background-color: rgba(255,255,255,1);
        background-repeat: no-repeat;
		background-attachment: scroll;
		background-size: 100%;}
	.bg-colour-cream { background-color: #FCFFFC; }
	.bg-colour-bage { background-color: #ffffe6; }
	.bg-colour-charcoal { background-color: #262626; }
	.bg-colour-white { background-color: #ffffff; }

	.bg-colour-white-transparent { background-color: rgba(255,255,255,0.8); }
/* Shadow ******************************************** */
	.shadow-bottom {
		-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
		box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
	}
/* Border ******************************************** */
	.border-none { border: none; }
	.border { border: 1px solid; }
	.border-semi { border: 3px solid; }
	.border-strong { border: 6px solid; }
	.border-bottom-semi { border-bottom: 3px solid; }
	.border-bottom-strong { border-bottom: 6px solid; }
	.border-right-semi { border-right: 3px solid; }
	.border-right-strong { border-right: 6px solid; }

	.border-colour-cream { border-color: #FCFFFC; }
	.border-colour-bage { border-color: #ffffe6; }
	.border-colour-charcoal { border-color: #262626; }
	.border-colour-white { border-color: #ffffff; }
/* Form ******************************************** */
	.resize-none { resize: none;	}
	textarea, input { outline: none; }

	.form-error { border-color: red!important; }

	.animate {
		transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
	}
	.animate-s {
		transition: all 2s ease;
		-moz-transition: all 2s ease;
		-webkit-transition: all 2s ease;
	}

	.project-slide {
		width: 0%;
		height: 100%;
		top: 0;
		box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.9);
	}

	.multi-gallery-left {
		width: 15%;
		left: 0;
	}

	.multi-gallery-right {
		width: 15%;
		right: 0;
		left: 85%;
	}

	.multi-gallery-active .mask {
		opacity: 0;
	}

	.multi-gallery-active {
		width: 71%;
		top: -5px;
		left: 15%;
		z-index: 10;
		box-shadow: 0px 7px 7px 0px rgba(0,0,0,0.9);
		transform: translate(-0.8%,0);
	}

	.mask {
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgba(22,22,22,0.7);
	}
	.hover { cursor: pointer; }
	.ajax-gall-content {
		width: 100%;
		height: auto;
		left: 0;
		top: 0;
		padding: 50px;
	}
	.ajax-gall-img { display: none; }
	.ajax-gall-active { display: block; }
	.ajax-gall-thumb { min-height: 125px; }
	.ajax-gall-thumb:hover { opacity: 0.5; }
	.ajax-gall-close { top: 25px; color: white; font-weight: bold; font-weight: bold; font-size: 30px;
    background-color: rgba(22,22,22,0.8);
    padding: 0.5em; left: 50%; transform: translateX(-50%); letter-spacing: 1px; }
	.ajax-gall-close:hover { color: red; }
	.ajax-gall-thumb.ajax-gall-active { border: 1px solid #FCFFFC; }
	.ajax-gall-thumb-container { overflow: auto; }
	.ajax-gall-container.fixed.fixed-fullbox.bg-black-transparent {overflow: scroll;}

	.multi-gallery-left:hover, .multi-gallery-right:hover {
		cursor: pointer;
	}
	.box-link {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index:100;
	}
.sub-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 150px;
    background-color: rgba(22,22,22,0.6);
}

.sub-menu {
    left: -50%;
    top: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    width: 150px;
    height: 0;
}
li.store-link div.sub-menu {
    transform: translateX(-25%);
}

li.account-link div.sub-menu {
    margin-left: -22px;
}
li.menu-link div.sub-menu {
	margin-left: -20px;
}
.has-sub-cat a:hover ~ div.sub-menu, div.sub-menu:hover {
    height: 1000px;
}
.menu-link a:hover ~ div.sub-menu {
    height: 1000px;
}
.sub-menu ul li {
    padding: 6px 0;
    border-bottom: 1px solid #FCFFFC;
    transition: all 0.5s ease;
}

.sub-menu ul li:hover {
    background-color: white;
    cursor: pointer;
}

.sub-menu ul li:hover a {
    color: #262626!important;
}
p.form-thnk-msg {
    padding: 15px;
    color: green;
}
p.form-err-msg {
    padding: 15px;
    color: red;
    text-align: center;
}
div#mobile-nav-btn { display: none; }
@media only screen and (max-device-width: 480px) and (max-width: 480px) {
	div#header-nav {
		position: fixed!important;
		right: -500px;
		top: 0!important;
		width: 100%!important;
		height: 100%!important;
		padding: 0!important;
	}
	ul#header-nav-main-menu {
		width: 100%!important;
		height: 100%!important;
		font-size: 1.75em!important;
		text-align: center!important;
		background-color: rgba(22,22,22,0.9)!important;
	}
	ul#header-nav-main-menu li {
		margin: 15px 0!important;
		display: list-item!important;
		list-style:none!important;
	}
	div#mobile-nav-btn {
		display: block!important;
		position: fixed!important;
		z-index: 1000!important;
		top: 16px!important;
		right: 0!important;
		background-color: rgba(22,22,22,0.6)!important;
		padding: 5px 10px!important;
		color: white!important;
	}

	div#header-logo-container img {
		width: 100%!important;
	}

	div#header-logo {
		width: 50%!important;
		margin: 0 auto;
	}
	ul#footer-nav-main-menu li.display-inline-block {
		display: list-item;
		list-style: none;
	}
	div#header-logo-container {
    		width: 75%;
	}
	div#header-content {
    		padding: 5px 0;
	}
	.ajax-gall-thumb-content .onefifthwidth {
    		width: 33.33%;
    		padding: 2px;
	}
	.ajax-gall-thumb {
    		min-height: 75px;
	}
	.ajax-gall-content {
    		padding: 25px;
	}
	.ajax-gall-title {
		padding-top: 10px;
	}
}


/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #ffffff;
  /* color: white; */
  padding: 12px 20px;

  border: 1px solid #999;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  /* border-radius: 4px; */
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  /* background-color: #45a049; */
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
