/* General Blueprint Style */

@font-face {
	font-family: 'calibri';
	font-weight: normal;
	font-style: normal;
	src: url('../fonts/bpicons/bpicons.eot');
	src: url('../fonts/bpicons/bpicons.eot?#iefix') format('embedded-opentype'), url('../fonts/bpicons/bpicons.woff') format('woff'), url('../fonts/bpicons/bpicons.ttf') format('truetype'), url('../fonts/bpicons/bpicons.svg#bpicons') format('svg');
}/* Made with http://icomoon.io/ */


/* Resets */

*,
*:after,
*:before {
	box-sizing: border-box;
}


/* Helper classes */

.cf:before,
.cf:after {
	content: ' ';
	display: table;
}

.cf:after {
	clear: both;
}


/* Main styles */

h2{
    display: block;
    font-size: 28px;
    margin: 0.7em 0;
    font-weight: bold;
    color: #1bc8b0;
}

h4 {
    display: inline-block;
    font-size: 18px;
    margin: 0.5em 0 ;
    font-weight: bold;
}

body {
	font-family: 'Segoe UI', 'Roboto', arial, sans-serif;
	overflow: hidden;
	margin: 0;
	color: #000000;
	background: rgba(247,247,247,0.2);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	text-decoration: none;
	color: #fff;
	outline: none;
}

a:hover {
	color: #ddd;
}


.container {
	overflow-y: auto;
	height: 100vh;
}

#popup {
    display:none;
    position:absolute;
    margin:0 auto;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 50px 2px #000;
    z-index: 9999;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.4);
}

.password {
    position:absolute; 
    margin:auto; 
    top:50%; 
    left:50%; 
    transform: translate(-50%, -50%); 
    width:30%; 
    border: 3px solid black; 
    padding: 10px;
    background-color: black;
    box-shadow: 0px 0px 50px 2px #000;
    font-size:200%;
    text-align:center;
    font-weight:500;
}

.imagebutton{
    text-align: right;
    padding: 1em 3em 2em 0;
}

.content_title{
    padding: 2% 5% 1% 5%;
    color: #282828;
    font-weight: 500;
    margin-left:10px;
    cursor:context-menu;
    line-height: 25px;
}

.listorder{
    list-style-type: decimal;
}

.listorder a{
    text-decoration:underline;
    color: blue;
    outline: none;
}

.arrow{
    float: right;
    margin: 0.5em 0;
    font-size: 20px;
    width:5%;
}

.guideheader{
    display: inline-block;
    width: 95%;
}

.guideheader:hover {
    cursor:pointer;
}

.imagebutton button {
    background-color: #f1f0f0;
    color: #3948a4 ;
    line-height: normal;
    font-size: 15px;
    font-weight: 600;
    padding: 0.5em 1em 0.5em 1em;
    cursor:pointer;
    border:none;
    outline: 0;
}

.imagebutton button:hover {
    background-color: #d4d4d4;
    color: #1bc8b0;
    //border: 1px solid #1bc8b0;
}

.imagebutton .buttonactive{
    background-color: #d4d4d4;
    color: #1bc8b0;
}

.submitbutton button {
    background-color: #f1f0f0;
    color: #3948a4 ;
    line-height: normal;
    font-size: 15px;
    font-weight: 600;
    padding: 0.5em 1em 0.5em 1em;
    cursor:pointer;
    border:none;
    outline: 0;
}

.submitbutton button:hover {
    background-color: #d4d4d4;
    color: #1bc8b0;
    //border: 1px solid #1bc8b0;
}

/* Modal (image pop out) */

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    padding-bottom: 50px;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fdfdfd;
    padding: 10px 0;
    height: 2.5em;
    font-weight: 600;
    font-size: 20px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

#caption:hover {
    cursor: context-menu;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #1bc8b0;
    text-decoration: none;
    cursor: pointer;
}

