:root {
	--bg-color: rgb(154 177 199);
}

.br-0 {
	border-radius: 0 !important;
}

@font-face {
	font-family: 'FuturaBold'; /*a name to be used later*/
	src: url('../fonts/futura-bold.TTF'); /*URL to font*/
}

@font-face {
	font-family: 'FuturaBook'; /*a name to be used later*/
	src: url('../fonts/futura-book.TTF'); /*URL to font*/
}


body{
	overflow-x: hidden;
	font-family: "FuturaBook";
}

header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
	padding: 10px;
	background: linear-gradient( to left, rgb(70, 69, 70) 0%, rgb(142, 142, 142) 12%, rgb(234, 234, 234) 47%, rgb(76, 76, 76) 100% ) left bottom #fff no-repeat;
    background-size: 100% 5px;
}


header .header-btn > .btn,
header .header-btn > .dropdown {
	margin-right: 4px;
	margin-top: 13px;
	border-radius: 3px;
}

.share-box{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.31);
	text-align: center;
	left: 0;
	top: 0;
	z-index: 100;
}


.share-box > .share-list {
	margin-top: 70px;
}

.social{
	float: left;
	padding:10px;
}

.share-box > .share-list > .social > img{
	filter : opacity(0.7);
	-webkit-filter : opacity(0.7);
	-moz-filter : opacity(0.7);
	-o-filter : opacity(0.7);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 120px;

	position: relative;
	left: 0;
	right: 0;
	margin: auto;
}

.share-box > .share-list > .social > img:hover{
	filter : opacity(1);
	-webkit-filter : opacity(1);
	-moz-filter : opacity(1);
	-o-filter : opacity(1);
}

.close-social {
	background: black;
	padding: 1% 13%;
	color: #fff;
	font-weight: bold;
}

.puzzle-pieces{
	height: 50px;
	background: white;
	border: 0;
	color: rgb(0, 0, 0);
	border-radius: 0 !important;
}

nav > ul > li > a ,button , select{
	font-family: FuturaBook;
	font-size: 16px !important;
}

nav > ul > li > a:hover {
	background-color: #7A6339 !important;
}

nav > ul > li > a:active {
	background-color: #8A6100 !important;
}

#menuToggle{
	padding: 7px;
	background: #ac8e5a;
	color: #fff;
	z-index: 99;
	height: 32px;
	border-bottom: 1px solid #71582b;
}

@media screen and (max-width: 960px) {
	.navbar-cover {
		top: 0px;
		z-index: 98;
		position: relative;
		top: 6px;
	}

	.navbar-cover > ul > li {
		width: 100%;
		box-shadow: none !important;
	}
}

.gi-2x{font-size: 2em !important;}
.gi-3x{font-size: 3em !important;}
.gi-4x{font-size: 4em !important;}
.gi-5x{font-size: 5em !important;}


.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 9999;
	top: 0;
	right: 0;
	background-color: var(--bg-color);
	overflow-x: hidden;
	padding-top: 60px;
	text-align:center;
}

.sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: white;
	display: block;

}

.sidenav .sidenav-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.sidenav .sidenav-body a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: white;
	width: 250px;
	text-align: left;
}

.sidenav a:hover{
	color: #f1f1f1;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}

@media screen and (max-height: 450px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 18px;}
}


.media-carousel .carousel-control.left 
{
	background-image: none;
	background: none repeat scroll 0 0 #222222;
	border: 4px solid #FFFFFF;
	border-radius: 23px 23px 23px 23px;
	height: 40px;
	width: 40px;
	position: absolute;
	top: 30%;
}
/* Next button  */
.media-carousel .carousel-control.right 
{
	background-image: none;
	background: none repeat scroll 0 0 #222222;
	border: 4px solid #FFFFFF;
	border-radius: 23px 23px 23px 23px;
	height: 40px;
	width : 40px;
	position: absolute;
	top: 30%;
}
/* Changes the position of the indicators */
.media-carousel .carousel-indicators 
{
	right: 50%;
	top: auto;
	bottom: 0px;
	margin-right: -19px;
}
/* Changes the colour of the indicators */
.media-carousel .carousel-indicators li 
{
	background: #c0c0c0;
}
.media-carousel .carousel-indicators .active 
{
	background: #333333;
}
.media-carousel .item.active
{
	display: flex;
	justify-content: center;
}

