/* Modal Css */
.modal {
	font-family: 'Roboto', sans-serif;
    /* display: none; */
    position: fixed;
    z-index: 2147483648;
    padding-top: 0;
    padding-bottom: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    visibility: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal-content .modal-header h2 {
	font-size: 14px;
	font-weight: 500;
}
.modal-content .modal-header h2 label span {
    color: #8c8c8c;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.closeLogin, .close {
    color: #808080;
    float: right;
    font-size: 26px;
    font-weight: 300;
    position: absolute;
    right: 18px;
    top: 16px;
}
.closeLogin:hover, .closeLogin:focus, .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.modal-header {
    padding: 18px 25px;
    border-bottom: 2px solid #e1e1e1;
    position: relative;
}
.ew-loading-bar {
    background: #1dc379;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: -1px;
}
.modal-body {
	padding: 2px 16px;
}
.modal-body h3 {
	margin: 5px 0;
	font-size: 20px;
	font-weight: 500;
}
.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}



.ew-select-terms {
    text-align: left !important;
    display: inline-block;
    color: #000;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
    margin-bottom: 3px;
}
.ew-select-terms p {
    display: inline;
}
.ew-select-terms.error_check {
    color: #E41905;
}
.ew-select-terms input {
    width: 15px;
    height: 15px;
    padding: 0;
    line-height: inherit;
    margin: 0 12px 15px 0;
    float: left;
    position: absolute;
}
#gdpr_check .tooltip.top {
    position: absolute !important;
    background: #000;
    border-radius: 7px;
    margin: 0 0 0 0 !important;
}
#gdpr_check .tooltip.top .tooltip-inner {
    color: #fff;
    font-size: 12px;
    font-family: 'Inter UI';
    font-weight: 500;
    text-shadow: 0 2px 3px #000;
    line-height: 20px;
    padding: 5px 10px 5px 10px;
}
#gdpr_check .tooltip.top .tooltip-inner a {
    color: #a1a1ff;
}
#gdpr_check .tooltip-arrow {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #000;
    bottom: -10px !important;
    position: absolute;
    margin: 0 0 0 11px;
        display: none;
}


/* Loading bar */

.bar {
  width: 100%;
  height: 20px;
  border: 1px solid #2980b9;
  border-radius: 3px;
  background-image: 
    repeating-linear-gradient(
      -45deg,
      #2980b9,
      #2980b9 11px,
      #eee 10px,
      #eee 20px /* determines size */
    );
  background-size: 28px 28px;
  animation: move .5s linear infinite;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 0;
  }
}

/* GDPR Note Css */
.gdpr-note p {
    display: inline-block;
    width: 100%;
    text-align: left;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
    border-top: 1px solid #eaeaea;
    padding: 12px 0 0 0;
}

/* When webinar not available error css */

.ew-not-available {
    background: #fff;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 7px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),
    			0 6px 20px 0 rgba(0,0,0,0.19);
}
.ew-not-available .closeLogin, .ew-not-available .close {
    font-size: 28px
}
.ew-not-available img.svg {
    width: 75px;
    margin: 0 0 15px 0;
    padding: 0;
}
.ew-not-available h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 34px;
}