/* Global */
* {
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: calc(1200px + 30px);
  margin: 0 auto;
  width: 100%;
  padding: 0px 15px;
  position: relative;
  z-index: 2;
}

.confirmation-page .header {
  border-bottom: 1px solid #ddd;
  background: #f8f8f8;
}
.confirmation-page .header .header-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
}
.confirmation-page .header .header-cont .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 266px;
}
.confirmation-page .header .header-cont .logo img {
  width: 100%;
}
.confirmation-page .section1 {
  position: relative;
}
.confirmation-page h1 {
  border-radius: 64px;
  background: #0b0b0b;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 132px;
  color: #fff;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-top: 20px;
}
.confirmation-page h2 {
  color: #0b0b0b;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.confirmation-page h2 span {
  color: #9158db;
  font-weight: 700;
}
.confirmation-page .section1:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 32px;
  background: #edebf1;
}
.confirmation-page .section1 .section1-cont {
  position: relative;
  padding: 100px 0px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.confirmation-page .section1 .section1-cont .left-side {
  flex: 0 0 490px;
}
.confirmation-page .section1 .section1-cont .left-side img {
  width: 100%;
}
.confirmation-page .section1 .section1-cont .right-side {
  padding: 0px 40px;
  flex: 0 0 490px;
}
.confirmation-page .section1 .section1-cont .right-side p {
  color: #0b0b0b;
  margin-bottom: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.confirmation-page .section1 .section1-cont .right-side .btn {
  border-radius: 64px;
  background: #9158db;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 48px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transform-style: preserve-3d;
}
.confirmation-page .section1 .section1-cont .right-side .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(5px);
}

.confirmation-page .section2 {
  padding: 40px 0px;
}
.confirmation-page .section2 .section2-cont h2 {
  color: #0b0b0b;
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.confirmation-page .section2 .section2-cont {
  max-width: 1000px;
  margin: 0 auto;
}
.confirmation-page .section2 .section2-cont .accordion .accordion-item {
  margin-bottom: 40px;
}
.confirmation-page
  .section2
  .section2-cont
  .accordion
  .accordion-item:last-child {
  margin-bottom: 0px;
}
.confirmation-page
  .section2
  .section2-cont
  .accordion
  .accordion-item
  .accordion-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0b0b0b;
  font-size: 24px;
  gap: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.confirmation-page
  .section2
  .section2-cont
  .accordion
  .accordion-item
  .accordion-content {
  color: #0b0b0b;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: none;
  overflow: hidden;
}

.confirmation-page
  .section2
  .section2-cont
  .accordion
  .accordion-item
  .accordion-inner {
  padding-bottom: 40px;
  padding-top: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.confirmation-page
  .section2
  .section2-cont
  .accordion
  .accordion-item
  .accordion-header
  .icon {
  position: relative;
  width: 16px;
  min-width: 16px;
  height: 2px;
  background-color: black;
}
.confirmation-page
  .section2
  .section2-cont
  .accordion
  .accordion-item
  .accordion-header
  .icon::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: black;
  left: 7px;
  top: -7px;
  transition: 0.2s;
}

.confirmation-page
  .section2
  .section2-cont
  .accordion
  .accordion-item.active
  .accordion-header
  .icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
@media only screen and (max-width: 1230px) {
  .confirmation-page .section1 .section1-cont .left-side {
    flex: 0 0 390px;
  }
}

@media only screen and (max-width: 992px) {
  .confirmation-page .section1 .section1-cont {
    flex-direction: column;
  }
  .confirmation-page .section1 .section1-cont .right-side,
  .confirmation-page .section1 .section1-cont .left-side {
    flex: initial;
  }
}

@media only screen and (max-width: 768px) {
  .confirmation-page .section2 .section2-cont h2 {
    font-size: 24px;
  }
  .confirmation-page .section1 {
    padding: 40px 0px;
  }
  .confirmation-page .section1:before {
    top: 40px;
    left: 15px;
    right: 15px;
    bottom: 20px;
    width: calc(100% - 30px);
    height: calc(100% - 80px);
  }
  .confirmation-page .section1 .section1-cont {
    padding: 20px 20px;
  }
  .confirmation-page .section1 .section1-cont .right-side {
    padding: 0px;
  }
  .confirmation-page .section1 .section1-cont .right-side .btn {
    width: 100%;
  }
  .confirmation-page .confirmation-page h2 {
    font-size: 24px;
  }
}

@media only screen and (max-width: 375px) {
}
