.ds_txtarea {
    width: 100%;
    color: black;
    background-color: white;
    border: solid #007db8 1px;
    padding:15px;
    border-radius: 15px;
    resize: vertical;
}
.ds_txtarea::placeholder {
    color:lightgrey;
}
.ds_txtarea:focus {
    border: solid #007db8 1px;
    /*
    outline: solid;
    outline-width: 1px;
    outline-color: #007db8;
    */
}
.ds_input input[type=text] {
    width: 100%;
    color: black;
    background-color: white;
    border: solid #007db8 1px;
    margin-bottom: 15px;
    padding:15px;
    border-radius: 15px;
}
.ds_input input[type=text]:focus {
    border: solid #007db8 1px;
}

.ds_select {
    color: black;
    background-color: white;
    border: solid #007db8 1px;
    margin-bottom: 15px;
    padding:15px;
    border-radius: 15px;
    display: block;
}
.ds_select_disabled {
    color: black;
    background-color: lightgrey;
    border: solid #007db8 1px;
    margin-bottom: 15px;
    padding:15px;
    border-radius: 15px;
    display: block;
    cursor: not-allowed;
}
.ds_select:focus {
    border: solid #007db8 1px;
}
wrap-email-form {
    height: auto;
}
wrap-callback-form {
    height: auto;
}

.ds_callback_mail {
    display:none;
    overflow: hidden;
}
.ds_callback_mail input[type=text] {
    width: 100%;
    color: black;
    background-color: white;
    border: solid #007db8 1px;
    margin-bottom: 15px;
    padding:15px;
    border-radius: 15px;
    display:inline;
}
.ds_callback_mail input[type=text]:focus {
    border: solid #007db8 1px;
}
.ds_callback_mail input[type=text]::placeholder {
    color:lightgrey;
}

.boxForm {
    overflow: hidden;
    height: auto !important;
    max-height: none !important;
}
.hide-menu{ display: none; }

.show-menu{
    display: block;
    height: 100%;
}
.ds_input_mail {
    display:none;
    overflow: hidden;
}
.ds_input_mail input[type=text] {
    width: 100%;
    color: black;
    background-color: white;
    border: solid #007db8 1px;
    margin-bottom: 15px;
    padding:15px;
    border-radius: 15px;
    display:inline;
}
.ds_input_mail input[type=text]:focus {
    border: solid #007db8 1px;
}
.ds_input_mail input[type=text]::placeholder {
    color:lightgrey;
}

.bt_button {
    display:inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: var(--button_typography-font-family);
    font-weight: var(--button_typography-font-weight);
    font-style: var(--button_typography-font-style,normal);
    letter-spacing: var(--button_typography-letter-spacing);
    border-width: var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);
    border-style: solid;
    text-transform: var(--button_text_transform);
    background: var(--button_gradient_top_color);
    color: white;
    border-radius: 2px 2px 2px 2px;
    padding: 13px 29px;
    line-height: 17px;
    font-size: 16px;
    transition: all .2s;
    margin-left: 10px;
    margin-right: 10px;
    white-space: normal;
}

.bt_button_dl_progress {
    display:inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: var(--button_typography-font-family);
    font-weight: var(--button_typography-font-weight);
    font-style: var(--button_typography-font-style,normal);
    letter-spacing: var(--button_typography-letter-spacing);
    border-width: var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);
    border-style: solid;
    text-transform: var(--button_text_transform);
    background: #c95018;
    color: white;
    border-radius: 2px 2px 2px 2px;
    padding: 13px 29px;
    line-height: 17px;
    font-size: 16px;
    transition: all .2s;
}
.bt_button_dl_over {
    display:inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: var(--button_typography-font-family);
    font-weight: var(--button_typography-font-weight);
    font-style: var(--button_typography-font-style,normal);
    letter-spacing: var(--button_typography-letter-spacing);
    border-width: var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);
    border-style: solid;
    text-transform: var(--button_text_transform);
    background: darkgreen;
    color: white;
    border-radius: 2px 2px 2px 2px;
    padding: 13px 29px;
    line-height: 17px;
    font-size: 16px;
    transition: all .2s;
}
.bt_button:hover {
    background: var(--awb-color5);
}
.copyDataSuccess {
    display: none;
    padding:15px;
    border:1px solid green;
    background-color: darkseagreen;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
}
.copyDataError {
    display: none;
    padding:15px;
    border:1px solid darkred;
    background-color: lightpink;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
}





