/* Variables */
:root {
  --width: 693px;
}

div.confirmation-page button[disabled] {
  border: 1px solid #f7f7f7;
  background-color: #f7f7f7;
  color: #797979;
}

div.confirmation-page button.button[disabled]:hover {
  color: #797979;
}

.confirmation-page button{
  min-width: 0;
}

.confirmation-page {
  background: var(--colorGrey);
  min-height: 100vh;
}

/* HEADER*/
.confirmation__header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.confirmation__header-logo-wrapper {
  margin-left: 55px;
  display: flex;
  align-items: baseline;
  margin-right: auto;
  position: relative;
  margin-top: 40px;
}

.confirmation__header-logo-wrapper span {
  color: var(--colorBlue);
  font-size: 10px;
  font-weight: bold;
  width: 62px;
  position: absolute;
  right: -10px;
  letter-spacing: 0;
}

.confirmation__header-logo {
  max-width: 155px;
  height: 35px;
}

/* confirmation */

.confirmation__content {
  background: var(--colorGrey);
  height: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.confirmation__content-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--colorWhite);
  padding: var(--spacingLarge) 60px;
  position: relative;
  width: var(--width);
  margin: 20px auto;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);

  & a {
    border-bottom: none !important;
  }
}

.confirmation__content-wrap span,
.confirmation__content-wrap p {
  font-size: 14px;
}
.confirmation__content-wrap h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
}
.confirmation__account button,
.confirmation__calendar button {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: normal;
  width: fit-content;
  margin-top: 20px;
  min-width: 0;
}

.confirmation__steps {
  align-items: normal;
  text-align: left;
}

h1.confirmation__title {
  font-size: 28px;
}

span.confirmation__subtitle {
  font-size: 20px;
}

.confirmation__steps-list {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  width: 100%;
}

.confirmation__step-icon {
  margin-right: 40px;
  position: relative;
}

.confirmation__step {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 30px;
  align-items: center;
}

.confirmation__step-text {
  text-align: left;
}
.confirmation__step-text p:first-child {
  font-weight: bold;
}
.confirmation__content-wrap p {
  margin: 0;
}
.confirmation__step-icon svg {
  height: 60px;
  width: 60px;
}

.confirmation__step-divider {
  border-left: 2px dashed #d4d4d4;
  height: 25px;
  position: absolute;
  left: calc(100% - 23px);
  top: 100%;
}

span.confirmation__calendar-date {
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: bold;
}

.confirmation__rating ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding: 0;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
}

.confirmation__rating li {
  margin: 4px;
}

.confirmation__rating-form {
  width: 100%;
  text-align: left;
}

.confirmation__rating-form div:first-of-type {
  margin: 20px 0;
}

.confirmation__rating-form button {
  padding: 12px 30px;
  font-weight: normal;
  margin: auto;
  display: flex;
  width: fit-content;
}

li.confirmation__active button {
  color: rgb(255, 255, 255);
  background-color: rgb(20, 32, 70);
}

.confirmation__rating button {
  border-radius: 50%;
  display: flex;
  align-content: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  min-width: 0;
  padding: 0;
  align-items: center;
}

.confirmation__logo-link {
  color: var(--colorBlue);
  border-bottom: none !important;
}

.confirmation__logo-link:hover {
  color: var(--colorBlue);
}

/* QUERIES */
@media screen and (max-width: 700px) {
  .confirmation__header {
    align-items: flex-start;
  }

  .confirmation__header-logo {
    height: 22px;
    max-width: 100px;
  }
  .confirmation__header-logo-wrapper {
    margin-top: 20px;
    margin-left: 20px;
  }

  .confirmation__header-logo-wrapper span {
    display: none;
  }
  h1.confirmation__title {
    font-size: 28px;
    text-align: center;
  }

  span.confirmation__subtitle {
    font-size: 20px;
    text-align: center;
  }
  .confirmation__content {
    padding-bottom: 20px;
    padding-top: 0px;
  }
  .confirmation__content-wrap {
    width: 100% !important;
    margin: 10px auto;
    padding-left: 12px;
    padding-right: 12px;
  }
  .confirmation__step-divider {
    display: none;
  }
  .confirmation__step {
    margin-bottom: 20px;
  }
}
