/* About */
.light-modal {
    display: none;
    position: fixed;
    background: transparent;
    top: 0;
    bottom: 0;
    left: 0;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 0;
    z-index: 900000000 !important;
    transition: background 1s;
    font-size: 16px;
}
.light-modal-content p, 
.light-modal-content-lightgray p, 
.light-modal-content-gray p, 
.light-modal-content-purple p {
    font-size: 12px !important;
    margin-bottom:0 !important;
    color:#fff !important;
}
.light-modal-content-pink p, 
.light-modal-content-green p {
    font-size: 12px !important;
    margin-bottom:0 !important;
    color:#000 !important;
}
.light-modal-content {
    opacity: 0.8;
    background: #845ec2;
    padding:12px;
    color: #fff;
    width: 30vw;
    border-radius: .2em;
    position: relative;
    max-height: calc(100vh - 150px);
    line-height: 1.4;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 16px #843cbd;
}
.light-modal-content-lightgray {
    opacity: 0.8;
    background: #555;
    padding:12px;
    color: #fff;
    width: 30vw;
    border-radius: .2em;
    position: relative;
    max-height: calc(100vh - 150px);
    line-height: 1.4;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 16px #333333;
}
.light-modal-content-gray {
    opacity: 0.8;
    background: #333;
    padding:12px;
    color: #fff;
    width: 30vw;
    border-radius: .2em;
    position: relative;
    max-height: calc(100vh - 150px);
    line-height: 1.4;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 16px #000000;
}
.light-modal-content-purple {
    opacity: 0.8;
    background: #cc00cc;
    padding:12px;
    color: #fff;
    width: 30vw;
    border-radius: .2em;
    position: relative;
    max-height: calc(100vh - 150px);
    line-height: 1.4;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 16px #990099;
}
.light-modal-content-pink {
    opacity: 0.8;
    background: #ffc0cb;
    padding:12px;
    color: #fff;
    width: 30vw;
    border-radius: .2em;
    position: relative;
    max-height: calc(100vh - 150px);
    line-height: 1.4;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 16px #ff9999;
}
.light-modal-content-green {
    opacity: 0.8;
    background: #00ff00;
    padding:12px;
    color: #fff;
    width: 30vw;
    border-radius: .2em;
    position: relative;
    max-height: calc(100vh - 150px);
    line-height: 1.4;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 0 16px #33cc00;
}
.light-modal-content img {
    max-width: 100%;
    border-radius: .2em;
}
.light-modal-content .large-content, 
.light-modal-content-gray .large-content,
.light-modal-content-gray .large-content,
.light-modal-content-purple .large-content,
.light-modal-content-pink .large-content,
.light-modal-content-green .large-content{
    width: 50vw;
}
.light-modal-header {
    padding: 20px 20px 20px 20px;
    background: rgba(0, 0, 0, 0.2);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}
