* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}

p, h1, h2, h3, h4, h5, h6, label, option, button, input::placeholder, a, th, td, textarea {
  font-family: "Poppins", sans-serif;
  color: #2E2D2C;
}

.img-box img {
  width: 100%;
  height: 100%;
}

.main {
  background-color: #EFEFEF;
  min-height: 90vh;
}

.r-kit-btn {
  padding: 0 10px;
  line-height: 30px;
  background-color: white;
  color: inherit;
  border: 1px solid #efd857;
  border-radius: 8px;
  font-size: 16px;
}

.r-kit-btn-submit {
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 10px;
  line-height: 30px;
  background-color: #efd857;
  color: inherit;
  border: 1px solid #efd857;
  border-radius: 8px;
  font-size: 16px;
}

.r-kit-btn-red {
  padding: 0 10px;
  line-height: 30px;
  background-color: #E74011;
  color: white;
  border: 1px solid #E74011;
  border-radius: 10px;
  font-size: 16px;
}

header {
  box-shadow: 0px 3px 6px #00000029;
}

.header-container {
  padding: 20px 5px;
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.header-content {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-left: 10px;
}
.header-content a {
  text-transform: uppercase;
}
.header-content .header-item {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
.header-content .header-item a {
  color: #302F30;
  display: inline-block;
  text-align: center;
}
.header-content .header-item.selected {
  font-weight: 600;
  border-bottom: 2px solid #efd857;
}
.header-content .header-arrow-big {
  font-weight: 700;
  font-size: 17px;
  color: #302F30;
}

.header-item a {
  text-decoration: none;
  position: relative;
}
.header-item a.unread::after {
  content: "";
  width: 4px;
  height: 4px;
  border: 1px solid red;
  border-radius: 17px;
  position: absolute;
  top: -4px;
  right: -7px;
  background-color: red;
}

main {
  padding-bottom: 20vh;
}

.home-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #efd857;
}

.home-content {
  width: 80%;
  height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.home-content .home-presta {
  font-size: 16px;
  letter-spacing: 6px;
  font-weight: 300;
  text-transform: uppercase;
}
.home-content .img-box {
  width: 80%;
  margin: 0 auto;
}
.home-content .home-fetons {
  font-size: 16px;
}
.home-content .add-button {
  margin-top: 15px;
  padding: 5px;
  border: 1px solid #2E2D2C;
  border-radius: 10px;
  font-size: 16px;
  background-color: #efd857;
}

.login-container {
  width: 100%;
  height: 100vh;
  background-color: #efd857;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.login-form-box {
  height: 65vh;
  width: 100%;
}
.login-form-box form {
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.login-fields {
  margin: 0 auto;
  width: 90%;
  height: 28vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.login-fields p {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
  color: #302F30;
}
.login-fields a {
  font-size: 16px;
}
.login-fields .login-error {
  font-size: 16px;
  font-weight: 400;
  color: red;
}

.login-email, .login-field-password {
  width: 100%;
  height: 7vh;
  padding: 5px;
  text-align: center;
  background-color: white;
  border: 1px solid white;
  border-radius: 20px;
}

.login-email::placeholder {
  font-weight: 300;
  font-size: 16px;
}

.login-field-password {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.login-field-password input {
  height: 100%;
  width: 80%;
  text-align: center;
  border: 1px solid white;
}

.login-field-password input::placeholder {
  font-size: 16px;
  font-weight: 300;
}

.login-eye {
  width: 10%;
  margin-right: 5px;
}

.login-button-box {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.login-button-box a {
  font-size: 16px;
}

.login-btn {
  width: 100%;
  height: 45px;
  color: white;
  background-color: #2E2D2C;
  border: 1px solid #2E2D2C;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3vh;
}

.calendar-section {
  width: 90%;
  max-width: 90vw;
  margin: 0 auto;
  padding: 5%;
  -webkit-box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.43);
  box-shadow: 1px 1px 15px 0px rgba(0, 0, 0, 0.43);
  background-color: white;
  border-radius: 5px;
}

.calendar-controls-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.calendar-controls-container a {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #302F30;
}
.calendar-controls-container h2 {
  font-weight: 700;
  font-size: 16px;
  color: #302F30;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
}
.calendar-table th {
  font-size: 14px;
  color: #302F30;
}
.calendar-table td {
  font-size: 16px;
  color: #302F30;
  text-align: center;
  height: 35px;
  width: 14.27%;
}
.calendar-table td div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-table .firstDay {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.calendar-table .lastDay {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.calendar-table .unavailabilities {
  background-color: #2E2D2C !important;
  color: white !important;
}
.calendar-table .currentEvent {
  border-top: 2px solid #efd857;
  border-bottom: 2px solid #efd857;
}
.calendar-table .currentEvent.firstDay {
  border-left: 2px solid #efd857;
}
.calendar-table .currentEvent.lastDay {
  border-right: 2px solid #efd857;
}
.calendar-table .oneEvent {
  background-color: #efd857;
}

/** LEGENDS **/
.calendar-divider {
  margin: 10px 0;
  height: 2px;
  width: 100%;
  background-color: #EFEFEF;
}

.calendar-legends-container p {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 600;
}
.calendar-legends-container p .reserved {
  width: 15px;
  height: 15px;
  padding: 0 7px 0;
  border-radius: 50%;
  background-color: #efd857;
  border: 1px solid #efd857;
  margin-right: 10px;
}
.calendar-legends-container p .awaiting {
  width: 15px;
  height: 15px;
  padding: 0 7px 0;
  border-radius: 50%;
  border: 2px solid #efd857;
  margin-right: 10px;
}
.calendar-legends-container p .unavailability {
  width: 15px;
  height: 15px;
  padding: 0 7px 0;
  border-radius: 50%;
  background-color: #2E2D2C;
  border: 1px solid #2E2D2C;
  margin-right: 10px;
}

.chat-block {
  margin: 20px 0;
}

.chat-container {
  width: 90%;
  margin: 10px auto;
}
.chat-container .day-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
}
.chat-container .day-top .date {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-container .day-top .date p {
  color: #919191;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
}
.chat-container .day-top .date p.label-new {
  color: #E74011;
  font-weight: 700;
  font-style: italic;
}
.chat-container .day-top .date p.new {
  color: #E74011;
  min-width: 115px;
}
.chat-container .day-top .date p.new2 {
  min-width: 165px;
}
.chat-container .day-top .date .divider-new {
  margin: 0 2px;
  width: 100%;
  height: 1px;
  background-color: #E74011;
}
.chat-container .day-top .date.others {
  width: 100%;
  text-align: right;
}
.chat-container .day-top .line {
  width: 50%;
  height: 2px;
  background-color: #EFEFEF;
}
.chat-container .day-msg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 50px;
  padding: 20px;
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
  border-radius: 20px;
  position: relative;
}
.chat-container .day-msg p {
  width: 100%;
  color: #2E2D2C;
  font-size: 14px;
  font-weight: 300;
}
.chat-container .day-msg .from-tcheen {
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  color: #18BF18;
}
.chat-container .day-msg .triangle {
  position: absolute;
  top: -15px;
  left: 20px;
  height: 20px;
  width: 20px;
  border-left: 20px #F5F5F5 solid;
  border-top: 20px solid transparent;
}
.chat-container .day-msg.from-client {
  background-color: transparent;
  border: none;
}
.chat-container .button-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.chat-container .button {
  padding: 0 20px;
  line-height: 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #6cbe99;
  color: white;
}
.chat-container .button.back {
  background-color: #efd857;
}
.chat-container .modal-invoice {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  z-index: 20;
  justify-content: center;
  align-items: center;
}
.chat-container .modal-invoice.open {
  display: flex;
}
.chat-container .modal-invoice .content {
  width: 80%;
  min-height: 200px;
  max-height: 80%;
  overflow-y: scroll;
  background-color: white;
  padding: 10px;
}
.chat-container .modal-invoice .content .title {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
}
.chat-container .modal-invoice .content p {
  font-size: 16px;
}
.chat-container .modal-invoice .content form {
  margin-top: 20px;
}
.chat-container .modal-invoice .content form label {
  font-weight: bold;
  font-size: 16px;
}
.chat-container .modal-invoice .content form input {
  width: 100%;
  padding: 5px;
}
.chat-container .modal-invoice .content form p {
  font-size: 14px;
}
.chat-container .modal-invoice .content form .buttons-box {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-form {
  width: 90%;
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.chat-form .row {
  height: 50px;
  border: 2px solid #efd857;
  overflow: hidden;
  border-radius: 20px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.chat-form .row input {
  width: 70%;
  height: 100%;
  background-color: white;
  border: none;
}
.chat-form .row input::placeholder {
  color: #9B9B9B;
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
}
.chat-form .row button {
  width: 20%;
  height: 100%;
  border: none;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.request-read-header-container {
  height: 10vh;
  width: 100%;
  margin-bottom: 50px;
  background-color: white;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #EFEFEF;
}
.request-read-header-container .arrow-back {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.request-read-header-container .arrow-back a {
  text-decoration: none;
  font-size: 22px;
  color: #2E2D2C;
}
.request-read-header-container .title-box {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.request-read-header-container .title-box .title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.request-read-header-container .info {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.request-read-header-container .info .point {
  width: 20px;
  height: 20px;
  border: 1px solid #2E2D2C;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
}

.request-read-header-toggle {
  display: none;
  justify-content: space-around;
  align-items: center;
  height: 8vh;
  margin: 10px;
}
.request-read-header-toggle a {
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  padding: 10px;
  background-color: #EFEEEE;
  border-radius: 20px;
}

.request-home-container {
  width: 100%;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.request-home-container .request-home-content {
  margin-bottom: 15px;
}
.request-home-container .request-home-content h1 {
  font-size: 16px;
  width: 90%;
  margin: 10px auto 20px;
}
.request-home-container .request-home-content h1 span {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #E74011;
  color: #EFEFEF;
  padding: 3px 7px;
}
.request-home-container .request-home-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  background-color: #efd857;
  border: 2px solid #efd857;
  border-radius: 8px;
}
.request-home-container .request-home-top > div {
  width: 50%;
  text-align: center;
}
.request-home-container .request-home-top > div.selected {
  background-color: #FFFFFF;
  padding: 3px 0;
  border: 1px solid #FFFFFF;
  border-radius: 8px;
}
.request-home-container .request-home-top a {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
  text-decoration: none;
}

.request-home-box {
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  background-color: white;
  padding: 15px;
}
.request-home-box .request-unreaded {
  margin-bottom: 20px;
  padding: 0 10px;
}
.request-home-box .request-unreaded p {
  font-weight: 600;
  font-size: 14px;
  color: #2E2D2C;
}
.request-home-box .link-item {
  text-decoration: none;
}
.request-home-box .request-item {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px 15px;
}
.request-home-box .request-item .infos {
  min-width: 130px;
}
.request-home-box .request-item .infos h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}
.request-home-box .request-item .infos p {
  font-size: 16px;
  font-weight: 400;
}
.request-home-box .request-item .infos .date {
  margin-top: 5px;
  font-weight: 300;
}
.request-home-box .request-item .show {
  width: 30%;
  text-align: center;
}
.request-home-box .request-item .show .see {
  background-color: #efd857;
  padding: 5px 10px;
  border-radius: 10px;
  color: black;
  font-size: 14px;
  font-weight: 600;
}
.request-home-box .request-item .show .stat {
  font-size: 14px;
  color: #707070;
  line-height: 16px;
  margin-top: 5px;
}

.request-home-link {
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}
.request-home-link a {
  font-size: 16px;
  color: #302F30;
}

.request-other {
  margin-top: 20px;
}

.request-read-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.request-read-block {
  width: 85%;
  margin: 5px auto 5px;
  min-height: 10vh;
  border-bottom: 1px solid #EFEFEF;
  padding-top: 5px;
}
.request-read-block h2 {
  font-size: 16px;
  font-weight: 500;
  color: #302F30;
}
.request-read-block p {
  font-size: 16px;
  font-weight: 200;
  color: #302F30;
}
.request-read-block .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.request-read-block .row .row-item {
  width: 50%;
}

.request-read-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.request-read-row a {
  font-size: 14px;
  color: #2E2D2C;
  display: flex;
  align-items: center;
}
.request-read-row a span.icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  background-image: url("../img/arrows/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.request-read-row a span.icon.open {
  background-image: url("../img/arrows/arrow-up.svg");
}

.request-read-btn-container p {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}
.request-read-btn-container .btn-box {
  width: 80%;
  margin: 15px auto 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}
.request-read-btn-container .btn-box button {
  border-radius: 20px;
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  width: 200px !important;
  height: 50px !important;
}
.request-read-btn-container .btn-box button.yellow {
  width: 126px;
  height: 40px;
  border: 1px solid #efd857;
  background-color: #efd857;
  color: black;
}
.request-read-btn-container .btn-box button.red {
  width: 90px;
  height: 40px;
  border: 1px solid #E74011;
  background-color: #E74011;
}

/************************************************

                  SLIDE HIDDEN

 ************************************************/
.request-read-slide {
  display: none;
  border: 1px solid #EFEFEF;
  border-radius: 20px;
  padding: 10% 5%;
  margin-bottom: 10px;
}
.request-read-slide h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.request-read-slide .service-container.total {
  margin-top: 30px;
}
.request-read-slide .service-container h4 {
  text-transform: uppercase;
  color: #efd857;
  font-size: 14px;
  margin-bottom: 5px;
}
.request-read-slide .service-container p {
  font-size: 16px;
  font-weight: 300;
}
.request-read-slide .service-container p.price {
  font-weight: 600;
}
.request-read-slide .service-container p.tva {
  font-size: 14px;
}
.request-read-slide .service-container .service-box .service-item {
  margin-bottom: 15px;
}
.request-read-slide .service-container .service-box .service-item .service-label {
  background-color: #F5F5F5;
  border-radius: 10px;
  padding: 2px 4px;
}
.request-read-slide .service-container .service-box .service-item .service-label.no-bgc {
  background-color: transparent;
}
.request-read-slide .service-container .service-box .service-item .service-item-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}
.request-read-slide .service-container .service-box .service-item .service-item-details p.item-label {
  width: 40%;
}
.request-read-slide .service-container .service-box .service-item .service-item-details p.total {
  font-weight: bold;
  font-size: 16px;
}
.request-read-slide .service-container .service-box .service-item .service-item-details p.total-price {
  width: inherit;
  font-weight: bold;
  font-size: 16px;
}
.request-read-slide .client-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.request-read-slide .client-container .img-box {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EFEFEF;
}
.request-read-slide .client-container .img-box img {
  height: 100%;
  width: auto;
}
.request-read-slide .client-container .infos-box {
  margin-top: 20px;
  text-align: center;
  color: #302F30;
  font-size: 14px;
  font-weight: 200;
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.request-read-slide .client-container .infos-box .name {
  font-weight: 500;
}

.request-read-slide-total-container {
  border-top: 1px solid #EFEFEF;
  margin-top: 30px;
  padding-top: 15px;
}
.request-read-slide-total-container .request-read-slide-total-content {
  text-align: right;
}
.request-read-slide-total-container .request-read-slide-total-content p.total {
  font-weight: 300;
  font-size: 12px;
}
.request-read-slide-total-container .request-read-slide-total-content p.price {
  font-weight: 700;
  font-size: 20px;
}
.request-read-slide-total-container .request-read-slide-total-content p.comission {
  font-weight: 500;
  font-size: 12px;
  font-style: italic;
}

/************************************************

                  CALENDAR HIDDEN

 ************************************************/
.request-read-calendar {
  display: none;
}
.request-read-calendar h2 {
  text-transform: uppercase;
}
.request-read-calendar th {
  font-weight: 400;
}

/************************************************

                     CHAT

 ************************************************/
.request-chat-nb {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #E74011;
  color: #EFEFEF;
  padding: 3px 7px;
}

.request-chat-msg-container {
  min-height: 40vh;
  overflow: hidden;
  position: relative;
  /*.request-chat-filter{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 90px;
    width: 100%;
    background-color: white;
    opacity: 0.8;
    z-index: 9;
  }*/
}

.request-calendar-top {
  width: 85%;
  margin: 0 auto 30px;
}
.request-calendar-top p {
  padding-top: 25px;
  text-align: center;
  font-weight: 300;
  color: #2E2D2C;
  font-size: 16px;
}

.request-calendar-message {
  width: 85%;
  margin: 0 auto 30px;
}
.request-calendar-message .success {
  color: #18BF18;
}

.request-calendar-response {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  width: 90%;
  padding: 10px;
  border-radius: 10px;
  background-color: white;
}
.request-calendar-response .infos-box {
  width: 50%;
}
.request-calendar-response .infos-box .label {
  font-weight: 700;
  font-size: 16px;
  color: #302F30;
}
.request-calendar-response .infos-box .infos {
  font-size: 16px;
  color: #302F30;
}
.request-calendar-response .link {
  font-size: 14px;
  color: black;
  text-decoration: underline;
}

.request-decline-section {
  width: 90%;
  margin: 15px auto;
}
.request-decline-section h2 {
  font-weight: 700;
  font-size: 16px;
  color: #302F30;
  text-align: center;
  margin: 30px auto 20px;
}

.request-decline-checkbox-container .checkbox-line {
  display: flex;
  margin-bottom: 15px;
}
.request-decline-checkbox-container .checkbox-line .circle {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid #302F30;
}
.request-decline-checkbox-container .checkbox-line .label-slide {
  font-size: 16px;
  color: #2E2D2C;
  width: 80%;
  margin-left: 15px;
}
.request-decline-checkbox-container .checkbox-line .label-slide span {
  font-weight: 300;
}
.request-decline-checkbox-container .checkbox-line input[type=checkbox] {
  display: none;
}

.request-decline-message-container #message {
  width: 100%;
  height: 30vh;
  border: 1px solid #EFEFEF;
  border-radius: 10px;
  padding: 20px 28px;
}

.request-decline-btn-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.request-decline-btn-container .link-box {
  width: 20%;
}
.request-decline-btn-container .link-box a {
  font-size: 14px;
  color: #2E2D2C;
}
.request-decline-btn-container .btn-box {
  width: 70%;
}
.request-decline-btn-container .btn-box button {
  width: 100%;
  border: 1px solid #18BF18;
  border-radius: 20px;
  background-color: #18BF18;
  color: white;
  padding: 10px 0;
}

.request-accept-top {
  width: 70%;
  margin: 30px auto 20px;
}
.request-accept-top p {
  font-weight: 700;
  color: #302F30;
  font-size: 22px;
  text-align: center;
}

.request-accept-middle {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.request-accept-middle p {
  font-size: 16px;
  color: #302F30;
  width: 90%;
  margin: 10px auto;
}

.request-accept-bottom a {
  color: white;
  text-decoration: none;
}
.request-accept-bottom a .btn-chat {
  width: 144px;
  height: 40px;
  background-color: #efd857;
  border: 1px solid #efd857;
  border-radius: 20px;
  margin: 30px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}
.request-accept-bottom .link-box {
  margin-top: 30px;
  text-align: center;
}
.request-accept-bottom .link-box a {
  color: #2E2D2C;
  text-decoration: underline;
  font-size: 14px;
}

.request-quote-read-lines-section {
  width: 90%;
  margin: 0 auto 30px;
  padding-top: 20px;
}

.request-quote-read-links-section {
  width: 90%;
  margin: 0 auto 40px;
}
.request-quote-read-links-section div {
  margin: 10px 0;
}
.request-quote-read-links-section div a {
  text-decoration: underline;
  color: #3E3D3F;
  font-size: 14px;
  line-height: 24px;
}

.request-quote-read-infos-section {
  width: 90%;
  margin: 0 auto 40px;
  padding-right: 10%;
}
.request-quote-read-infos-section p {
  font-size: 16px;
  font-weight: 600;
  color: #2E2D2C;
}
.request-quote-read-infos-section form {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 7vh;
}
.request-quote-read-infos-section form textarea {
  width: 85%;
  height: 100%;
  border: 1px solid white;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 5px;
  background-color: white;
}
.request-quote-read-infos-section form button {
  width: 15%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EFEFEF;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 5px;
  background-color: #EFEFEF;
}
.request-quote-read-infos-section form button img {
  height: 80%;
  width: auto;
  opacity: 0.5;
  max-width: 90%;
}

.request-quote-read-submit-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.request-quote-modal-invoice {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100vh;
  z-index: 20;
  justify-content: center;
  align-items: center;
}
.request-quote-modal-invoice.open {
  display: flex;
}
.request-quote-modal-invoice .content {
  width: 80%;
  min-height: 200px;
  max-height: 80%;
  overflow-y: scroll;
  background-color: white;
  padding: 10px;
}
.request-quote-modal-invoice .content .title {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
}
.request-quote-modal-invoice .content p {
  font-size: 16px;
}
.request-quote-modal-invoice .content form {
  margin-top: 20px;
}
.request-quote-modal-invoice .content form label {
  font-weight: bold;
  font-size: 16px;
}
.request-quote-modal-invoice .content form input {
  width: 100%;
  padding: 5px;
}
.request-quote-modal-invoice .content form p {
  font-size: 14px;
}
.request-quote-modal-invoice .content form .buttons-box {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.request-quote-modal-invoice .content form .buttons-box .button {
  padding: 0 20px;
  line-height: 30px;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #6cbe99;
  color: white;
}
.request-quote-modal-invoice .content form .buttons-box .button.back {
  background-color: #efd857;
}

.request-quote-read-btn-section {
  width: 90%;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-around;
}
.request-quote-read-btn-section a.update {
  text-decoration: underline;
  color: #302F30;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.request-quote-read-btn-section .btn {
  width: 115px;
  height: 40px;
  border: 1px solid #18BF18;
  border-radius: 20px;
  background-color: #18BF18;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.request-quote-update-section .form > form > div > div > div > div > div {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #D8D8D8;
}

.request-quote-update-section {
  padding-top: 20px;
}
.request-quote-update-section .form {
  background-color: white;
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid white;
  border-radius: 20px;
}
.request-quote-update-section .form .span-style {
  font-size: 14px;
  font-weight: 300;
  color: #2E2D2C;
}
.request-quote-update-section .form label {
  display: none;
}
.request-quote-update-section .form input, .request-quote-update-section .form select {
  height: 25px;
  border: 1px solid #efd857;
  padding: 2px;
  border-radius: 5px;
  color: #2E2D2C;
  font-size: 14px;
  font-weight: 300;
  margin: 3px;
  width: 100%;
  background-color: white;
}
.request-quote-update-section .form input::placeholder {
  color: #D8D8D8;
}
.request-quote-update-section .form .newline-btn {
  border: none;
  background-color: transparent;
}
.request-quote-update-section .form .newline-btn .cross {
  background-color: #efd857;
  border: 1px solid #efd857;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  color: white;
  padding: 0 3px;
  font-size: 14px;
  font-weight: 700;
}
.request-quote-update-section .form .newline-btn .text {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #353332;
}

/**** NEW LINES ****/
.pwa-new-line-price, .pwa-new-line-quantity {
  display: inline-block;
}

.pwa-new-line-span-price, .pwa-new-line-span-quantity, .pwa-request-quote-update-isOption {
  font-size: 14px;
  font-weight: 300;
  color: #2E2D2C;
}

/***** MODAL *****/
.request-quote-update-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: calc(100vh - 60px);
  width: 100%;
  background-color: white;
  overflow-y: scroll;
}
.request-quote-update-modal .cross-box {
  display: flex;
  justify-content: flex-end;
  width: 90%;
  margin: 20px auto;
}
.request-quote-update-modal .cross-box .cross {
  font-size: 22px;
  font-weight: bold;
}
.request-quote-update-modal .content {
  padding: 0 10px;
}
.request-quote-update-modal .content .title {
  text-align: center;
  font-weight: bold;
}
.request-quote-update-modal .content .subtitle {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 20px;
}
.request-quote-update-modal .content .result-line {
  margin: 15px;
}
.request-quote-update-modal .content .result-line p {
  border: 2px solid #efd857;
  border-radius: 15px;
  padding: 5px;
}

.request-menu-bottom-container {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  height: 60px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: white;
}
.request-menu-bottom-container a {
  width: 30%;
  text-decoration: none;
}
.request-menu-bottom-container a .block {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.request-menu-bottom-container a .block .img-box {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.request-menu-bottom-container a .block .img-box img {
  width: 50%;
  height: auto;
}
.request-menu-bottom-container a .block .img-box .request-chat-nb {
  position: absolute;
  top: 20%;
  left: 55%;
  width: 17px;
  height: 17px;
  font-weight: 600;
  font-size: 14px;
}
.request-menu-bottom-container a .block .text-box p {
  font-size: 14px;
  color: #2E2D2C;
}
.request-menu-bottom-container .block.selected .img-box {
  background-color: #FFF8D1;
  border: 1px solid #FFF8D1;
  border-radius: 20px;
}
.request-menu-bottom-container .block.selected .text-box .underline {
  width: 50%;
  min-width: 35px;
  height: 2px;
  background-color: #efd857;
  margin: 0 auto;
}

.pwa-user-unavailability {
  padding-top: 30px;
}
.pwa-user-unavailability .backlink-box {
  width: 90%;
  margin: 0 auto 30px;
}
.pwa-user-unavailability h1 {
  text-align: center;
  font-size: 16px;
}
.pwa-user-unavailability .pwa-user-unavailability-form {
  width: 90%;
  margin: 20px auto;
}
.pwa-user-unavailability .pwa-user-unavailability-form form label {
  width: 100%;
}
.pwa-user-unavailability .pwa-user-unavailability-form form input, .pwa-user-unavailability .pwa-user-unavailability-form form select {
  padding: 2px;
  margin: 2px;
}
.pwa-user-unavailability .pwa-user-unavailability-form form input {
  width: 70%;
}
.pwa-user-unavailability .pwa-user-unavailability-form form .pwa-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pwa-user-unavailability .pwa-user-unavailability-form form .pwa-row select, .pwa-user-unavailability .pwa-user-unavailability-form form .pwa-row input {
  padding: 10px 2px;
}
.pwa-user-unavailability .pwa-user-unavailability-form form .pwa-btn-box {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pwa-user-unavailability .pwa-user-unavailability-form .pwa-remove {
  margin: 40px 0;
  text-align: center;
}

.account-home-container {
  padding-top: 20px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.account-home-container .unread::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid red;
  border-radius: 5px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
}

.account-home-section {
  background-color: white;
  padding: 15px 10px;
  border-radius: 15px;
  width: 80%;
  text-align: center;
  box-shadow: 1px 1px 15px 0 rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}
.account-home-section .box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.account-home-section .box svg {
  margin-left: 5px;
}
.account-home-section h2 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #302F30;
  position: relative;
}

.account-home-section.news {
  background-color: #FFFADB;
}

/********* CONTENT *********/
.account-home-section .content h3 {
  margin: 25px 0 20px;
  font-weight: 300;
  color: #2E2D2C;
  font-size: 16px;
}
.account-home-section .content .btn-container .row {
  display: flex;
  width: 90%;
  margin: 10px auto;
}
.account-home-section .content .btn-container .row .btn-box {
  width: 20%;
}
.account-home-section .content .btn-container .row .btn-box .background {
  background-color: #EFEFEF;
  border-radius: 20px;
  height: 21px;
  width: 35px;
  position: relative;
}
.account-home-section .content .btn-container .row .btn-box .background .circle {
  background-color: white;
  width: 19px;
  height: 19px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}
.account-home-section .content .btn-container .row .btn-box .background.green {
  background-color: #18BF18;
  transition: 0.5s ease-in-out all;
}
.account-home-section .content .btn-container .row .btn-box .background.green .circle {
  left: 45%;
}
.account-home-section .content .btn-container .row .label-box {
  width: 80%;
}
.account-home-section .content .btn-container .row .label-box p {
  text-align: left;
  color: #2E2D2C;
  font-weight: 500;
  font-size: 16px;
}

/********* STATISTICS *********/
.account-statistics-h3 {
  color: #2E2D2C;
  font-weight: 500;
  font-size: 16px;
  margin: 20px 0 10px !important;
}

.account-statistics-datas-box p {
  text-align: center;
  color: #18BF18;
  font-weight: 800;
  font-size: 22px;
}
.account-statistics-datas-box p .info {
  display: inline-block;
  color: #2E2D2C;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border: 1px solid #2E2D2C;
}
.account-statistics-datas-box p .info span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.account-statistics-datas-box p .info.green {
  border: 1px solid #18BF18;
  color: #18BF18;
}
.account-statistics-datas-box .info-content {
  margin-top: 10px;
}
.account-statistics-datas-box .info-content .objectif {
  color: #2E2D2C;
  font-size: 14px;
  font-weight: 500;
}
.account-statistics-datas-box .info-content .green {
  color: #18BF18;
  font-weight: 500;
  font-size: 14px;
}
.account-statistics-datas-box .info-content .red {
  color: #E74011;
  font-weight: 500;
  font-size: 14px;
}

/********* REVIEWS *********/
.account-review-container .sorting {
  color: #979797;
  font-size: 14px;
  margin: 10px 0 20px;
}
.account-review-container .block .date {
  color: #979797;
  font-size: 14px;
}
.account-review-container .block .client {
  color: #2E2D2C;
  font-weight: 500;
  font-size: 16px;
}
.account-review-container .block .stars {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.account-review-container .block .stars img {
  width: 20px;
  height: auto;
}
.account-review-container .block .message {
  font-weight: 300;
  font-size: 16px;
  color: #2E2D2C;
}
.account-review-container .block .message-answer {
  margin-top: 20px;
}
.account-review-container .block .message-answer span {
  font-weight: bold;
}
.account-review-container .block .form {
  margin-top: 30px;
}
.account-review-container .block .form form .form-row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  background-color: #F5F5F5;
}
.account-review-container .block .form form .form-row input {
  width: 80%;
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
  padding: 10px;
  border-radius: 5px;
}
.account-review-container .block .form form .form-row input::placeholder {
  color: #9B9B9B;
  font-weight: 300;
  font-size: 14px;
}
.account-review-container .block .form form .form-row button {
  width: 20%;
  background-color: #F5F5F5;
  border: none;
  color: #C6C6C6;
}
.account-review-container .owl-nav {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account-review-container .owl-nav button:hover {
  background-color: transparent !important;
  color: initial !important;
}

/********* ACTU *********/
.account-actu-container {
  margin-top: 30px;
}
.account-actu-container .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.account-actu-container .block .date {
  width: 30%;
  color: #2E2D2C;
  font-weight: 800;
  font-size: 14px;
  text-align: left;
}
.account-actu-container .block .message {
  width: 70%;
  text-align: left;
}
.account-actu-container .block .message .title {
  font-weight: 300;
  font-size: 14px;
  color: #2E2D2C;
  text-transform: uppercase;
  position: relative;
}
.account-actu-container .block .message .content {
  color: #302F30;
  font-size: 16px;
  font-weight: 700;
}
.account-actu-container .divider {
  height: 2px;
  width: 100%;
  background-color: #2E2D2C;
  margin: 15px 0;
}

/********* LOGOUT *********/
.account-logout-container {
  margin-top: 30vh;
  text-align: center;
}
.account-logout-container a {
  color: white;
  background-color: #EC0000;
  border: 1px solid #EC0000;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 5px;
  text-decoration: none;
}
.account-logout-container .account-logout-cross {
  padding: 2px 5px;
  background-color: white;
  color: #EC0000;
  border: 1px solid white;
  border-radius: 50%;
  margin-right: 5px;
}

/*# sourceMappingURL=styles.css.map */