.media-carousel .item.active .thumbnail-img
{
	height: 120px;
	width: 120px;
	background-size: cover !important;
	background-position: center center !important;
	margin: 10px;
	cursor: pointer;
	border: 3px solid white;
}

.media-carousel .carousel-inner {
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
}


@media screen and (max-width:480px) {
	.media-carousel .item.active .thumbnail-img
	{
		height: 80px;
		width: 80px;
	}

	.media-item-select:after {
		right: 5% !important;
	}

	.preview-img .img-btn-group .btn  {
		font-size: 14px !important;
	} 

} 

.media-item-select {
	width: 100%;
	overflow: hidden;
	position: relative;
	padding: 0 20px;
}

.media-item-select:after {
	content: "▼";
	padding: 8px 8px;
	position: absolute;
	right: 0;
	color: white;
	top: 0;
	text-align: center;
	width: 10%;
	height: 100%;
	pointer-events: none;
}

.media-item-title {
	width: 100%;
	padding: 5px 15px;
	color: white;
	background-color: transparent;
	border: 1px solid #e3e3e3;
	outline: none;
	font-size: 16px;
	-webkit-appearance: none;
	/* for webkit browsers */
	-moz-appearance: none;
	/* for firefox */
	appearance: none;
	text-align-last: center;
	border:none;
	background-image: linear-gradient(black, #777777);
    border-radius: 0;
    font-weight: bolder;
}

.media-item-title::-ms-expand {
	display: none;
}

.media-item-title option {
	color: black !important;
}


.preview-img {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background-color: var(--bg-color);
	
}

.preview-img img {
	max-height: calc(100vh - 340px) !important;
}

.sidenav-footer {
	background: rgb(12 91 175 );
	bottom: 0;
	position: absolute;
	width: 100%;
	padding: 20px;
	color: white;
}

.sidenav-footer p{
	font-size: large;
	font-weight: 600
}

.img-change-background {
	position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 1rem;
    background-color: rgb(18 138 21 );
    border: 0;
    opacity: 0.96;
}
}


#bgImg {
	width: 480px !important;
	height: 480px !important;
	z-index: 0;
}

/*#canvas3 {
	width: 480px;
	height: 480px;
}*/

@media screen and (max-width: 480px) {
	#bgImg {
		width: 320px;
		height: 320px;
		z-index: 0;
	}

	#canvas3 {
		width: 320px;
		height: 320px;
	}
}

#p5canvas {
    position: absolute;
    left: 40px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

#hiddenCanvas {
    position: absolute;
    left: 40px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    display: none;
}

#backgroundModal {
	top: 100px;
}

#backgroundModal .modal-body {
	height: calc(100vh - 356px);
	padding: 0 !important;
	display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
}

#backgroundModal .preview-img-box {
	/*display: flex;
    justify-content: center;*/
}

#backgroundModal .modal-footer {
	background-color: var(--bg-color)
}

#backgroundModal .modal-footer .footer-title {

	color: #fff;
	font-size: 17px;
	width: 100%;
	line-height: 2.1rem;
	background: rgb(179	129	33);
	padding: 20px;
	text-align: center;

}

.modal-backdrop.in {
	/* top: 100px !important; */
}

.upload-button-gradient {
	 background: linear-gradient( to left, rgb(68, 49, 8) 0%, rgba(99, 74, 19, 1) 12%, rgb(146, 111, 31) 47%, rgb(210, 182, 120) 100% ) left bottom #fff no-repeat;
}


.cancel-greenscreen-btn {
	background: gray;
    color: white;
    font-weight: bolder;
}

