@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 */
.download-widget {
  margin-bottom: 40px;
}
.download-widget__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px;
  background-color: #F1F5F9;
  border: 1px solid #D0D6DD;
  border-radius: 16px;
  flex-direction: column-reverse;
}
.download-widget__panel {
  flex: 0 0 100%;
  width: 100%;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #FFF;
  border: 1px solid #D0D6DD;
  border-radius: 12px;
}
.download-widget__form {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.download-widget__form .form-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.download-widget__form .form-group > label {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
  display: block;
  flex: 0 0 100%;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.download-widget__form .form-group .radio-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
.download-widget__form .form-group .radio-button-group .radio-button {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.download-widget__form .form-group .radio-button-group .radio-button > label {
  text-transform: uppercase;
  color: #626B79;
}
.download-widget__form .form-group .radio-button-group .radio-button > input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0;
}
.download-widget__form .form-group.action .btn.btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 0;
  width: 100%;
  color: #FFF;
  background-color: #232933;
  border-color: #232933;
  transition: all linear 0.2s;
}
.download-widget__form .form-group.action .btn.btn-black:hover {
  background-color: #0e1115;
  border-color: #0e1115;
  transition: all linear 0.2s;
}
.download-widget__preview {
  border-radius: 12px;
  border: 1px solid #D0D6DD;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-widget__preview img {
  margin-bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
@media screen and (min-width: 1200px) {
  .download-widget__wrapper {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  .download-widget__panel {
    padding: 8px 8px 8px 16px;
  }
  .download-widget__form .form-group {
    gap: 16px;
    flex: 0 0 auto;
    width: auto;
  }
  .download-widget__form .form-group > label {
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 0;
  }
  .download-widget__form.action .btn.btn-black {
    width: auto;
  }
}

/* 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 .modal-close {
  z-index: 2;
}
.modal .modal-content .modal-close:hover {
  transform: rotate(0deg) !important;
}
.modal .modal-content.transparent {
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0;
}
.modal .modal-content.transparent img,
.modal .modal-content.transparent p {
  margin-bottom: 0;
}
.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=download-widget.css.map */