﻿
/* ************ ShortCodes-Lightbox ************* */


/*lightbox*/
.lightbox-box .title{
	text-align:center;
	display:block;
	font-size:18px;
	color:#424242;
	background-color:#fbfbfb;
	margin:0;
	padding:25px 10px;
	border:1px solid #e5e5e5;
	border-top:none;
}

.lightbox-box02{
	background-color:#f5f5f5;
	padding:23px 10px 30px;
	margin:0 15px 15px;
	text-align:center;
}
.lightbox-box02 > h4{
	font-size:16px;
	color:#424242;
	margin:0 0 15px;
	font-weight:normal;
}
.lightbox-box02 .modal{
	text-align:left;
}



.modal-body .nav.nav-tabs{
	margin-left:0;
}

.color-demo .modal-header,
.color-demo .modal-content{
	padding:4px 3px;
	margin:0px 0px 5px;
	font-size:12px;
	white-space:nowrap;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;
    -webkit-box-shadow:none;
    box-shadow:none;
	border:none;
}


/*Communal modal*/

.modal-dialog{
	height: 100%;
	margin: 0px auto;
	white-space: nowrap;
}
.modal-dialog:after{
	content: "";
	height: 100%;
	display:inline-block;
	vertical-align: middle;
}
.modal-dialog > .modal-content{
	white-space: normal;
	display:inline-block;
	width: 100%;
	vertical-align: middle;
	margin: 30px 0;
}
.modal-backdrop.in{
	opacity:0.8;
	filter: alpha(opacity=80);
}
.dg-modal .modal-title{
	font-size:18px;
	color:#424242;
	font-weight:bold;
}
.dg-modal .modal-header{
	padding: 15px 20px;
	border-bottom:none;
	position:relative;
}
.dg-modal .modal-header:after{
	content:"";
	position:absolute;
	top:100%;
	left:20px;
	right:20px;
	border-bottom:1px solid #dcdcdc;
	display:block;	
}

.dg-modal .close{
	width:22px;
	height:22px;
	line-height:18px;
	display:block;
	opacity:1;
	color:#a4a4a4;
	margin-top:2px;
	top: -28px;
	right: -5px;
	position:absolute;
}
.dg-modal .close span{
	vertical-align:top;
	font-weight: normal;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:24px;
	text-shadow:none;
	color:#b7b7b7;
}
.dg-modal .modal-content{
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
.dg-modal .modal-header{
	border-radius:5px 5px 0 0;
	-moz-border-radius:5px 5px 0 0;
	-webkit-border-radius:5px 5px 0 0;
	margin: -1px 0px 0;
}
.dg-modal .modal-body{
	padding:20px;
}
.dg-modal .modal-footer{
	border:none;
	padding:10px 20px 20px;
}
.dg-modal .modal-footer .btn{
	background:#20a3f0;
	color:#FFF;
	border:none;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
}
.dg-modal .modal-footer .btn:hover{
	background-color:#333
}


.dg-modal .modal-header[class*="bg-"]{
	color:#FFF;
}
.dg-modal .modal-header[class*="bg-"]:after{
	content:normal;
}
.dg-modal .modal-header[class*="bg-"] h4{
	color:#FFF;
}
.dg-modal .modal-header[class*="bg-"] .close{
	color:#FFF;
	border-color:#FFF;
}

.dg-modal .modal-content[class*="bg-"],
.dg-modal .modal-content[class*="bg-"] h4{
	color:#FFF;
	background:transparent;
}
.dg-modal .modal-content[class*="bg-"] .close{
	color:#FFF;
	border-color:#FFF;
}
.dg-modal .modal-content[class*="bg-"] .btn-close {
	background-color:rgba(0,0,0,.5);
}
.dg-modal .modal-content[class*="bg-"] .modal-header:after{
	border-bottom-color:rgba(255,255,255,.5)
}



/*Animate modal*/

.dg-modal.modal-slide-in .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: scale(.7);
	-ms-transform: scale(.7);
	-o-transform: scale(.7);
	transform: scale(.7)
}
.dg-modal.modal-slide-in.in .modal-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.dg-modal.modal-slide-out .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	-o-transform: scale(1.3);
	transform: scale(1.3)
}
.dg-modal.modal-slide-out.in .modal-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.dg-modal.modal-slide-up .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: translate(0, -20%);
	-ms-transform: translate(0, -20%);
	-o-transform: translate(0, -20%);
	transform: translate(0, -20%)
}
.dg-modal.modal-slide-down .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: translate(0, 20%);
	-ms-transform: translate(0, 20%);
	-o-transform: translate(0, 20%);
	transform: translate(0, 20%)
}
.dg-modal.modal-slide-left .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: translate(-20%, 0);
	-ms-transform: translate(-20%, 0);
	-o-transform: translate(-20%, 0);
	transform: translate(-20%, 0)
}
.dg-modal.modal-slide-right .modal-dialog {
	opacity: 0;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: translate(20%, 0);
	-ms-transform: translate(20%, 0);
	-o-transform: translate(20%, 0);
	transform: translate(20%, 0)
}


