@keyframes bounceDown {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(6px);
  }
  57% {
    transform: scale(1, 1) translateY(-2px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
/* Fonts */
.doc-template-detail__head {
  padding: 32px 0;
  background-color: #A61C1C;
}
.doc-template-detail__title, .doc-template-detail__desc {
  text-align: center;
  color: #FFF;
}
.doc-template-detail__title {
  margin-bottom: 4px;
  font-size: 32px;
  line-height: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.doc-template-detail__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 64px 0;
}
.doc-template-detail__wrapper .left,
.doc-template-detail__wrapper .right {
  flex: 0 0 100%;
  width: 100%;
}
.doc-template-detail__wrapper .left {
  max-width: 750px;
}
.doc-template-detail__wrapper .right {
  max-width: 400px;
}
.doc-template-detail__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.doc-template-detail__nav .sm-dropdown {
  position: relative;
  display: flex;
  width: calc(50% - 6px);
  flex-wrap: wrap;
  justify-content: flex-start;
}
.doc-template-detail__nav .sm-dropdown.end {
  justify-content: flex-end;
}
.doc-template-detail__nav .sm-dropdown .selected {
  display: none;
}
.doc-template-detail__nav .nav-tabs,
.doc-template-detail__nav .nav-lang {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  background-color: #F4F4F4;
  padding: 8px;
  border-radius: 16px;
  gap: 12px;
}
.doc-template-detail__nav .nav-tabs li a,
.doc-template-detail__nav .nav-lang li a {
  display: flex;
  padding: 12px;
  border-radius: 12px;
  background-color: transparent;
  color: #626B79;
  text-decoration: none;
  transition: all linear 0.2s;
}
.doc-template-detail__nav .nav-tabs li a.active,
.doc-template-detail__nav .nav-lang li a.active {
  background-color: #232933;
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  pointer-events: none;
  transition: all linear 0.2s;
}
.doc-template-detail .doc-preview__viewer {
  background-color: #D0D6DD;
  padding: 12px;
  border-radius: 12px;
  max-height: 960px;
  overflow-x: hidden;
  overflow-y: auto;
}
.doc-template-detail .doc-preview__viewer canvas {
  background-color: #FFF;
  width: 100%;
  height: 100%;
  max-height: 929px;
  overflow: auto;
}
.doc-template-detail__form {
  padding: 32px 24px;
  background-color: #F1F5F9;
  border-radius: 16px;
}
.doc-template-detail__form .title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.doc-template-detail__form .form-group label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 20px;
  color: #232933;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.doc-template-detail__form .form-group small {
  font-size: 11px;
  line-height: 18px;
}
.doc-template-detail__form .form-group .form-control {
  padding: 8px 12px;
  border: 1px solid #D0D6DD;
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  color: #232933;
}
.doc-template-detail__form .form-group .btn.disabled {
  border-color: #D0D6DD;
  color: #8B95A5 !important;
  background-color: #EDF0F2;
  pointer-events: none;
  transition: all linear 0.2s;
}
.doc-template-detail__form .form-group:last-child {
  margin-bottom: 8px;
}
.doc-template-detail__form .divider {
  margin-bottom: 8px;
  text-align: center;
  color: #626B79;
}
@media screen and (max-width: 1199px) {
  .doc-template-detail .doc-preview__viewer {
    max-height: 620px;
  }
}
@media screen and (max-width: 1205px) {
  .doc-template-detail__wrapper .left {
    max-width: calc(100% - 432px);
  }
}
@media screen and (max-width: 991px) {
  .doc-template-detail__wrapper .left,
  .doc-template-detail__wrapper .right {
    max-width: 100%;
  }
  .doc-template-detail .doc-preview__viewer {
    max-height: 900px;
  }
}
@media screen and (max-width: 767px) {
  .doc-template-detail__wrapper {
    padding: 16px 0 32px 0;
  }
  .doc-template-detail__nav .sm-dropdown {
    justify-content: flex-start;
  }
  .doc-template-detail__nav .sm-dropdown.end {
    justify-content: flex-start;
  }
  .doc-template-detail__nav .sm-dropdown .selected {
    width: 100%;
    flex: 0 0 100%;
    padding: 8px;
    border-radius: 6px;
    background-color: #F4F4F4;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .doc-template-detail__nav .sm-dropdown .selected .label {
    flex: 0 0 100%;
    width: 100%;
    max-width: calc(100% - 36px);
    color: #2B2B2B;
    font-size: 16px;
    line-height: 24px;
  }
  .doc-template-detail__nav .sm-dropdown .selected .arrow {
    flex: 0 0 100%;
    width: 100%;
    max-width: 24px;
    transform: rotate(0deg);
    transition: all linear 0.2s;
  }
  .doc-template-detail__nav .sm-dropdown.active .arrow {
    transform: rotate(180deg);
    transition: all linear 0.2s;
  }
  .doc-template-detail__nav .sm-dropdown.active .nav-tabs,
  .doc-template-detail__nav .sm-dropdown.active .nav-lang {
    display: flex;
  }
  .doc-template-detail__nav .nav-tabs,
  .doc-template-detail__nav .nav-lang {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    display: none;
  }
  .doc-template-detail__nav .nav-tabs li,
  .doc-template-detail__nav .nav-lang li {
    display: block;
    width: 100%;
  }
  .doc-template-detail__nav .nav-tabs li a,
  .doc-template-detail__nav .nav-lang li a {
    width: 100%;
    padding: 8px 12px;
  }
  .doc-template-detail .doc-preview__viewer {
    max-height: 667px;
  }
}
@media screen and (max-width: 450px) {
  .doc-template-detail .doc-preview__viewer {
    max-height: 450px;
  }
}
@media screen and (max-width: 350px) {
  .doc-template-detail__title {
    line-height: 40px;
  }
  .doc-template-detail__wrapper {
    padding: 32px 0;
  }
}

/* Modal */
.modal__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 24px;
  text-align: center;
}
.modal .modal-dialog {
  max-width: 394px;
  display: flex;
  align-items: center;
  margin: 32px auto;
  min-height: calc(100% - 64px);
}
.modal .modal-content {
  padding: 32px;
  margin: 0 auto;
}
.modal .modal-content .title {
  font-size: 20px;
  line-height: 28px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin-bottom: 24px;
}
.modal .modal-content .form-group:last-child {
  margin-bottom: 0;
}
.modal .modal-content .form-group > label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
}
.modal .modal-content .form-group .form-control {
  padding: 8px 12px;
  border: 1px solid #D0D6DD;
  font-size: 14px;
  line-height: 20px;
  border-radius: 6px;
  color: #232933;
}
.modal .modal-content .form-group .dropdown.bootstrap-select .btn,
.modal .modal-content .form-group .dropdown.bootstrap-select button {
  font-size: 14px;
  line-height: 40px;
  border-radius: 6px;
  border-color: #D0D6DD;
}
.modal .modal-content .form-group.check {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
  align-items: flex-start;
}
.modal .modal-content .form-group.check input[type=checkbox] {
  width: 16px;
  flex: 0 0 16px;
  height: 20px;
  border: 1px solid #D0D6DD;
  border-radius: 4px;
}
.modal .modal-content .form-group.check label {
  width: 100%;
  flex: 0 0 100%;
  max-width: calc(100% - 22px);
  font-size: 14px;
  line-height: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
.modal .modal-content .form-group.radio .radio-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.modal .modal-content .form-group.radio .radio-button-group .radio-button {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
.modal .modal-content .form-group.radio .radio-button-group .radio-button input[type=radio] {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.modal .modal-content .form-group.radio .radio-button-group .radio-button label {
  font-size: 14px;
  line-height: 20px;
  color: #232933;
  margin: 0;
}
.modal .modal-content .form-group .btn.disabled {
  border-color: #D0D6DD;
  color: #8B95A5 !important;
  background-color: #EDF0F2;
  pointer-events: none;
  transition: all linear 0.2s;
}/*# sourceMappingURL=doc-template-detail.css.map */