/* Import robot font from google */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');

/* Page Loading Style */
.page-loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s .2s ease-in-out;
    transition: all .4s .2s ease-in-out;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.dark-mode .page-loading {
    background-color: #131022;
}

.page-loading.active {
    opacity: 1;
    visibility: visible;
}

.page-loading-inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    opacity: 0;
}

.page-loading.active > .page-loading-inner {
    opacity: 1;
}

.page-loading-inner > span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: #9397ad;
}

.dark-mode .page-loading-inner > span {
    color: #fff;
    opacity: .6;
}

.page-spinner {
    display: inline-block;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: .75rem;
    vertical-align: text-bottom;
    border: .15em solid #b4b7c9;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
}

.dark-mode .page-spinner {
    border-color: rgba(255,255,255,.4);
    border-right-color: transparent;
}

@-webkit-keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Begin: Lead Form */
.dm-cms-form {
    width: 100%;
    background-color: #ffffff;
    border-radius: 7px 7px 7px 7px;
    height: auto;
    font-family: 'Roboto', sans-serif;
}

.dm-cms-form .form-control {
    line-height:1 !important;
    padding:7px !important;
}

    .dm-cms-form .dm-form-header {
        height: 95px;
        width: 100%;
        background-color: #FF6015;
        border-radius: 7px 7px 0px 0px;
        padding:20px;
    }

        .dm-cms-form .dm-form-header h4 {
            font-size: 20px !important;
        }

    .dm-cms-form .dm-form-header h1 {
        font-size:20px;
        font-weight:normal;
        color:#ffffff;
    }

        .dm-cms-form .dm-form-header p {
            font-size: 16px;
            font-weight: normal;
            color: #ffffff;
            margin-top:-15px;
        }

.dm-cms-form .dm-input-container {
    padding:10px;
}

    .dm-cms-form .input-group-text {
        padding: 7px !important;
        background-color: #f8f8f8;
    }

    .dm-cms-form .input-group {
        margin-bottom:10px !important;
        height:35px !important;
    }

    .dm-cms-form .dm-cms-button-orange {
        padding: 2px 15px 4px 15px;
        color: #ffffff;
        background-color: #FF6015;
        border-radius: 3px;
        border: none;
        text-align: center;
        height: 30px;
        float: right;
    }

    .dm-cms-form .captcha-verif {
        padding: 5px 15px 5px 15px;
        color: #ffffff;
        background-color: #000000;
        border-radius: 5px;
        border: 1px solid #EFEFEF;
        text-align: center;
        height: 40px !important;
        width: 60px;
        margin: 0px 15px 0px 0px;
    }

    .dm-cms-form .input-captcha {
        padding: 5px 10px 5px 10px;
        color: #000000;
        background-color: #F9F9F9;
        border-radius: 3px;
        border: 1px solid #787878;
        text-align: center;
        height: 30px;
        width: 90px;
        margin: 0px 20px 0px 0px;
        letter-spacing: 2px;
    }
/* End: Lead Form */

/* Begin: Body */
    .dm-cms-button-sm {
        padding: 5px 15px 5px 15px;
        color: #ffffff;
        background-color: #FF6015;
        border-radius: 3px;
        border: none;
        text-align: center;
        height: 35px;
    }

.dm-cms-link {
    color: #000000;
    text-decoration:none;
}
/* End: Body */

/* Begin: Breadcrumb */
.dm-breadcumb {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    margin-bottom:20px;
}
/* End: Breadcrumb */

.dm-wrap-text {
    white-space: pre-wrap;
    margin-left: 10px;
    text-align:left !important;
}

.dm-btn-link-overwite {
    color:#1f1f1f !important;
}