.save-greenscreen-btn {
	background: linear-gradient( to left, #247914 0%, rgb(45, 152, 26) 12%, rgba(50, 168, 28, 1) 47%, rgb(116, 222, 96) 100% ) left bottom #fff no-repeat;
    color: white;
    font-weight: bolder;
}

.media-carousel .item.active .thumbnail-img.background-img {
    height: 120px;
    width: 120px;
    background-size: cover !important;
    background-position: center center !important;
    margin: 10px;
    cursor: pointer;
    border: 0 !important;
    border-radius: 20px !important;
}

.screen-lock-btn {
    position: fixed;
    bottom: 0;
    height: 60px;
    line-height: 5rem;
    font-size: 1.8rem;
    border: 0;
    border-radius: 0;
    z-index: 1;
    opacity: 0.85;
}

#signupQrModal .modal-body {
    background: var(--bg-color)
}

#signupQrModal .modal-body input{
    border: none !important;
    border-radius: 0
    box-shadow: 1px 1px 1px black !important;
}

#signupQrModal b, #signupQrModal label {
    color: white !important;
}

#signupQrModal label > a {
    color: rgb(240  242 55  ) !important;
}


@media (max-width: 767px) {
    #signupQrModal .modal-dialog {
        margin: 0 !important;
        top:0 !important;
    }

    #signupQrModal .modal-body {
        height: calc(100vh - 94px);
    }

    #signupQrModal .footer-btn-group {
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

.cd-image-container {
    position: relative;
    width: 90%;
    max-width: 768px;
    margin: 0em auto;
  }
  .cd-image-container img {
    display: block;
  }
  
  .cd-image-label {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #ffffff;
    padding: 1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0.3s 0.7s;
    -moz-transition: -moz-transform 0.3s 0.7s, opacity 0.3s 0.7s;
    transition: transform 0.3s 0.7s, opacity 0.3s 0.7s;
  }
  .cd-image-label.is-hidden {
    visibility: hidden;
  }
  .is-visible .cd-image-label {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  
  .cd-resize-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-resize-img img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
  }
  .cd-resize-img .cd-image-label {
    right: auto;
    left: 0;
  }
  .is-visible .cd-resize-img {
    width: 50%;
    /* bounce in animation of the modified image */
    -webkit-animation: cd-bounce-in 0.7s;
    -moz-animation: cd-bounce-in 0.7s;
    animation: cd-bounce-in 0.7s;
  }
  
  @-webkit-keyframes cd-bounce-in {
    0% {
      width: 0;
    }
    60% {
      width: 55%;
    }
    100% {
      width: 50%;
    }
  }
  @-moz-keyframes cd-bounce-in {
    0% {
      width: 0;
    }
    60% {
      width: 55%;
    }
    100% {
      width: 50%;
    }
  }
  @keyframes cd-bounce-in {
    0% {
      width: 0;
    }
    60% {
      width: 55%;
    }
    100% {
      width: 50%;
    }
  }
  .cd-handle {
    position: absolute;
    height: 44px;
    width: 44px;
    /* center the element */
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -22px;
    border-radius: 50%;
    background: #dc717d url("../slider/img/cd-arrows.svg") no-repeat center center;
    cursor: move;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(0);
    -moz-transform: translate3d(0, 0, 0) scale(0);
    -ms-transform: translate3d(0, 0, 0) scale(0);
    -o-transform: translate3d(0, 0, 0) scale(0);
    transform: translate3d(0, 0, 0) scale(0);
  }
  .cd-handle.draggable {
    /* change background color when element is active */
    background-color: #445b7c;
  }
  .is-visible .cd-handle {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    -moz-transform: translate3d(0, 0, 0) scale(1);
    -ms-transform: translate3d(0, 0, 0) scale(1);
    -o-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-transition: -webkit-transform 0.3s 0.7s, opacity 0s 0.7s;
    -moz-transition: -moz-transform 0.3s 0.7s, opacity 0s 0.7s;
    transition: transform 0.3s 0.7s, opacity 0s 0.7s;
  }
  

  img {
    max-width: 100%;
  }