.dl {
    position: fixed;
    bottom: 50px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.dl:hover,
.dl:focus {
    color: #1bc8b0;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}





/* Blueprint header */

.bp-header {
	display: -webkit-flex;
	display: flex;
}

.bp-header__main {
	margin: 0 0 0 auto;
	padding: 2em 3em 0;
	text-align: right;
        
}

.bp-header__title {
        font-family: 'Pacifico', cursive;
	font-size: 1.5em;
	font-weight: normal;
	line-height: 1.3;
	margin: 0.25em 0 0;
        text-transform: none;
        color: #3948a4;
}

.bp-header__present {
	font-size: 0.75em;
	font-weight: 700;
	position: relative;
	z-index: 100;
	display: block;
	margin: 0 -8px 0 0;
	padding: 0 0 0.6em 0;
	text-indent: 3px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #5c5edc;
}

.bp-tooltip:after {
	position: relative;
	top: -8px;
	left: -8px;
	display: inline-block;
	width: 0;
	height: 0;
}

.bp-tooltip:hover:before {
	content: attr(data-content);
	font-size: 110%;
	font-weight: 700;
	line-height: 1.2;
	position: absolute;
	top: 1.5em;
	right: 0;
	width: 50vw;
	padding: 0.8em 1em;
	text-align: right;
	text-indent: 0;
	letter-spacing: 0;
	text-transform: none;
	color: #fff;
	background: #5c5edc;
}

.tooltip {
    text-decoration:none;
    position:relative;
}
.tooltip span {
    display:none;
}
.tooltip:hover span {
    display: block;
    position: fixed;
    overflow: hidden;
    /* border: #ded5d5 1px solid; */
    background-color: rgba(18, 18, 19, 0.80);
    padding: 0.5em;
    max-width: 200px;
    min-width: 20px;
    color: white;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    z-index:1000;
}


.bp-nav {
	margin: 0.5em 0 0 auto;
	text-align: right;
}

.bp-nav__item {
	position: relative;
	display: inline-block;
	width: 2.5em;
	height: 2.5em;
	margin: 0 0.1em;
	text-align: left;
	border-radius: 50%;
}

.bp-nav__item > span {
	display: none;
}

.bp-nav__item:hover:before {
	content: attr(data-info);
	font-size: 0.85em;
	font-weight: bold;
	position: absolute;
	top: 120%;
	right: 0;
	width: 600%;
	text-align: right;
	pointer-events: none;
	color: #595a5f;
}

.bp-nav__item:hover {
	background: #5c5edc;
}

.bp-icon:after {
	font-family: 'bpicons';
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	text-align: center;
	text-transform: none;
	color: #5c5edc;
	-webkit-font-smoothing: antialiased;
	speak: none;
}

.bp-nav .bp-icon:after {
	line-height: 2.4;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-indent: 0;
}

.bp-nav a:hover:after {
	color: #fff;
}

.bp-icon--next:after {
	content: '\e000';
}

.bp-icon--drop:after {
	content: '\e001';
}

.bp-icon--archive:after {
	content: '\e002';
}

.bp-icon--about:after {
	content: '\e003';
}

.bp-icon--prev:after {
	content: '\e004';
}

.dummy-logo {
	position: fixed;
	top: 0;
	left: 0;
	width: 300px;
	height: 120px;
	padding: 2em 0 0 0;
	text-align: center;
	color: #3b3d4a;
	background: #ededed; /*#1c1d22 #da6262;*/
}

.dummy-icon {
	font-size: 4em;
}

.dummy-heading {
	font-size: 0.75em;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.content {
	position: relative;
	min-height: 300px;
	margin: 70px 0 0 300px;
        font-size:15px;
}

.content--loading {
	background: url(../img/loading.svg) no-repeat 50% 50%;
}

.products {
	margin: 0;
	padding: 1% 5% 5% 5%;
	//text-align: center;
}

.product {
	display: inline-table;
	width: 150px;
	height: 150px;
	margin: 10px;
	border-radius: 5px;
	background: #ececec;
        text-align: center;
}

li.product:hover {
	background: #d4d4d4;
        cursor:pointer;
}

li.product:hover .info_frame{
        color: #1bc8b0;
}   

li.product .dlbutton{
        display:none;
        text-align:right;
        padding:0 1em 0.5em 1em;
} 

li.product:hover .dlbutton{
        display:block;
} 

.product .foodicon {
	font-size:1em;
	line-height: 190px;
	color: #3b3d4a;
}

.product_video {
	display: inline-table;
	width: 400px;
	height: 400px;
	margin: 10px 20px;
	border-radius: 5px;
}

.video_title{
        font-size: 20px;
        color: black;
        line-height: 50px;
        text-align: center;
        font-weight: 500;
        cursor: context-menu;
}

.video_info{
    font-size: 15px;
    color: #696666;
    font-weight: 500;
    cursor: context-menu;
}

.info {
	font-size: 0.8em;
	font-weight: bold;
	//padding: 20vh 1em 0;
	text-align: center;
	color: #47484c;
        height:30px;
}

.info_frame {
	font-size: 13px;
	font-weight: 600;
	padding: 0px 5px 5px 5px;
	text-align: center;
	color: #47484c;
        height:60px;
}


body #cdawrap {
	top: auto;
	bottom: 15px;
	background: rgba(0, 0, 0, 0.1);
}

body #cdawrap .carbon-text {
	color: #505158;
}

body #cdawrap a.carbon-poweredby {
	color: #7883c4;
}

