/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 153, 221); /* rgb(0, 153, 221); */
    /*background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    /*padding: 20px;*/
    /*border: 1px solid #888;*/
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px;
    min-width: 410px;
}

.modal-content-tarif {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    /*padding: 20px;*/
    /*border: 1px solid #888;*/
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 800px;
    min-width: 720px;
}

.modal-content-order {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    /*padding: 20px;*/
    /*border: 1px solid #888;*/
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px;
    min-width: 410px;
}

.modal-content-max {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    /*padding: 20px;*/
    /*border: 1px solid #888;*/
    width: 90%; /* Could be more or less, depending on screen size */
    min-width: 410px;
}

/* The Close Button */
.close, .close2, .close3, .close4, .close5, .close6, .close7 {
    float: right;
    margin-top: -2.82em;
}

.close:hover, .close:focus, .close2:hover, .close2:focus, .close3:hover, .close3:focus, .close4:hover, .close4:focus, .close5:hover, .close5:focus, .close6:hover, .close6:focus, .close7:hover, .close7:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.close:hover, .close:focus, .close2:hover, .close2:focus, .close3:hover, .close3:focus, .close4:hover, .close4:focus, .close5:hover, .close5:focus, .close6:hover, .close6:focus, .close7:hover, .close7:focus {    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
  background-color: rgb(0, 153, 221);
  color:#ffffff;
}

.modal-data {
  padding: 1em 3.2em;
}

input {
  padding: 0 0.5em;
  border: none;
  width: 90%;
  margin:1em;
  font-size: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

input:focus {
  color:#262d36;
  text-decoration: none;
  outline: none;
  border: none;
  border-bottom: 1px solid #7ad427;
}


.cd-top {
    display: inline-block;
    border-radius: 50%;
    height: 3em;
    width: 3em;
    position: fixed;
    bottom: 2em;
    right: 1em;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgba(33, 139, 212, 0.8) url(../img/cd-top-arrow.svg) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    cursor: pointer;
    cursor: hand;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 0.5;
}

.cd-top:hover {
  opacity: 1;
}