.emailDataProcessing {
    display: none;
    padding:15px;
    border:1px solid #005a80;
    background-color: #8fb0bc;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
}
.emailDataSuccess {
    display: none;
    padding:15px;
    border:1px solid green;
    background-color: darkseagreen;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
}
.emailDataError {
    display: none;
    padding:15px;
    border:1px solid darkred;
    background-color: lightpink;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
}
.pre-warning-data-access{
    text-align: left;
}
.linkGTD {
    display:inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: var(--button_typography-font-family);
    font-weight: var(--button_typography-font-weight);
    font-style: var(--button_typography-font-style,normal);
    letter-spacing: var(--button_typography-letter-spacing);
    border-width: var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);
    border-style: solid;
    text-transform: var(--button_text_transform);
    background: var(--button_gradient_top_color);
    color: white;
    border-radius: 2px 2px 2px 2px;
    padding: 13px 29px;
    line-height: 17px;
    font-size: 16px;
    transition: all .2s;
}
.linkGTD-disabled {
    display:inline-flex;
    cursor: not-allowed;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: var(--button_typography-font-family);
    font-weight: var(--button_typography-font-weight);
    font-style: var(--button_typography-font-style,normal);
    letter-spacing: var(--button_typography-letter-spacing);
    border-width: var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);
    border-style: solid;
    text-transform: var(--button_text_transform);
    background: lightgrey;
    color: white;
    border-radius: 2px 2px 2px 2px;
    padding: 13px 29px;
    line-height: 17px;
    font-size: 16px;
    transition: all .2s;
}
.linkGTD-disabled:hover {
    cursor: not-allowed;
    color: white;
}
.ds-alert-danger {
    padding:15px;
    border:1px solid #f5c6cb;
    background-color: #f8d7da;
    color: #721c24;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 14px;
}

.ds-alert-info {
    padding:15px;
    border:1px solid #b8daff;
    background-color: #cce5ff;
    color: #004085;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 14px;
}
.ds-alert-success {
    padding:15px;
    border:1px solid #c3e6cb;
    background-color: #d4edda;
    color: #155724;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 14px;
}

#count_char {
    font-size: 12px;
}
.limit_info {
    font-size: 12px;
    text-align: right;
    line-height: 1.5;
    margin-bottom: 15px;
}
.limit_info_visitor {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0px;
}
.optin_rgpd {
    margin-bottom: 10px;
    font-size: 11px;
    color: black;
}
.titlebox {
    text-align: center;
    margin-bottom: 10px;
}
.ds_input {
    padding-top: 15px;
    padding-bottom: 15px;
}
.download_progress_text {
    text-align: center;
}
.download_progress_text_hide {
    display:none;
}
/*
input[type="file"] {
    display: none;
}
.ds_button_file {
    display:inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    font-family: var(--button_typography-font-family);
    font-weight: var(--button_typography-font-weight);
    font-style: var(--button_typography-font-style,normal);
    letter-spacing: var(--button_typography-letter-spacing);
    border-width: var(--button_border_width-top,0) var(--button_border_width-right,0) var(--button_border_width-bottom,0) var(--button_border_width-left,0);
    border-style: solid;
    text-transform: var(--button_text_transform);
    background: var(--button_gradient_top_color);
    color: white;
    border-radius: 2px 2px 2px 2px;
    padding: 13px 29px;
    line-height: 17px;
    font-size: 16px;
    transition: all .2s;
}
*/

.bt_button:hover {
    background: #0066a8;
    color: white;
}

.bt_button:disabled {
    background: lightgrey;
    color: white;
    cursor: not-allowed;
}
.bt_button_disabled {
    background: lightgrey !important;
    color: white;
    cursor: not-allowed;
}
.bt_button_disabled:hover {
    background: lightgrey !important;
    color: white;
    cursor: not-allowed;
}

