.load {
    opacity: 0.5 !important;
    position: relative;
}
.load:before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    background: url('../../images/ks/AjaxLoader.gif') 0 0 no-repeat transparent;
}
#overlay_block {
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1001;
    background-color: rgba(255, 255, 255, 0.72)
}
#overlay_transparent {
    display: block;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1051;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
/*modal*/
.modal {
  display: none;
  overflow: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: rgba(0,0,0,0.1);
}
.modal._op {
  background-color: transparent;
}
.modal .bg{
  overflow: hidden;
  overflow-y: auto;
 
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: transparent;
}
.modal-dialog {
	width: 310px;
	max-width: 600px;
	position: relative;
	overflow: hidden;
	margin: 30px auto;
}
.modal-content {
	float: left;
	width:100%;
	position: relative;
	padding:40px 20px 20px;
	background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
}
@media only screen and (min-width: 480px) {
.modal-dialog {
	width: 80%;
}
}
@media only screen and (min-width: 768px) {
.modal-content {
	padding:50px;
}
}

.modal-header {
	text-align:center;
}
.modal-header .sr-only {
	display:none;
}
.modal-content .close {
	position:absolute;
	right:15px;
	top:15px;
	width:20px;
	height:20px;
	margin:0;
	padding: 0;
	cursor: pointer;
	background: url('../../images/ks/close_btn.svg') 50% 50% no-repeat transparent;
}
.modal-title {
	margin: 0 0 0px 0;
    padding: 0;
	color: #17706E;
    font-size: 24px;
	line-height:1.3;
	text-align:center;
}
@media only screen and (min-width: 768px) {
.modal-content .close {
	right:20px;
	top:20px;
}
.modal-title {
	margin-bottom:0px;
    font-size: 50px;
}
}
.modal-body {
  float: left;
  width: 100%;
  position: relative;
  padding: 0;
}
.modal-body a {
	font-size:16px;
	color: #81B28A;
}
.modal-body p {
	font-weight: 400;
    font-size: 12px;
	margin-bottom:5px;
}
.modal-body p:last-child {
	margin-bottom:0;
}
.modal-body ._link{
	font-weight: 400;
	color: #17706E;
	text-decoration:underline;
	cursor:pointer;
}
@media only screen and (min-width: 768px) {
.modal-body p {
    font-size: 14px;
	margin-bottom:8px;
}
}

.modal-body iframe {
    width: 100%;
}
.modal-footer {
    float: left;
    display: block;
    width: 100%;
	margin-top: 30px;
	padding: 0;
	text-align: center;
}
@media only screen and (min-width: 768px) {
.modal-footer {
	margin-top: 40px;
}
}
/*END modal*/