﻿#lightbox-bg {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 7000;
}

#lightbox, #lightbox-confirm {
    position: absolute;
    top: 100px;
    left: calc(50% - 325px);
    padding: 20px;
    width: 650px;
    background-color: #fff;
    border-radius: 30px;
    z-index: 8000;
}

#lightbox .header {
    margin-bottom: 20px;
    line-height: 80px;
    border-radius: 20px;
    background-color: #eaecf5;
    text-align: left;
}

#lightbox .header .left {
    display: inline-block;
    margin-left: 20px;
    text-align: left;
}

#lightbox .header .right {
    display: inline-block;
    text-align: right;
    float: right;
}

#lightbox .header h2 {
    display: inline-block;
    font-size: 24px;
    line-height: 0;
    vertical-align: middle;
}

#lightbox .header h2 i {
    margin: 0 20px 0 0;
    vertical-align: middle;
}

#lightbox-close {
    cursor: pointer;
}

#lightbox .header h2 .svg-caret-bottom {
    display: inline-block;
    margin-left: 60px;
}

#lightbox label {
    display: inline-block;
    margin-left: 10px;
    /*width: 15%;*/
}

#lightbox input[type="text"], #lightbox input[type="date"], #lightbox input[type="phone"], #lightbox input[type="email"] {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    width: 82%;
    margin-bottom: 20px;
    height: 42px;
    font-size: 100%;
    font-style: normal;
    font-weight: bold;
    color: #273691;
    border-radius: 20px;
    border: 1px solid #eaecf5;
    background-color: #eaecf5 !important;
}

#lightbox input[type="phone"] {
    width: 250px;
}

#lightbox input[type="email"].full{
    width: 100%;
}

#lightbox input[type="text"]:focus, #lightbox input[type="date"]:focus, #lightbox input[type="phone"]:focus, #lightbox input[type="email"]:focus {
    border-color: #273691;
}

#lightbox label.textarea {
    display: block;
    margin-left: 10px;
    margin-bottom: 10px;
    width: 100%;
}

#lightbox textarea {
    display: block;
    position: relative;
    padding: 10px;
    margin-bottom: 20px;
    width: 100%;
    height: 100px;
    font-size: 100%;
    font-style: normal;
    font-weight: bold;
    color: #273691;
    border-radius: 20px;
    border-color: #eaecf5;
    background-color: #eaecf5 !important;
}

#lightbox textarea:focus {
    border-color: #273691;
}

#lightbox label.checkbox {
    width: 85%;
}

#lightbox input[type="checkbox"] {
    display: inline-block;
    position: relative;
    top: 7px;
    margin-left: 10px;
    margin-bottom: 20px;
    width: 30px;
    height: 30px;
    font-size: 100%;
    font-style: italic;
    font-weight: bold;
    color: #273691;
    border-radius: 20px;
    border-color: #eaecf5;
    background-color: #eaecf5 !important;
}

#lightbox.full-width input[type="text"],
#lightbox.full-width select,
#lightbox.full-width textarea,
#lightbox.full-width label {
    width: 100%;
}

#lightbox input[type="button"], #lightbox input[type="submit"], #lightbox-confirm input[type="button"], #lightbox-confirm input[type="submit"] {
    float: right;
    cursor: pointer;
    background-color: rgb(30,42,129);
    padding: 9px 25px;
    width: inherit;
    height: 40px;
    color: white;
    border: none;
    border-radius: 0.7em;
    -webkit-border-radius: 0.7em;
    font-size: 14px;
}

#lightbox-confirm-bg {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 9000;
}

#lightbox-confirm, #lightbox-confirm-container {
    display: none;
    position: fixed;
    top: 250px;
    left: calc(50% - 230px);
    padding: 20px;
    width: 460px;
    background-color: #fff;
    border-radius: 30px;
    z-index: 9999;
}

#lightbox-confirm-grid {
    display: grid;
    grid-template-columns: 0 auto;
    align-items: center
}

#lightbox-confirm-grid.icon {
    grid-template-columns: 60px auto;
}

#lightbox-confirm.title {
}

#lightbox-confirm-icon {
    padding: 20px 0;
}

#lightbox-confirm .message {
    padding: 20px 10px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

#lightbox-confirm .footer .button {
    margin: 0 0 0 20px;
    cursor: pointer;
}

#lightbox-confirm-cancel {
    background-color: #999;
}

#lightbox-confirm-icon.info::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('/Assets/Shared/Images/Icons/lightbox-info.svg');
    background-size: 50px 50px;
    background-repeat: no-repeat;
}

#lightbox-confirm-icon.question::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('/Assets/Shared/Images/Icons/lightbox-question.svg');
    background-size: 50px 50px;
    background-repeat: no-repeat;
}

#lightbox-confirm-icon.danger::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('/Assets/Shared/Images/Icons/lightbox-danger.svg');
    background-size: 50px 50px;
    background-repeat: no-repeat;
}

#lightbox-confirm-icon.warning::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('/Assets/Shared/Images/Icons/lightbox-warning.svg');
    background-size: 50px 50px;
    background-repeat: no-repeat;
}

#lightbox-confirm-icon.success::before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('/Assets/Shared/Images/Icons/lightbox-success.svg');
    background-size: 50px 50px;
    background-repeat: no-repeat;
}
