:root {
    --color-blue: #00aeef;
    --color-white: #fff;
    --curve: cubic-bezier(0.420, 0.000, 0.275, 1.155);
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    justify-content: center;
    flex-direction: column;

    background-color: #007bff;
}

.message {
    width: 90%;
    height: auto;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 0;
}

.message h4,
.message p,
.message-2 p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #666;
}

.message h2 {
    font-family: Poppins, sans-serif;
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    color: #fff;
}

.message h2.sub-heading {
    font-size: 18px;
    line-height: 1.3em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.message-2 {
    width: 100%;
    background: #084a84;
    text-align: center;
    padding: 50px 10px;
    margin-top: 20px;
}

.message-2 p {
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
}

.message-2 p.subtitle {
    font-size: 15px;
    line-height: 1.2em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);

}

.spinning-icon {
    text-align: center;
}

@media screen and (max-width: 768px) {
    body {
        display: block;
    }
}

@media screen and (max-width: 545px) {
    .message {
        padding: 50px 15px 20px 15px;
    }

    .message h2 {
        font-size: 22px;
    }

    .message h2.sub-heading {
        font-size: 16px;
    }

    .message-2 {
        padding: 20px 15px;
    }
}

/* alert icon starts css */
.bd-example-modal-lg-dwnmsg.active {
    display: flex;
    opacity: 1;
    align-items: center;
}

.bd-example-modal-lg-dwnmsg .modal-dialog.modal-lg {
    min-width: 500px;
    max-width: 700px;
}

.bd-example-modal-lg-dwnmsg .modal-body {
    text-align: center;
}

/* alert icon starts */

.bd-example-modal-lg-dwnmsg .warn.warning {
    text-align: center
}

.warn,
.warn::before,
.warn::after {
    position: relative;
    padding: 0;
    margin: 0;
}

.warn {
    font-size: 80px;
    color: transparent;
}

.warn.warning {
    display: block;
    top: 0.225em;
    width: 1.15em;
    height: 1.15em;
    overflow: hidden;
    border: none;
    background-color: transparent;
    border-radius: 0.625em;
    margin: 0 auto 15px;
}

.warn.warning::before {
    content: "";
    display: block;
    top: -0.08em;
    left: 0.0em;
    position: absolute;
    border: transparent 0.6em solid;
    border-bottom-color: #fd3;
    border-bottom-width: 1em;
    border-top-width: 0;
    box-shadow: #999 0 1px 1px;
}

.warn.warning::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    padding: 0 1px;
    text-align: center;
    font-family: "Garamond";
    content: "!";
    font-size: 0.65em;
    font-weight: bold;
    color: #333;
}

/* alert icon ends css */

.modal.fade {
    background: rgba(0, 0, 0, 0.77);
}

.locale {
    margin-top: 24px;
    background: none;
    border: none;
    color: #FFFFFF;
}

.locale option {
    color: black;
}

.locale:hover {
    background: none;
}