.dg-modal.modal-slide-up.in .modal-dialog ,
.dg-modal.modal-slide-right.in .modal-dialog ,
.dg-modal.modal-slide-down.in .modal-dialog ,
.dg-modal.modal-slide-left.in .modal-dialog {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.dg-modal.modal-rotate-left .modal-dialog {
    -webkit-transform: translateX(-25%) rotate(-10deg) scale(.9);
    -ms-transform: translateX(-25%) rotate(-10deg) scale(.9);
    transform: translateX(-25%) rotate(-10deg) scale(.9);
	-webkit-transform-origin:left bottom;
	-ms-transform-origin:left bottom;
	transform-origin:left bottom;
}
.dg-modal.modal-rotate-right .modal-dialog {
    -webkit-transform: translateX(25%) rotate(10deg) scale(.9);
    -ms-transform: translateX(25%) rotate(10deg) scale(.9);
    transform: translateX(25%) rotate(10deg) scale(.9);
}
.dg-modal.modal-rotate-right.in .modal-dialog, 
.dg-modal.modal-rotate-left.in .modal-dialog {
    -webkit-transform: translateX(0) rotate(0) scale(1);
    -ms-transform: translateX(0) rotate(0) scale(1);
    transform: translateX(0) rotate(0) scale(1);
}


.dg-modal.modal-3d-horizontal {
	-webkit-perspective: 1300px;
	perspective: 1300px
}
.dg-modal.modal-3d-horizontal .modal-dialog {
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	-o-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-ms-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}
.dg-modal.modal-3d-horizontal.in .modal-dialog {
	-webkit-transform: rotateY(0);
	-ms-transform: rotateY(0);
	-o-transform: rotateY(0);
	transform: rotateY(0)
}
.dg-modal.modal-3d-vertical {
	-webkit-perspective: 1300px;
	perspective: 1300px
}
.dg-modal.modal-3d-vertical .modal-dialog {
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	-webkit-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	-o-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-ms-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}
.dg-modal.modal-3d-vertical.in .modal-dialog {
	-webkit-transform: rotateX(0);
	-ms-transform: rotateX(0);
	-o-transform: rotateX(0);
	transform: rotateX(0)
}
.dg-modal.modal-3d-newspaper .modal-dialog {
	opacity: 0;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
	-webkit-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	-o-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg)
}
.dg-modal.modal-3d-newspaper.in .modal-dialog {
	opacity: 1;
	-webkit-transform: scale(1) rotate(0);
	-ms-transform: scale(1) rotate(0);
	-o-transform: scale(1) rotate(0);
	transform: scale(1) rotate(0)
}
.dg-modal.modal-3d-slit {
	-webkit-perspective: 1300px;
	perspective: 1300px
}
.dg-modal.modal-3d-slit .modal-dialog {
	opacity: 0;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform-style: preserve-3d;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}