.ds_input input[type=number] {

    color: black;
    background-color: white;
    border: solid #007db8 1px;
    margin-bottom: 15px;
    padding:15px;
    border-radius: 15px;
    width: auto;
    height: 10px;
}
.ds_input input[type=number]:focus {
    border: solid #007db8 1px;
}
.progress {
    height: 40px;
}
#progress {
    font-size: 16px;
}
.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}
.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);
    background-size: 0.625rem 0.625rem;
}
.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #375a7f;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
}
.progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 0.625rem;
    overflow: hidden;
    font-size: 0.625rem;
    background-color: #444;
    border-radius: 0.25rem;
}
.file-upload-wrapper {
    position: relative;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    background-color: #ececec;
    border-radius: 5px;
}
.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    /* background: #fff; */
    padding: 0px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 40px;
    line-height: 40px;
    color: #686868;
    border-radius: 5px 10px 10px 5px;
    font-weight: 300;
}

.file-upload-wrapper:before {
    content: 'Charger';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 40px;
    background: #4daf7c;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 16px;
    line-height: 40px;
    padding: 0 15px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}
.file-upload-wrapper:before::hover {
    background: #007db8;
}
.file-upload-wrapper:hover::before {
    background: darken(#007db8, 10%);
}
input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}
.btn-bd-white-red-ds {
    font-weight: 600;
    color: #980018 !important;
    background-color: white !important;
    border: 1px solid #980018 !important;
    border-radius: 0px !important;
}
.btn-bd-white-red-ds:hover {
    background-color: #e3e3e3 !important;
}
.btn-bd-green-ds {
    font-weight: 600;
    color: #ffffff !important;
    background-color: #007db8 !important;
    border-color: #007db8 !important;
    border-radius: 0px !important;
    border: 1px solid #007db8;
}
.btn-bd-green-ds:hover {
    background-color: white !important;
    border: 1px solid #007db8 !important;
    color: #007db8 !important;
}
input[name=datatoseal]::-ms-reveal,
input[name=datatoseal]::-ms-clear
{
    display: none;
}
textarea, select, input, button { outline: none !important; }
textarea:focus, input:focus{
    outline: #007db8 solid 1px;
    box-shadow: 0px 0px 3px #007db8;
}
#togglePassword {
    cursor: pointer;
}
*::selection {
    background-color: #bbe9ff;
}


.filelists {
    margin: 20px 0;
}

.filelists h5 {
    margin: 10px 0 0;
}

.filelists .start_all {
    background: #455a64;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    clear: both;
    display: inline-block;
    font-size: 10px;
    margin: 0 10px 0 0;
    padding: 8px 12px;
    text-transform: uppercase;
}

.filelists .cancel_all {
    color: red;
    cursor: pointer;
    clear: both;
    display: inline-block;
    font-size: 10px;
    margin: 0;
    text-transform: uppercase;
}

.filelist {
    margin: 0;
    padding: 10px 0;
}

.filelist li {
    background: #fff;
    border-bottom: 1px solid #ECEFF1;
    font-size: 14px;
    list-style: none;
    padding: 5px;
    position: relative;
}

.filelist li:before {
    display: none !important;
}
/* main site demos */

.filelist li .bar {
    background: #eceff1;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 0;
    -webkit-transition: width 0.1s linear;
    transition: width 0.1s linear;
}

.filelist li .content {
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.filelist li .file {
    color: #455A64;
    float: left;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
    white-space: nowrap;
}

.filelist li .progress {
    color: #B0BEC5;
    display: block;
    float: right;
    font-size: 10px;
    text-transform: uppercase;
}

.filelist li .cancel {
    color: red;
    cursor: pointer;
    display: block;
    float: right;
    font-size: 10px;
    margin: 0 0 0 10px;
    text-transform: uppercase;
}
/* .filelist.started li .cancel { display: block; } */
/* .filelist li .remove { color: red; cursor: pointer; display: block; float: right; font-size: 10px; margin: 0 0 0 10px; text-transform: uppercase; }
.filelist.started li .remove { display: none; } */

.filelist li.error .file {
    color: red;
}

.filelist li.error .progress {
    color: red;
}

.filelist li.error .cancel {
    display: none;
}