.iframe_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
 /*opacity: 0;*/
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInholder {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }

  100% {
    background-color: rgba(0, 0, 0, .6);
  }
}

@keyframes fadeInholder {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }

  100% {
   background-color: rgba(0, 0, 0, .6);
  }
}

.fadeInHolder {
  -webkit-animation-name: fadeInholder;
  animation-name: fadeInholder;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.iframe-progress-bar {
	background-color: #EBE8E8;
	width: 120px;
	height: 5px;
	position: absolute;
	left: 0;
	bottom: 16px;
}

.iframe-progress-bar-value {
	background-color: #B7B7B7;
	height: 5px;
}

.iframe-progress-bar-status {
	position: absolute;
	right: 15px;
	bottom: 12px;
}

.spinner {
  margin: 100px auto 0;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: silver;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

.spinner-text {
	font-size: 20px;
	margin-top: 15px;
	color: silver;
	font-weight: bolder;
}

.wf-active .spinner-text {
	font-family: 'Lato' !important;
}

.spinner-container {
	text-align: center;
}

#iframe-popup {
	font-family: 'Lato';
	position: absolute;
	width: 350px;
	height: 150px;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: white;
	z-index: 4000;
	-webkit-box-shadow: 4px 4px 21px 0px rgba(50, 50, 50, 1);
	-moz-box-shadow:    4px 4px 21px 0px rgba(50, 50, 50, 1);
	box-shadow:         4px 4px 21px 0px rgba(50, 50, 50, 1);
	display: none;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	overflow: hidden;
}

/* internet explorer */
@media screen and (min-width:0\0) {
	#iframe-popup {
		box-shadow: 4px 4px 41px 0px rgba(50, 50, 50, 1);
	}
}

#iframe-popup-title {
	background-color: white;
	font-weight: bolder;
	padding: 8px;
	padding-left: 10px;
	font-size: 18px;
}

#iframe-popup-content {
	padding: 10px;
	font-size: 14px;
	line-height: 20px;
	height: 85%;
	overflow: auto;
	text-align: center;
}

#iframe-popup-close {
	position: absolute;
	right: 10px;
	top: 11px;
}

#iframe-popup-close a {
	color: gray;
}
.no_touch .btn_close_iframe i.fa-times-circle:hover {
	color: #D0021B;
}
.btn_close_iframe i.fa-times-circle {
	color: gray;
}
.no_touch #iframe-popup-close a:hover {
	color: black;
	background-color: inherit;
}

.iframe_popup_error_sign {
	color: #D10000;
}

.iframe_popup_error_message {
	margin-top: 5px;
}

#sm_error_bg.dashboardpopup {
	background-color: #000;
	-webkit-animation: dashboardpopup-fade-in 1s forwards;
	-moz-animation: dashboardpopup-fade-in 1s forwards;
	animation: dashboardpopup-fade-in 1s forwards;
}

#sm_error_bg.dashboardpopup-off {
	background-color: #000;
	-webkit-animation: dashboardpopup-fade-out 1s forwards;
	-moz-animation: dashboardpopup-fade-out 1s forwards;
	animation: dashboardpopup-fade-out 1s forwards;
}

@keyframes dashboardpopup-fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0.7;
	}
}

@-webkit-keyframes dashboardpopup-fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0.7;
	}
}

@-webkit-keyframes dashboardpopup-fade-out {
	0% {
		opacity: 0.7;
		visibility: visible;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

@keyframes dashboardpopup-fade-out {
	0% {
		opacity: 0.7;
		visibility: visible;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

#iframe-messages {
	-webkit-box-shadow: -4px 0px 19px 0px rgba(0,0,0,0.29);
	-moz-box-shadow: -4px 0px 19px 0px rgba(0,0,0,0.29);
	box-shadow: -4px 0px 19px 0px rgba(0,0,0,0.29);
	z-index: 1001; 
	width: 40%;
	height: 100%;
	background-color: #FFFFFF;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	overflow: hidden;
	display: none;
	min-width: 700px;
}

#iframe-holder {
	z-index: 1000; 
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	position: fixed;
	top: 0;
	right: 0;
	padding: 0;
	overflow: hidden;
	display: none;
	outline: none;
}
#iframe-messages-scrollback {
    overflow-y: auto;
    height: 99%;
    margin-top: 65px;
}

#iframe-messages-container {
	padding: 0;
	float: left;
	width: 100%;
}

#iframe-messages h1 {
    margin: 0;
    text-align: left;
    float: left;
}

#iframe-messages div.entry {
	font-size: 14px;
	padding: 10px 0 10px 0;
	overflow: hidden; 
	border-bottom: 1px dotted silver;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#iframe-messages div.entry div.entryline {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: block;
}

#iframe-messages div.entry:last-child {
	border-bottom: 0px;
}

#iframe-messages div.entrydate {
	color: gray;
	font-size: 12px;
}

.iframe-messages-buttons {
	position: absolute;
	right: 0px;
	top: 0px;
}

.iframe-messages-buttons .iframe-button {
	padding: 18px;
	float: right;
}

.iframe-button > a{
	color:gray;
	font-size: 1.75em;
	line-height: 1.25;
}

.no_touch .iframe-button > a:hover{
	color: black;
	background-color: inherit;
	text-decoration: none;
}

.no_touch #iframe-messages-close a:hover {
	color: #D0021B;
}

.no_touch #iframe-messages-tooltip a:hover {
	color: green;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/********************************************/
.custom_iframe {
	background: #FFFFFF;
	border: none;
	overflow: hidden;
}
.resizable_mask {
    position:absolute;
    top:0;
    left:0;
    margin:0;
    padding:0;
    width:100%;
    height:100%;
    display:none;
}
h1#iframe-messages-header{
	padding: 20px 0 20px 20px;
    font-size: 1.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}
.iframe-header-container {
    top: 0;
    position: absolute;
    left: 0;
	width: 100%;
	background-color: #F1F1F1;
	height: 65px;
	overflow: hidden;
}

#iframe_titles {
	float:left;
	width: calc(100% - 50px);
	display: flex;
	flex-direction: row;
}

.triangle {
    width: 0;
    height: 0;
    border-top: 33px solid transparent;
    border-bottom: 33px solid transparent;
    border-left: 25px solid #E7E7E7;
    float: left;
    position: relative;
    z-index: 100;
}

.triangle.border {
	margin-left: -24px;
	border-left-color: #B3B4B6;
	z-index: 10;
	background: transparent;
	border-right: 0px;
}

.iframe-header-es {
	min-width: 115px;
    background: #E7E7E7;
    float: left;
    height: 65px;
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
    padding-top: 20px;
    padding-left: 1em;
    padding-right: 1em;
    line-height: 1.28571429em;
}

.no_touch .iframe_pre_title:hover > .iframe-header-es {
	background-color: #ccc;
}

.no_touch .iframe_pre_title:hover > .triangle {
	border-left-color: #ccc;
}

.iframe_pre_title.sub_title {
	/*width: 50%;*/
	float:left;
}

.sub_title_holder {
    float: left;
}

.iframe_pre_title.sub_title .iframe-header-es {
	max-width: 230px;
	/*min-width: 50px;*/
	min-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100% - 1px);
    text-align: left;
}

.iframe_pre_title.sub_title .iframe-header-es {
	margin-left: -25px;
	padding-left: 2em;
}