.dg-modal.modal-3d-slit.in .modal-dialog {
	-webkit-animation-name: slit;
	-o-animation-name: slit;
	animation-name: slit;
	-webkit-animation-duration: .7s;
	-o-animation-duration: .7s;
	animation-duration: .7s;
	-webkit-animation-timing-function: ease-out;
	-o-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-fill-mode: forwards;
	-o-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}
@-webkit-keyframes slit {
	50% {
		opacity:.5;
		-webkit-transform:translateZ(-250px) rotateY(89deg);
		-ms-transform:translateZ(-250px) rotateY(89deg);
		transform:translateZ(-250px) rotateY(89deg)
	}
	100% {
		opacity:1;
		-webkit-transform:translateZ(0) rotateY(0);
		-ms-transform:translateZ(0) rotateY(0);
		transform:translateZ(0) rotateY(0)
	}
}
@-o-keyframes slit {
	50% {
		opacity:.5;
		-webkit-transform:translateZ(-250px) rotateY(89deg);
		-ms-transform:translateZ(-250px) rotateY(89deg);
		transform:translateZ(-250px) rotateY(89deg)
	}
	100% {
		opacity:1;
		-webkit-transform:translateZ(0) rotateY(0);
		-ms-transform:translateZ(0) rotateY(0);
		transform:translateZ(0) rotateY(0)
	}
}
@keyframes slit {
	50% {
		opacity:.5;
		-webkit-transform:translateZ(-250px) rotateY(89deg);
		-ms-transform:translateZ(-250px) rotateY(89deg);
		transform:translateZ(-250px) rotateY(89deg)
	}
	100% {
		opacity:1;
		-webkit-transform:translateZ(0) rotateY(0);
		-ms-transform:translateZ(0) rotateY(0);
		transform:translateZ(0) rotateY(0)
	}
}





/* **********Refresh auto modal*********** */

/* *************Modal OnLoad************** */

/*Modal-Sample-Text*/
.modal-sample-text{
padding:30px 0px 30px;
text-align:center;
}
.modal-sample-text .text-title{
	font-size:18px;
	color:#333333;
	font-weight:bold;
	margin:20px 20px 40px;
}
.modal-sample-text .text-content{
	margin:0 auto 35px;
	padding:0px 50px 35px;
	border-bottom:1px solid #eeeeee;
}

@media only screen and (max-width: 767px) {
  .modal-sample-text .text-content{
    padding:0px 25px 25px;    
  }
}


/*Modal-Subscribe modal*/
.modal-subscribe{
	text-align:center;
}
.modal-subscribe .subscribe-title{
	font-size:18px;
	color:#333333;
	font-weight:bold;
	margin:0px 20px 5px;
}
.modal-subscribe .subscribe-content{
	padding-bottom:10px;
}
.modal-subscribe .subscribe-form{
	border:1px solid #cccccc;
	height: 41px;
	position: relative;
  margin: 0px 50px 50px;
  border-radius:3px;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;
}
.modal-subscribe .subscribe-form .fa{
	position:absolute;
	background-color: #cccccc;
	width: 41px;
	height: 41px;
	line-height: 41px;
	text-align: center;
  top: -1px;
  left: 0;
}
.modal-subscribe .subscribe-form .text{
	border: none;
	background: transparent;
  position: absolute;
  left: 45px;
  right: 125px;
  top: 0px;
  height: 41px;
  line-height: 41px;
  color: #999999;
  width: 325px;
  outline: none;
}

.modal-subscribe .subscribe-form .button{
  width: 120px;
  position: absolute;
  top: -1px;
  right: 0;
  height: 41px;
  text-align: center;
  color: #FFF;
  background: #20a3f0;
  border:none;
}
@media only screen and (max-width: 767px) {
  .modal-subscribe .subscribe-form{
    margin:0 15px 15px;
  }
}