body #cdawrap a:hover.carbon-poweredby {
	color: #fff;
}

  
  .footer{
      position: fixed;
    bottom: 0;
    width: 80%;
    height: 60px;
    border-bottom: 2px solid #ebecec;
    z-index: 1;
    text-align: center;
    color: grey;
    background-color: white;
  }
  
  

@media screen and (max-width: 985px) {
	.bp-header {
		padding-top: 3em;
	}
	.bp-header__main,
	.bp-nav {
		width: 100%;
		text-align: center;
	}
	.dummy-logo {
		display: none;
	}
	.content {
		margin: 70px 0 0 0;
	}
        
        /*.content .contents{
                padding: 0em 1em 2em 1em;
                font-size:16px
        }*/
        
        .content h1 {
            font-size:1.5em;
        }
        
        .content .imagebutton {
                padding: 2em 1em 2em 0;
        }
        
	body,
	.container {
		height: auto;
		overflow: auto;
	}
	
	.footer {
	    width:100%;
	} 
        
}


h1 {
    display: block;
    font-size: 2.5em;
    margin-top: 2em;
    text-align: center;
}

.contents{
    color:#282828;
    font-size:15px;
    padding:0em 5em 2em 4em;
    cursor:context-menu;
}

/***********Form************/

.DVform .control {
    position: relative;
}

.DVform label{
    font-family: inherit;
    text-align: right;
    padding: 0 2em 0 1em; 
    width: 20em;
    display: inline-block;
    color:#3948a4;
}

.DVform .feedback-input {
	color:#3c3c3c;
	font-family: inherit;
        font-weight:500;
	font-size: 18px;
	border-radius: 3px;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 7px 7px 7px 45px;
	//margin-bottom: 10px;
	width:20em;
	box-sizing: border-box;
	border: 1px solid #bfbbbb;
}

.DVform .feedback-input:focus {
	color:#1bc8b0;
	border: 1px solid black;
        outline: none;
}

.DVform .feedback-input:disabled {
	background-color:#e6e6e6;
}

/**********Icons***********/

