@charset "UTF-8";

/* CSS Document */

.main{
  width: 100%;
  padding: 0;
}

/* --- HEADER --- */

.header {
  padding: 25px 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LOGO */

.header .logo{
  flex: 50%;
}
.header .logo a{
  width: fit-content;
  height: 25px;
  display: block;
}
.header .logo a img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CONTENT */

.header-content{
  flex: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* --- END HEADER --- */


/* --- LEVELS --- */

.level{
  width: fit-content;
  border: 1px solid #9A9B9A;
  padding: 8px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.level.level-1{
  border-color: #28B8BB;
}
.level.level-2{
  border-color: #F4C67E;
}
.level.level-3{
  border-color: #D5E3AE;
}
.level.level-4{
  border-color: #6AB98D;
}
.level.level-5{
  border-color: #FC016E;
}

.level .level-icon{
  width: 18px;
  height: 18px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.level.level-1 .level-icon{
  background-image: url(../images/star-executive.svg);
}
.level.level-2 .level-icon{
  background-image: url(../images/star-slim.svg);
}
.level.level-3 .level-icon{
  background-image: url(../images/star-third.svg);
}
.level.level-4 .level-icon{
  background-image: url(../images/star-lifestyle.svg);
}
.level.level-5 .level-icon{
  background-image: url(../images/star-magenta.svg);
}

.level .level-label{
  font-family: 'Raleway Regular';
  font-size: 12px;
}
.level.level-1 .level-label{
  color: #28B8BB;
}
.level.level-2 .level-label{
  color: #F4C67E;
}
.level.level-3 .level-label{
  color: #D5E3AE;
}
.level.level-4 .level-label{
  color: #6AB98D;
}
.level.level-5 .level-label{
  color: #FC016E;
}

/* --- END LEVELS --- */


/* --- CLIENTS --- */

.clients{
  width: 95%;
  max-width: 1200px;
  margin: auto;
  padding: 10px 0;
}

.clients .container-page {
  min-height: initial;
  padding: 0;
  background-color: transparent;
  border: 0;
}

/* TITLE & POINTS */

.client-title .title{
  margin-bottom: 10px !important;
}
.client-title a:hover{
  color: #28B8BB;
}
.client-title .points{
  display: flex;
  align-items: center;
  gap: 30px;
}
.client-title .points p{
  font-family: 'Raleway Regular';
}
.client-title .points span{
  color: #28B8BB;
  font-family: 'Raleway Medium';
}
.client-title .points .btn{
  width: fit-content;
  padding: 2px 15px 3px;
  font-size: 12px;
  color: #0A0A0A;
  background-color: #28B8BB;
  border-radius: 50px;
}
.client-title .points .btn:hover{
  background-color: #F4C67E;
}

/* CARD */

.cards{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.cards .card{
  height: auto;
  background-color: #0F0F0F;
  padding: 40px;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: initial;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cards .card.client-info{
  flex: 48%;
}
.cards .card.level-progress{
  flex: 37%;
}

/* CLIENT INFO */

.cards .card.client-info .client-profile-image figure{
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
}
.cards .card.client-info .client-profile-image figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards .card.client-info .client-profile-info{
  flex: 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cards .card.client-info .client-profile-info .btn-edit{
  width: 20px;
  height: 20px;
  position: absolute;
  right: 40px;
  top: 40px;
}
.cards .card.client-info .client-profile-info .btn-edit:hover{
  transform: scale(1.1);
}
.cards .card.client-info .client-profile-info .btn-edit img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.cards .card.client-info .client-profile-info .infos{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cards .card.client-info .client-profile-info .infos .item{
  display: flex;
  align-items: center;
  gap: 15px;
}
.cards .card.client-info .client-profile-info .infos .item img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* LEVEL PROGRESS */

.cards .card.level-progress .content-card{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.cards .card.level-progress .content-card .chart-level{
  width: 180px;
  height: 180px;
  background-image: url(../images/chart-level-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.cards .card.level-progress .content-card .chart-level .percent{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.cards .card.level-progress .content-card .infos-content{
  flex: 30%;
  gap: 20px;
}
.cards .card.level-progress .content-card .infos-content .btn{
  width: fit-content;
  padding: 8px 15px 9px;
  font-size: 14px;
  line-height: 120%;
  color: #0A0A0A;
  background-color: #28B8BB;
  border-radius: 10px;
}
.cards .card.level-progress .content-card .infos-content .btn:hover{
  background-color: #F4C67E;
}

/* RESERVATIONS */

.cards .card.reservations{
  width: 100%;
}
.cards .card.reservations header{
  width: 100%;
}
.cards .card.reservations .content-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.cards .card.reservations .content-card .item-card{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.cards .card.reservations .content-card .item-card .hotel-image figure{
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
}
.cards .card.reservations .content-card .item-card .hotel-image figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards .card.reservations .content-card .item-card .infos{
  flex: 45%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cards .card.reservations .content-card .item-card .infos .item{
  display: flex;
  align-items: center;
  gap: 15px;
}
.cards .card.reservations .content-card .item-card .infos .item img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.cards .card.reservations .content-card .item-card .infos .item.reservation .status{
  color: #0A0A0A;
  font-size: 12px;
  padding: 5px 15px 4px;
  border-radius: 50px;
  margin-left: 15px;
}
.cards .card.reservations .content-card .item-card .infos .item.reservation .status.confirmed{
  background-color: #6AB98D;
}
.cards .card.reservations .content-card .item-card .infos .item.reservation .status.waiting{
  background-color: #F4C67E;
}
.cards .card.reservations .content-card .item-card .infos .item.reservation .status.completed{
  background-color: #28B8BB;
}
.cards .card.reservations .content-card .item-card .infos .item.reservation .status.canceled{
  background-color: #FC016E;
  color: #EFEFEF;
}
.cards .card.reservations .content-card .item-card .infos .item.action {
  margin-top: 10px;
}
.cards .card.reservations .content-card .item-card .infos .item.action .btn {
  width: fit-content;
  padding: 8px 15px 9px;
  font-size: 14px;
  line-height: 120%;
  color: #0A0A0A;
  background-color: #28B8BB;
  border-radius: 10px;
}
.cards .card.reservations .content-card .item-card .infos .item.action .btn:hover{
  background-color: #F4C67E;
}

/* FORM */

.cards .card.client-info.form{
  align-items: flex-start;
}
.cards .card.client-info.form .content-form{
  flex: 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cards .card.client-info.form .custom-form{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.cards .card.client-info.form .client-profile-image{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cards .card.client-info.form .client-profile-image .btn{
  width: 100%;
  color: #0A0A0A;
  font-family: 'Raleway Regular';
  font-size: 16px;
  background-color: #28B8BB;
  border: 0;
  border-radius: 10px;
}
.cards .card.client-info.form .client-profile-image .btn:hover{
  background-color: #F4C67E;
}

.cards .card.client-info.form .content-form .actions .btn{
  height: auto;
  padding: 13px 30px;
}
.cards .card.client-info.form .content-form .actions .btn.save,
.cards .card.client-info.form .content-form .actions .btn.save:active,
.cards .card.client-info.form .content-form .actions .btn.save:focus{
  width: fit-content !important;
  color: #0A0A0A;
  background-color: #28B8BB;
}
.cards .card.client-info.form .content-form .actions .btn.save:hover{
  background-color: #F4C67E;
}
.cards .card.client-info.form .content-form .actions .btn.cancel{
  color: #28B8BB;
  border-color: #28B8BB !important;
}
.cards .card.client-info.form .content-form .actions .btn.cancel:hover{
  color: #F4C67E;
  border-color: #F4C67E !important;
}

/* --- END CLIENTS --- */


/* --- ADS --- */

.ads .content-ad{
  width: 100%;
  height: 300px;
  border-radius: 20px;
  padding: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.ads .content-ad .text{
  font-size: 40px;
  font-family: 'Raleway ExtraBold';
  color: #EFEFEF;
  text-align: center;
}
.ads .content-ad .btn{
  width: fit-content;
  padding: 10px 25px 11px;
  font-size: 16px;
  line-height: 120%;
  color: #0A0A0A;
  background-color: #28B8BB;
  border-radius: 10px;
}
.ads .content-ad .btn:hover{
  background-color: #F4C67E;
}

/* --- END ADS --- */


/* --- RESPONSIVE --- */

@media (max-width: 1600px) {
}
@media (max-width: 1366px) {
}
@media (max-width: 1280px) {

  /* --- TEXTS & TITLES --- */

  /* TITLES */

  .title.double-extra-large {
    font-size: 32px;
  }
  .title.extra-large {
    font-size: 28px;
  }
  .title.large {
    font-size: 22px;
  }
  .title.medium {
    font-size: 18px;
  }
  .title.small {
    font-size: 16px;
  }
  .title.mini {
    font-size: 12px;
  }

  /* --- ENDS TEXTS & TITLES --- */

  
  /* --- CLIENTS --- */

  /* CLIENT INFO */

  .cards .card.client-info .client-profile-image figure{
    width: 200px;
    height: 200px;
  }
  .cards .card.client-info .client-profile-info {
    flex: 40%
  }

  /* LEVEL PROGRESS */

  .cards .card.level-progress .content-card .chart-level {
    width: 140px;
    height: 140px;
  }
  .cards .card.level-progress .content-card .infos-points p{
    font-size: 18px;
  }

  /* RESERVATIONS */

  .cards .card.reservations .content-card .item-card .hotel-image figure{
    width: 200px;
    height: 200px;
  }

  /* --- END CLIENTS --- */
}
@media (max-width: 1200px) {
}
@media (max-width: 1100px) {
}
@media (max-width: 991.98px) {
  .main {
    width: 100%;
  }

  /* --- TEXTS & TITLES --- */

  /* TITLES */

  .title.double-extra-large {
    font-size: 28px;
  }
  .title.extra-large {
    font-size: 22px;
  }
  .title.large {
    font-size: 18px;
  }
  .title.medium {
    font-size: 16px;
  }
  .title.small {
    font-size: 14px;
  }

  /* --- ENDS TEXTS & TITLES --- */

  
  /* --- CLIENTS --- */

  .cards .card.client-info,
  .cards .card.level-progress {
    flex: 100%
  }

  /* LEVEL PROGRESS */

  .cards .card.level-progress {
    flex-direction: column;
    align-items: flex-start;
  }

  /* --- END CLIENTS --- */
}
@media (max-width: 768px) {
  .main {
    padding: 0 10px;
  }

  /* --- HEADER --- */

  .header {
    padding: 10px;
  }
  .header .logo {
    flex: 50%;
  }
  .header .header-content {
    flex: auto;
  }
  .header .header-content .level{
    display: none;
  }

  /* --- END HEADER --- */


  /* --- CLIENTS --- */

  /* TITLE & POINTS */

  .client-title .title{
    margin-bottom: 20px !important;
  }
  .client-title .points {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* RESERVATIONS */

  .cards .card.reservations .content-card .item-card{
    flex-direction: column;
    align-items: flex-start;
  }
  .cards .card.reservations .content-card .item-card .infos .item {
    align-items: flex-start;
  }
  .cards .card.reservations .content-card .item-card .infos .item.reservation .status {
    display: block;
    width: fit-content;
    margin: 5px 0 0;
  }

  /* --- END CLIENTS --- */
}
@media (max-width: 650px) {

  /* --- CLIENTS --- */

  .cards {
    gap: 30px;
  }
  .cards .card{
    padding: 30px;
    gap: 25px;
  }

  /* CLIENT INFO */

  .cards .card.client-info .client-profile-image figure {
    width: 100%;
    height: auto;
    max-height: 230px;
  }

  /* LEVEL PROGRESS */

  .cards .card.level-progress .content-card .chart-level {
    width: 180px;
    height: 180px;
    margin: auto;
  }

  /* RESERVATIONS */

  .cards .card.reservations .content-card .item-card .hotel-image figure{
    width: 100%;
    height: auto;
    max-height: 230px;
  }

  /* FORM */

  .cards .card.client-info.form .content-form .actions .btn,
  .cards .card.client-info.form .content-form .actions .btn.save{
    width: 100% !important;
    font-size: 16px;
  }

  /* --- END CLIENTS --- */

  /* --- ADS --- */

  .ads .content-ad {
    height: auto;
    padding: 30px;
  }
  .ads .content-ad .text{
    font-size: 22px;
  }

  /* --- END ADS --- */
}
@media (max-width: 480px) {

  /* --- CLIENTS --- */

  /* FORM */

  .cards .card.client-info.form .client-profile-image {
    width: 100%;
  }

  /* --- END CLIENTS --- */
}
@media (max-width: 380px) {
}

/* --- END RESPONSIVE --- */