/*Modal Shop Sale*/
.modal-shopshop-sale {
  margin: 0;
}
.modal-shopshop-sale .tilte{
  font-size: 56px;
  color: #22cae3;
  font-weight: bold;
  line-height: 1.1;
  margin: 0px 0 5px;
}
.modal-shopshop-sale .date{
  font-size: 32px;
  color: #333333;
}
.modal-shopshop-sale .date:after{
  content: "";
  display: block;
  width:68px;
  border-bottom: 2px solid #424242;
  padding-bottom: 15px;
  margin-bottom: 27px;
}
.shop-sale-data {
  margin: auto auto 20px;  
}

.shop-sale-data .title{
  color: #22cae3;
}
.shop-sale-data .number{
  font-size: 54px;
  font-weight: bold;
  color: #666666;
  font-family: Arial;
  float: left;
  line-height: 1;
}
.shop-sale-data .tag{
  font-size: 31px;
  font-weight: bold;
  color: #666666;
  font-family: Arial;
  line-height: 1;
}
.shop-sale-data .off{
  font-size: 13px;
  font-weight:normal;
  color: #666666;
  font-family: Arial;
  display: inline-block;
  line-height: 1;
}
.shop-sale-data .right{
  overflow: hidden;
  float: none;
}
.modal-shopshop-sale .learn-more {
  margin:30px 0 0;
}
.modal-shopshop-sale .learn-more a, 
.modal-shopshop-sale .learn-more a:link, 
.modal-shopshop-sale .learn-more a:active, 
.modal-shopshop-sale .learn-more a:visited{
  color: #757575;
  text-decoration: underline;
}
.modal-shopshop-sale .learn-more a:hover{
  color: #20a3f0;
}

.modal-shopshop-sale .left-img{
  transform: translateX(-15px);
  -webkit-transform: translateX(-15px); 
}
@media only screen  and (max-width: 991px) {
  .modal-shopshop-sale .tilte{
    font-size: 20px;  
  }
  .modal-shopshop-sale .date{
    font-size: 16px;
    margin-bottom: 15px;
  }
  .modal-shopshop-sale .date:after{
    padding-bottom: 4px;
    margin-bottom: 10px;
  }
  .shop-sale-data .number{
    font-size: 35px;
  }
  .shop-sale-data .tag{
    font-size: 14px;  
  }
  .modal-shopshop-sale{
    padding: 20px 0;
    
  }
  .modal-shopshop-sale .learn-more{
    margin-top: 10px;
  }
  .modal-shopshop-sale .left-img{
    margin-bottom: 30px;
  }
}