.light-modal-heading {
    margin: 0;
    font-size: 1.5em;
}
.light-modal-heading + .light-modal-close-icon {
    position: static;
}
.light-modal-body {
    padding: 20px;
    overflow: auto;
    max-height: 450px;
}
.light-modal-footer {
    padding: 20px 20px 20px 20px;
    background: rgba(0, 0, 0, 0.2);
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.light-modal-close-icon, .light-modal-close-btn {
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    padding: 0 10px 5px 10px;
    border-radius: .2em;
    background: #FF6F91;
    font-size: 1.5em;
    line-height: 1;
    transition: background .2s ease-in-out;
}
.light-modal-close-icon:hover, .light-modal-close-btn:hover {
    background: #ff3c6a;
    text-decoration: none !important;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 4px rgb(240, 240, 240) !important;
}
.light-modal-close-icon {
    position: absolute;
    top: -15px;
    right: -15px;
}
.light-modal-close-btn {
    font-size: 1em;
}
.light-modal-caption {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: .2em;
    width: 100%;
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    box-shadow: 0 0 16px rgb(110, 110, 110);
}
.light-modal:target {
    background: rgba(0, 0, 0, 0.5);
    display: -ms-flexbox;
    display: flex;
    visibility: visible;
}
.light-modal-navigation .navigation-next,
.light-modal-navigation .navigation-prev {
    width: 32px;
    height: 32px;
    border-color: #fff;
    transition: border-color .2s;
}
.light-modal-navigation .navigation-next:hover,
.light-modal-navigation .navigation-prev:hover {
    border-color: rgba(255, 255, 255, 0.7);
}
.light-modal-navigation .navigation-next {
    position: absolute;
    right: -50px;
    top: 50%;
    border-bottom: 1px solid;
    border-left: 1px solid;
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.light-modal-navigation .navigation-prev {
    position: absolute;
    left: -50px;
    top: 50%;
    border-bottom: 1px solid;
    border-left: 1px solid;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media (max-width: 480px) {
    .light-modal-navigation .navigation-next {
        right: 5px;
    }
    .light-modal-navigation .navigation-prev {
        left: 5px;
    }
}
@keyframes basic {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.basic {
    animation-name: basic;
}
@media (max-width: 767.98px) {
    .light-modal {
        font-size: 14px;
    }
    .light-modal-about {
        max-width: 400px;
        margin: 150px auto;
    }
    .light-modal-caption {
        background-color: #555;
    }
}
@media (min-width: 768px) {
    .light-modal-about {
        width: 60vw;
        max-width: 400px;
        margin: 150px auto;
    }
    .light-modal-caption {
        background-color: #555;
    }
}
@media (max-width: 767.98px) {
    .light-modal:target .light-modal-content,
    .light-modal-content-lightgray,
    .light-modal-content-gray,
    .light-modal-content-purple,
    .light-modal-content-pink,
    .light-modal-content-green {
        width: 70vw;
    }
}
/* Data Protection */
.modal,
.modal-box {
    z-index: 900;
}
.modal-sandbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
}
.modal {
    display: none; 
    position: fixed;
    width: 100%;
    height: 100% !important;
    left: 0;
    top: 0;
    background: rgb(0,0,0);
    background: rgba(0,0,0,.7);
    overflow: auto !important;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
}
.data-title {
    font-family: "Roboto", sans-serif;
    float: none;
    font-weight: normal;
    color: #fff;
    text-align: center;
}
.modal-box {
    position: relative;
    width: 80%;
    max-width: 920px;
    margin: 100px auto;
    animation-name: modalbox;
    animation-duration: .4s;
    animation-timing-function: cubic-bezier(0,0,.3,1.6);
}
.modal-box p {
    line-height: 20px !important; 
}
.data-modal-header {
    padding: 20px 40px;
    background: #546E7A;
    opacity: .7;
}
.data-modal-header p {
    text-align: center;
    color: #fff !important;
}
.modal-body {
    background: #ECEFF1;
    opacity: .7;
    padding: 60px 40px;
}
.close-modal {
    position: absolute;
    text-align: right;
    cursor: pointer;
    color: #fff !important;
}
@-webkit-keyframes modalbox {
    0% {
        top: -250px; 
        opacity: 0;
    }
    100% {
        top: 0; 
        opacity: 1;
    }
}
@keyframes modalbox {
    0% {
        top: -250px; 
        opacity: 0;
    }
    100% {
        top: 0; 
        opacity: 1;
    }
}
.modal p {
    line-height: 1.4em;
} 
/* body {
  background: #B0BEC5;
}
.modal-trigger, button {
    top: 50%;
    left: 50%;
    padding: 20px 40px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-decoration: none;
} */
.modal-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: ease .2s;
}
.close-btn {
    border: 1px solid #333333 !important;
    outline: none !important;
    color: #333333 !important;
    margin-bottom: -30px !important;
}
.close-btn:hover {
    /* box-shadow: 0 0 16px #33cc00; */
    box-shadow: 0 0 16px #333333 !important;
}
.modal-trigger:hover {
    padding: 20px 60px;
}