#login-modal {
    position: fixed;
    z-index: 5;
    background: hsla(0, 0%, 100%, 0.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}
#login-modal label {
    cursor: pointer;
}
#login-modal .login-modal-wrapper {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 100%;
    max-width: 700px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
    padding: 30px 0;
}
#login-modal .closer {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    cursor: pointer;
}
#login-modal .closer::after {
  content: 'x';
  width: 24px;
  height: 24px;
  font-size: 24px;
  bottom: 10px;
  text-align: center;
  position: relative;
  left: 20%;
  top: -39%;
}
#login-modal .btb {
    padding: 0.8em 2em;
    background-color: #fff;
    color: #000;
    border: 0;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}
#login-modal #loginSubmitBtn,
#login-modal #forgotSubmitBtn {
  background: #597dda;
  color: #fff;
  padding: 0.5em 3em;
  font-weight: bold;
  font-size: 18px;
  border: 1px solid transparent;
}
#login-modal #forgotSubmitBtn:hover,
#login-modal #loginSubmitBtn:hover,
#login-modal .btb:hover {
  background: #fff;
  color: #597dda;
  border: 1px solid #597dda;
}
#login-modal #forgotSubmitBtn:focus,
#login-modal #loginSubmitBtn:focus,
#login-modal .btb:focus {
    outline: 0;
}
@media only screen and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 991px) {
    #login-modal #forgotSubmitBtn,
    #login-modal #loginSubmitBtn,
    #login-modal .btb {
      background: #597dda;
      color: #fff;
      padding: 0.5em 3em;
      font-size: 18px;
    }
}
#login-modal .btb {
    margin: 0 5px;
    color: #fff !important;
    text-decoration: none;
}
#login-modal #forgotAccount,
#login-modal #manageAccount,
#login-modal .wrap-modal {
    background-color: #fff;
}
#login-modal #loginErrorMessage {
    color: red;
    position: absolute;
    top: 15px;
    left: 30px;
}
#login-modal #loginErrorMessage.success {
    color: green;
}
#login-modal #memberStatus {
    color: #000;
    padding: 15px 0;
}
#login-modal .wrap-caption {
    background-color: #fff;
    color: #000;
    padding: 0 30px 30px;
    font-size: 18px;
}
#login-modal .wrap-caption h2 {
    font-size: 18px;
    color: #000;
}
#login-modal .wrap-caption a {
    color: #fff;
}
#login-modal .wrap-caption p {
    line-height: 1.5em;
}
#login-modal #archivedErrorMessage {
    display: block;
    padding: 0 0 30px;
}
#login-modal #forgotForm,
#login-modal #loginForm,
#login-modal #wrapForgot,
#login-modal .custom-form {
    padding: 45px 30px 30px;
    width: 100%;
    background-color: #fff;
    position: relative;
}
#loginForm div:first-of-type {
  margin-right: 15px;
} 
#login-modal #forgotForm input[type="password"],
#login-modal #forgotForm input[type="text"],
#login-modal #loginForm input[type="password"],
#login-modal #loginForm input[type="text"],
#login-modal #wrapForgot input[type="password"],
#login-modal #wrapForgot input[type="text"],
#login-modal .custom-form input[type="password"],
#login-modal .custom-form input[type="text"] {
    border: 1px solid #bbbbbb;
    background-color: #fff;
    padding: 20px;
    margin-bottom: 10px;
    width: 100%;
    height: 40px;
}
#login-modal #forgotForm a,
#login-modal #loginForm a,
#login-modal #wrapForgot a,
#login-modal .custom-form a {
    color: #000;
}
#login-modal .forgot {
    margin: 0;
    padding: 20px 0;
    float: left;
    width: 100%;
}
#login-modal .forgot li {
    margin: 0;
    padding: 0 20px 0 0;
    display: inline-block;
}
#login-modal .forgot a {
    color: #000;
}
@media only screen and (max-width: 900px) {
    #login-modal {
        background: none;
        top: 50px;
    }
    #login-modal .login-modal-wrapper {
        top: 0;
        bottom: 0;
        overflow-x: scroll;
        padding: 30px 0 80px;
    }
}

/**  modal css*/