/*Modal-Login-Form*/
.modal-login-form {
  display: table;
  width: 100%;
}
.modal-login-form .login-left{
  width: 213px;
  display: table-cell;
  vertical-align: middle;
  padding: 30px;
  text-align: center;
  position: relative;
}
.modal-login-form .login-left:after{
  content: "";
  position: absolute;
  background: #20a3f0;
  opacity: 0.8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal-login-form .login-left > div{
  position: relative;
  z-index: 1;
}
.modal-login-form .login-left .login-logo{
  margin-bottom: 40px;
}
.modal-login-form .login-left .login-info{
  color: #ffffff;
  font-size: 14px;
}
.modal-login-form .login-right{
  display: table-cell;
  vertical-align: middle;
  padding: 50px;
}
.modal-login-form .login-right .title{
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin: 0 0 30px;
}
.modal-login-form .login-form .text{
  background: none;
  border: 1px solid #cccccc;
  width: 100%;
  padding: 7px 5px;
  border-radius:3px;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;
  font-size: 14px;
  color: #999999;
}
.modal-login-form .login-form .form-row{
  margin-bottom: 20px;
}
.modal-login-form .login-form .password-help{
  float:right;
  margin-top:9px;
  color: #666666;
  font-size: 13px;
}
.other-login{
  border-top:1px solid #eeeeee;
  padding: 20px 50px 0;
  margin: 0px -50px;
  line-height: 30px;

}
.other-login .login-ico{
  float:right;
}
.other-login .login-ico .fa{
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  border-radius:50%;
  -moz-border-radius:50%;
  -webkit-border-radius:50%;
  margin-left: 15px;
  transition: 		background-color ease-in 200ms;
  -moz-transition: 	background-color ease-in 200ms; /* Firefox 4 */
  -webkit-transition:     background-color ease-in 200ms; /* Safari and Chrome */
  -o-transition: 		background-color ease-in 200ms; /* Opera */
  -ms-transition: 	background-color ease-in 200ms; /* IE9? */
}
.other-login .login-ico a:hover .fa{
  background-color:#333 !important;
}

@media only screen and (max-width: 767px) {
  .modal-login-form .login-right{
    padding:20px;
  }
  .modal-login-form .login-left{
    display: none;
  }
  .modal-login-form .other-login{
    margin-left: -15px;
    margin-right: -15px;
  }
}


/*Modal Video*/
.modal-video{
  text-align: center;
  padding: 30px 0px 30px;
  text-align: center;
}
.modal-video .video-title{
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin: 14px 20px 10px;
}
.modal-video .video-content{
  margin-bottom:10px;

}
.modal-video .responsive-video{
  margin:0 50px 33px;
}
.modal-video .video-link{
  padding-top: 33px;
  border-top: 1px solid #eeeeee;  
}

@media only screen and (max-width: 767px) {
  .modal-video .responsive-video{
     margin: 0 20px 30px;
  }
}


/*Modal Map*/
.modal-map{
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
  overflow: hidden;

}
.modal-map iframe{
  height: 375px;
  width: 100%;
  border:none;
  vertical-align: middle;  
}


.dg-modal.bg-turquoise-g .modal-content,
.dg-modal.header-turquoise-g .modal-header,
.list-ico3 .bg-turquoise-g,
.bg-turquoise-g,
.dropdown-menu.hover-turquoise-g a:hover,
.dropdown-menu.hover-turquoise-g>.active>a{
	background: -webkit-linear-gradient(135deg, #1de0c1, #44d2fb);
	background: -o-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: -moz-linear-gradient(135deg, #1de0c1, #44d2fb); 
	background: linear-gradient(135deg, #1de0c1, #44d2fb);
	background-color:#1de0c1;
    color: #fff;
}
.dg-modal.bg-navyblue-g .modal-content,
.dg-modal.header-navyblue-g .modal-header,
.list-ico3 .bg-navyblue-g,
.bg-navyblue-g,
.dropdown-menu.hover-navyblue-g a:hover,
.dropdown-menu.hover-navyblue-g>.active>a{
	background: -webkit-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0);
	background: -o-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: -moz-linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0); 
	background: linear-gradient(135deg, #0547f1, #02b4d0, #02b6d0 );
	background-color:#0547f1;
    color: #fff;
}
.dg-modal.bg-blue-g .modal-content,
.dg-modal.header-blue-g .modal-header,
.list-ico3 .bg-blue-g,
.bg-blue-g,
.dropdown-menu.hover-blue-g a:hover,
.dropdown-menu.hover-blue-g>.active>a{
	background: -webkit-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
	background: -o-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
	background: -moz-linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%); 
	background: linear-gradient(135deg,#0850f7 20%,#1758fe 40%, #0899f5 90%);
	background-color:#0850f7;
    color: #fff;
}
.dg-modal.bg-jewel-g .modal-content,
.dg-modal.header-jewel-g .modal-header,
.list-ico3 .bg-jewel-g,
.bg-jewel-g,
.dropdown-menu.hover-jewel-g a:hover,
.dropdown-menu.hover-jewel-g>.active>a{
	background: -webkit-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
	background: -o-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
	background: -moz-linear-gradient(135deg, #0f7936 30%, #179a47, #38965b); 
	background: linear-gradient(135deg, #0f7936 30%, #179a47, #38965b);
	background-color:#0f7936;
    color: #fff;
}
.dg-modal.bg-borland-g .modal-content,
.dg-modal.header-borland-g .modal-header,
.list-ico3 .bg-borland-g,
.bg-borland-g,
.dropdown-menu.hover-borland-g a:hover,
.dropdown-menu.hover-borland-g>.active>a{
	background: -webkit-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
	background: -o-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
	background: -moz-linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%); 
	background: linear-gradient(45deg,#1e7ad8 20%, #1ed6d8 80%);
	background-color:#1e7ad8;
    color: #fff;
}
.dg-modal.bg-primary-g .modal-content,
.dg-modal.header-primary-g .modal-header,
.list-ico3 .bg-primary-g,
.bg-primary-g,
.dropdown-menu.hover-primary-g a:hover,
.dropdown-menu.hover-primary-g>.active>a{
	background: -webkit-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
	background: -o-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
	background: -moz-linear-gradient(45deg,#0676f4 20%, #00e9fe 80%); 
	background: linear-gradient(45deg,#0676f4 20%, #00e9fe 80%);
	background-color:#0676f4;
    color: #fff;
}
.dg-modal.bg-success-g .modal-content,
.dg-modal.header-success-g .modal-header,
.list-ico3 .bg-success-g,
.bg-success-g,
.dropdown-menu.hover-success-g a:hover,
.dropdown-menu.hover-success-g>.active>a{
	background: -webkit-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
	background: -o-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
	background: -moz-linear-gradient(90deg,#1e7ad7 20%, #16a168 90%); 
	background: linear-gradient(90deg,#1e7ad7 20%, #16a168 90%);
	background-color:#1e7ad7;
    color: #fff;
}
.dg-modal.bg-info-g .modal-content,
.dg-modal.header-info-g .modal-header,
.list-ico3 .bg-info-g,
.bg-info-g,
.dropdown-menu.hover-info-g a:hover,
.dropdown-menu.hover-info-g>.active>a{
	background: -webkit-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
	background: -o-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
	background: -moz-linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%); 
	background: linear-gradient(-45deg,#00ccff 20%, #35d3d4 90%);
	background-color:#00ccff;
    color: #fff;
}
.dg-modal.bg-warning-g .modal-content,
.dg-modal.header-warning-g .modal-header,
.list-ico3 .bg-warning-g,
.bg-warning-g,
.dropdown-menu.hover-warning-g a:hover,
.dropdown-menu.hover-warning-g>.active>a{
	background: -webkit-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
	background: -o-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
	background: -moz-linear-gradient(90deg,#ff6c66 20%, #f1c442 90%); 
	background: linear-gradient(90deg,#ff6c66 20%, #f1c442 90%);
	background-color:#ff6c66;
    color: #fff;
}
.dg-modal.bg-danger-g .modal-content,
.dg-modal.header-danger-g .modal-header,
.list-ico3 .bg-danger-g,
.bg-danger-g,
.dropdown-menu.hover-danger-g a:hover,
.dropdown-menu.hover-danger-g>.active>a{
	background: -webkit-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
	background: -o-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
	background: -moz-linear-gradient(135deg,#48a9e1 20%, #c361dc 90%); 
	background: linear-gradient(135deg,#48a9e1 20%, #c361dc 90%);
	background-color:#48a9e1;
    color: #fff;
}
.dg-modal.bg-accent .modal-content,
.dg-modal.header-accent .modal-header,
.list-ico3 .bg-accent,
.bg-accent,
.dropdown-menu.hover-accent a:hover,
.dropdown-menu.hover-accent>.active>a,
.list-ico3 .bg-accent2,
.bg-accent2,
.dropdown-menu.hover-accent2 a:hover,
.dropdown-menu.hover-accent2>.active>a,
.list-ico3 .bg-accent3,
.bg-accent3,
.dropdown-menu.hover-accent3 a:hover,
.dropdown-menu.hover-accent3>.active>a,
.list-ico3 .bg-accent4,
.bg-accent4,
.dropdown-menu.hover-accent4 a:hover,
.dropdown-menu.hover-accent4>.active>a{
    color: #fff;
}