.DVform .input-icon {
    background-image: url('../Images/email.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: 45px;
    height: 45px;
    margin: -3px 0 0px -20px;
    //z-index: 1;
    position: absolute;
}

.DVform .input-icon2 {
    background-image: url('../Images/username.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: 45px;
    height: 45px;
    margin: -3px 0 0px -20px;
    //z-index: 1;
    position: absolute;
}

.DVform .input-icon3 {
    background-image: url('../Images/password.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: 45px;
    height: 45px;
    margin: -3px 0 0px -20px;
    //z-index: 1;
    position: absolute;
}

.DVform .input-icon4 {
    //background-image: url('../Images/password.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    width: 45px;
    height: 45px;
    margin: -1px 0 0px -20px;
    //z-index: 1;
    position: absolute;
}

img {
  opacity: 1;
  transition: opacity 0.3s;
}

/*img[data-src] {
  opacity: 0;
}*/

.success{
    color: black;
    text-align: left;
}

input[type="search"] {
    border-radius: 0;
    border: none;
    border: solid 2px;
    color: black;
    outline: 0;
    padding: 0 1em;
    text-decoration: none;
    border-color: #b1b1b4;
    line-height: 2.5em;
    margin-left: 10px;
    width:20em;
    height:40px;
}

input[type="search"]:hover {
    border-color: #1bc8b0;
}

.searchbutton button {
    width: 50px;
    height: 40px;
    border: 2px solid #b1b1b4;
    background-color: #f5f5f5;
    outline: 0;
    border-left: none;
    color: #c3c3c3; //#3948a4;
}

input[type="search"]:hover + button {
    border-color:#1bc8b0;
    color:white;
    background-color: #1bc8b0;
}

.searchbutton button:hover {
    border-color:#1bc8b0;
    color:white;
    background-color: #1bc8b0;
}


#showRecord {
    color:grey;
    display: inline-block;
    margin-left: 15px;
    line-height: 2.5em;
}

/************Menu Icon********/
.Icon_Home{
    background: url('../Images/menu/home.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Home,
.menu__link:hover .Icon_Home{
    background: url("../Images/menu/home.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Template{
    background: url('../Images/menu/template.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Template,
.menu__link:hover .Icon_Template{
    background: url("../Images/menu/template.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Sample{
    background: url('../Images/menu/sample.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Sample,
.menu__link:hover .Icon_Sample{
    background: url("../Images/menu/sample.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Image{
    background: url('../Images/menu/image.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Image,
.menu__link:hover .Icon_Image{
    background: url("../Images/menu/image.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Video{
    background: url('../Images/menu/video.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Video,
.menu__link:hover .Icon_Video{
    background: url("../Images/menu/video.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Guidelines{
    background: url('../Images/menu/guidelines.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Guidelines,
.menu__link:hover .Icon_Guidelines{
    background: url("../Images/menu/guidelines.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Timelines{
    background: url('../Images/menu/timeline.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Timelines,
.menu__link:hover .Icon_Timelines{
    background: url("../Images/menu/timeline.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Ratecard{
    background: url('../Images/menu/ratecard.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Ratecard,
.menu__link:hover .Icon_Ratecard{
    background: url("../Images/menu/ratecard.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Setting{
    background: url('../Images/menu/setting.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_Setting,
.menu__link:hover .Icon_Setting{
    background: url("../Images/menu/setting.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_CVPhoto{
    background: url('../Images/menu/CVphoto.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__link--current .Icon_CVPhoto,
.menu__link:hover .Icon_CVPhoto{
    background: url("../Images/menu/CVphoto.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.toprightbar a:hover .Icon_Setting,
.dropdown-menu a:hover .Icon_Setting{
    background: url("../Images/menu/setting_active.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Logout{
    background: url('../Images/menu/logout.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.toprightbar a:hover .Icon_Logout,
.dropdown-menu a:hover .Icon_Logout{
    background: url("../Images/menu/logout_active.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.Icon_Email{
    background: url('../Images/menu/email_contact.png');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.toprightbar a:hover .Icon_Email,
.dropdown-menu a:hover .Icon_Email{
    background: url("../Images/menu/email_contact_active.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    vertical-align: middle;
    margin-right: 8%;
    height:30px;
    width:30px;
    display: inline-block;
}

.menu__breadcrumbs .Icon_Template,
.menu__breadcrumbs .Icon_Sample,
.menu__breadcrumbs .Icon_Image,
.menu__breadcrumbs .Icon_Video,
.menu__breadcrumbs .Icon_Guidelines,
.menu__breadcrumbs .Icon_Timelines,
.menu__breadcrumbs .Icon_Ratecard,
.menu__breadcrumbs .Icon_Setting,
.menu__breadcrumbs .Icon_Email,
.menu__breadcrumbs .Icon_Logout{
    display:none;
}

.navbar {
  //overflow: hidden;
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  height:60px;
  //border-bottom: 2px solid #ebecec;
      z-index: 1;
      padding-left: 80px;
      box-shadow: 0px 1px 10px #999;
}

.navbar a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 17px;
}

.dropdown-menu img,
.toprightbar img,
.nav img{
    vertical-align:middle;
}


.toprightbar{
    float:right;
    padding-right: 1em;
    margin-top: 5px;
}

.toprightbar2{
    float:right;
    padding-right: 1em;
    margin-top: 10px;
}

.toprightbar a{
    font-weight: 500;
    color: grey;
    /*font-family: "Comic Sans MS", cursive, sans-serif;*/
    cursor:pointer;
    padding: 10px;
}

.main {
  padding: 16px;
  margin-top: 30px;
}

#togglebutton{
    font-size: 1.5em;
    top: 0.2em;
    left: 1em;
    color: #3948a4;
    position: absolute;
    cursor:pointer;
}

#togglebutton:hover{
    color: #1bc8b0;
}


.dropdown-menu {
    display:none;
    background-color: #f5f5f5;
    position: fixed;
    width: 200px;
    right: 10px;
    //top: 65px;
    box-shadow: 0px 5px 15px #a7a5a5;
}

.dropdown-menu a {
    color:#3948a4;
    font-size: inherit;
    font-weight: 500;
    width: 100%;
    text-align: left;
}

.dropdown-menu a:hover {
    color:#1bc8b0;
}

.toprightbar2 div:active > .dropdown-menu,
.toprightbar2 div:hover > .dropdown-menu{
    display:block;
}

/**********Profile Pic***************/

#imageUpload{
    //display: none;
}

#profileImage{
    //cursor: pointer;
}

#profile-container {
    width: 45px;
    height: 45px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

#profile-container img {
    width: 45px;
    height: 45px;
}


/******Slideshow*********/
.bannercenter {
    width: 100%;
    background-size: 100% 100%;
    overflow: hidden;
    height: 100vh;
    position: fixed;
    margin-top: 70px;
    padding: 0 17.5% 0 17.5%;
}

.slider {
    max-width: 2000px;
    height: 100vh;
    margin: 0px 0px 0px 0px;
    position: relative;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
}

/* Next & previous buttons */
        
.nextbutton{
    width: 100%;
    margin-top: 0px;
    padding: 0 10% 0 10%;
    overflow: hidden;
    height: 100vh;
    position: fixed;
    margin-top: 70px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 16px;
    margin-top: 250px;
    color: #696666;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 5px;
    /*user-select: none;*/
}

/* Position the "next button" to the right */
.prev {
    left: 100px;
}

.next {
    right: 100px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color:white;
}

/* Caption text */
/*.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}*/

/* Number text (1/3 etc) */
/*.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}*/

/* The dots/bullets/indicators */
/*.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}*/

/* Fading animation */
.fade {
    -webkit-animation-name: fade ;
    -webkit-animation-duration: 4s ;
    animation-name: fade ;
    animation-duration: 4s ;
    -o-animation-name: fade ;
    -o-animation-duration: 4s ;
    -ms-animation-name: fade ;
    -ms-animation-duration: 4s ;
    -moz-animation-name: fade ;
    -moz-animation-duration: 4s ;
}


/*********Video*************/

#video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

#video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/***********Image Preview for Templates***********/

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
.prev_slideshow, .next_slideshow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next_slideshow {
    right: 10px;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev_slideshow:hover, .next_slideshow:hover {
    background-color: rgba(0,0,0,0.8);
}
            
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade1 {
    -webkit-animation-name: fade1;
    -webkit-animation-duration: 1.5s;
    animation-name: fade1;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade1 {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade1 {
    from {opacity: .4} 
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, {font-size: 11px}
}
              
.info_frame div {
    display:none;
}

.info_frame:hover div {
    display: block;
    position: fixed;
    overflow: hidden;
    /* border: #ded5d5 1px solid; */
    background-color: rgba(18, 18, 19, 0.80);
    padding: 0.5em;
    max-width: 200px;
    min-width: 20px;
    color: white;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    z-index:1000;
}
/*****************************************/

@-webkit-keyframes fade {
    0%   {opacity: 0}
    10% { opacity: 1}
    80% { opacity: 1}
    100% { opacity: 0}
}

@keyframes fade {
    0%   {opacity: 0}
    10% { opacity: 1}
    80% { opacity: 1}
    100% { opacity: 0}
}

@media screen and (max-width: 1350px) {
    .prev, .next {
        margin-top: 150px;
    }
}

@media screen and (max-width: 1108px) {
    
    .DVform label{
        display:block;
        text-align:left;
        padding: 0 0 10px 0;
    }
}

@media screen and (max-width: 950px) {
    .prev, .next {
        margin-top: 100px;
    }
    
    .prev {
        left: 50px;
    }

    .next {
        right: 50px;
    }
}

@media screen and (min-width: 700px) {
    
    .toprightbar2{
        display:none;
    }
}

@media screen and (max-width: 700px) {
    
    .toprightbar{
        display:none;
    }
    
    .toprightbar2{
        display:block;
    }
    
}


@media screen and (max-width: 650px) {
    .prev, .next {
        margin-top: 50px;
    }
    
    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }
}


@media screen and (max-width: 488px) {
    .products{
        text-align:center;
    }
    
    #togglebutton{
        left: 0.5em;
    }
    
    .navbar{
        padding-left: 60px;
    }
    
    .contents {
        padding: 0em 2em 2em 2.5em;
    }
    
    .DVform .feedback-input {
        font-size: 16px;
        width:100%;
    }
}

@media screen and (max-width: 377px) {
    
    input[type="search"] {
        width:15em;
    }
}

.divactionmodal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding: 80px 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.divactionmodal-content-header{
    background-color: #fefefe;
    margin: auto;
    padding-left: 1%;
    padding-right: 1%;
    padding-top: 1px;
    width: 50%;
    height: 30px;
    text-align: right;
}


.divactionmodal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 2%;
    /*border: 1px solid #888;*/
    width: 50%;
    overflow-y: auto;
    height: 80%;
}

#image-container {
    max-width: 500px;
  }
  
  #image {
    max-width: 100%;
    max-height: 100%;
  }
  
  #table-info table, #table-info td{
      border: 1px solid black;
      font-size:small;
  }
      
  #table-info table{
      width:500px;
      border-collapse: collapse;
      border-spacing : 0;
  }
  
  #table-info td{
      padding:10px;
  }


  table {
    caption-side: bottom;
    border-collapse: collapse;
  }

  .table-info {
    --bs-table-color: #000;
    --bs-table-bg: #d1f3fa;
    --bs-table-border-color: #bcdbe1;
    --bs-table-striped-bg: #c7e7ee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcdbe1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1e1e7;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
  }

  .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
  }
  
  .row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }

  .col-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .text-center {
    text-align: center !important;
  }

  .mt-1 {
    margin-top: 0.25rem !important;
  }

  .mb-0 {
    margin-bottom: 0 !important;
  }

  .text-secondary {
    color: #8392AB !important;
  }

  .form-control {
    border: none;
    border: 1px solid #ccc;
    border-radius: 4px; }
    .form-control:active, .form-control:focus {
      outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
      box-shadow: none;
      border-color: #000; }
  
  .col-form-label {
    color: #000; }
  
  .btn, .form-control, .custom-select {
    height: 35px; }
  
  .custom-select:active, .custom-select:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-color: #000; }

    .btn {
        color: #fff;
        border: none;
        border-radius: 4px !important;
        -webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1) !important;
        -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1) !important;
        box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1) !important; }
        .btn:hover {
          color: #fff; }
        .btn:active, .btn:focus {
          outline: none;
          -webkit-box-shadow: none;
          box-shadow: none; }
      
      .box {
        padding: 13px;
        background: #fff;
        -webkit-box-shadow: -20px 20px 0px 0 rgba(0, 0, 0, 0.08);
         -moz-box-shadow: -20px 20px 0px 0 rgba(0, 0, 0, 0.08);
        box-shadow: -20px 20px 0px 0 rgba(0, 0, 0, 0.08); }
        .box h3 {
          font-size: 12px;
          margin-bottom: 15px;
          text-align: center; }
      
      label.error {
        font-size: 12px;
        color: red; }
      
      #message {
        resize: vertical; }
      
      #form-message-warning, #form-message-success {
        display: none; }
      
      #form-message-warning {
        color: #B90B0B; }
      
      #form-message-success {
        color: #55A44E;
        font-size: 18px;
        font-weight: bold;
        text-align: center; }
      
      .submitting {
        text-align: center;
        float: left;
        width: 100%;
        padding: 10px 0;
        display: none;
        font-weight: bold;
        font-size: 12px;
        color: #000; }
      
  
  