body.login-open #login-modal {
     opacity: 1;
     visibility: visible;
     height: calc(var(--app-height) - 10px);
}
 body.login-open #login-modal form {
     height: 100%;
     display: flex;
     flex-wrap: wrap;
}
 body.login-open #login-modal form .keywords {
     height: 25%;
     width: 100%;
     padding-top: 2em;
     padding-bottom: 2em;
}
 body.login-open #login-modal form .options {
     height: 50%;
     width: 100%;
}
 body.login-open #login-modal form .submit {
     height: 25%;
     width: 100%;
}
 body.login-open header .mobile-triggers a {
    /*background-image:url('../images/close.svg');
    */
}
 @media only screen and (max-width: 768px) {
     body.login-open header {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         background: #fff;
    }
}
 @media only screen and (max-width: 768px) {
     body.login-open {
         overflow: hidden;
    }
}
 .modal-window {
     visibility: hidden;
     opacity: 0;
     transition: all 0.3s ease;
     width: 100%;
     max-width: 800px;
     position: fixed;
     top: 10%;
     left: 50%;
     transform: translate(-50%);
     background: white;
     z-index: 99;
     padding: 1em;
}
 @media only screen and (max-width: 768px) {
     .modal-window {
         padding: 1em 0 0;
    }
}
 .modal-window .closer {
     height: 15px;
     width: 15px;
     background-image: url('../images/close.svg');
     background-size: contain;
     background-position: center;
     background-repeat: no-repeat;
     position: absolute;
     top: 1em;
     right: 1em;
     z-index: 9999;
     cursor: pointer;
     display: block;
}
 .modal-window .modal-slide {
     z-index: 10;
}
 .modal-window .actions {
     margin-bottom: 0;
     padding: 1em;
     padding-top: 0;
}
 .modal-window .modal-media {
     height: 0;
     padding-top: 50%;
     background-color: #898c8d;
     background-size: contain;
     background-position: center;
     background-repeat: no-repeat;
}
 .modal-window video {
     max-width: 100%;
}
 .modal-window .video-wrapper {
     position: relative;
}
 .modal-window .embed-confirm {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: #fff;
     background: #898c8d;
     font-weight: bold;
     font-size: 19px;
     padding: 1.5em;
     border-radius: 5px;
     max-width: 40%;
     text-align: center;
     visibility: hidden;
     opacity: 0;
     transition: opacity 0.4s ease-in-out;
}
 .copied .modal-window .embed-confirm {
     visibility: visible;
     opacity: 1;
}
 .modal-window .modal-information {
     background: white;
     min-height: 150px;
     padding: 0.5em 1em;
}
 .modal-window .modal-information h2 {
     font-size: 1.2em;
     margin: 0;
     margin-bottom: 1em;
}
 .modal-window .modal-information h3 {
     font-size: 1em;
     margin: 0;
     display: flex;
}
 .modal-window .modal-information h3 .date {
     margin-right: 1em;
     border-right: 1px solid #696969;
     padding-right: 1em;
}
 .modal-window .modal-information h3 span {
     font-weight: 400;
}
 .modal-window .modal-information .caption {
     line-height: 1.4;
     font-size: 0.9em;
     color: #696969;
     margin-top: 1em;
}
 body.modal-open {
     overflow: hidden;
}
 body.modal-open:after {
     content: '';
     z-index: 9;
     background: rgba(0, 0, 0, 0.8);
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
     top: 0;
}
 body.modal-open .modal-window {
     visibility: visible;
     opacity: 1;
     z-index: 99;
}
 .bx-wrapper {
     border: 0;
     margin-bottom: 0;
     box-shadow: none;
     z-index: 10;
}
 .modalactions {
     float: left;
     clear: both;
     width: 196px;
     padding: 16px 16px 16px 16px;
     background: #fff;
     border: 1px solid #5e5555;
}
 .popup_block {
     display: none;
    /*--hidden by default--*/
     background: #fff;
}
 #popup_release {
     background: #fff;
     width: 200px;
     height: 55px;
}
 #popup_release .btn_close {
     display: none;
}

 #forgotPasswordTitle{
    color: white;
    font-weight: bold;
 }