/* MESSAGE NO JS */
#no-js {
    display: flex;
    position: fixed;
    z-index: 1337;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.5);
}
#no-js-content {
    margin: auto;
}
#no-js-content p {
    padding: 100px;
    text-align: center;
    font-family: Verdana;
    font-size: 25px;
    color: white;
    background-color: black;
}
/* ERROR 000 */
#error-xxx {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#error-xxx-content {
    margin: auto;
}
#error-xxx-content p {
    text-align: center;
    font-size: 25px;
}
#error-xxx-content a {
    text-decoration: none;
}
/* ERRORS */
input.error, textarea.error, select.error {
    border: 1px solid #ff5149 !important;
}
input.success, textarea.success, select.success {
    border: 1px solid #2faa4c !important;
}
.disnon {
    display: none;
}
div.error {
    display: block;
    color: #ff5149;
    font-size: 12px;
    font-weight: bold;
}
/* POPUP */
.popup {
    display: flex;
    position: fixed;
    z-index: 1337;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.popup h3 {
    margin-top: 10px;
}
.popup-content {
    margin: auto;
    width: 25%;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #888;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.popup-p {
    margin: 15px 0 25px 0;
}
.popup-cancel {
    border-radius: 10px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    background-color: #efefef;
    color: #535353;
    outline: none !important;
}
.popup-confirm {
    border-radius: 10px;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    background-color: #2faa4c;
    color: #ffffff;
    outline: none !important;
}
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
    }
    .popup-cancel {
        margin-bottom: 10px;
    }
}
@media (min-width: 768px) {
    .popup-content {
        width: 50%;
    }
}
@media (min-width: 1440px) {
    .popup-content {
        width: 25%;
    }
}
/* NOTIFICATION */
.notification {
    position: fixed;
    z-index: 1337;
    top: 1%;
    left: 50%;
    width: 26%;
    margin-left: -13%;
    cursor: pointer;
}
.notification-content-error {
    padding: 20px;
    text-align: center;
    color: white;
    background-color: #ff5149;
}
.notification-content-success {
    padding: 20px;
    text-align: center;
    color: white;
    background-color: #2faa4c;
}
@media (max-width: 600px) {
    .notification {
        left: 50%;
        width: 90%;
        margin-left: -45%;
    }
}
/* COLORS */
.red {
    color: #ff5149;
}
.green {
    color: #2faa4c;
}