:root {
  --primary-color: #1dce5c;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 100%;
  padding: 0;
  margin: 10px 0 0;
  font-size: 0.875rem;
  color: #333;
  text-align: left;
  list-style: none;
  background-color: #1d1d1d;
  background-clip: padding-box;
  border: 0 solid rgba(40, 40, 40, 0.15);
  border-radius: 4px;
}

.close {
  float: right;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  color: #282828;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.close:hover {
  color: #282828;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  appearance: none;
}

a.close.disabled {
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal {
  position: fixed;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
  width: 70%;
  left: 0;
  right: 0;
  top: 5rem;
  margin: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered:before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable:before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(40, 40, 40, 0.2);
  border-radius: 4px;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.9;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 0 solid #eaeaea;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.modal-header .close {
  padding: 20px;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.6;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 0 solid #eaeaea;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.modal-footer>* {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 560px;
    margin: 0.5rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 1rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 1rem);
  }

  .modal-dialog-centered:before {
    height: calc(100vh - 1rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}


.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 10px !important;
}

.mt-1,
.my-1 {
  margin-top: 10px !important;
}

.mr-1,
.mx-1 {
  margin-right: 10px !important;
}

.mb-1,
.my-1 {
  margin-bottom: 10px !important;
}

.ml-1,
.mx-1 {
  margin-left: 10px !important;
}

.m-2 {
  margin: 20px !important;
}

.mt-2,
.my-2 {
  margin-top: 20px !important;
}

.mr-2,
.mx-2 {
  margin-right: 20px !important;
}

.mb-2,
.my-2 {
  margin-bottom: 20px !important;
}

.ml-2,
.mx-2 {
  margin-left: 20px !important;
}

.m-3 {
  margin: 30px !important;
}

.mt-3,
.my-3 {
  margin-top: 30px !important;
}

.mr-3,
.mx-3 {
  margin-right: 30px !important;
}

.mb-3,
.my-3 {
  margin-bottom: 30px !important;
}

.ml-3,
.mx-3 {
  margin-left: 30px !important;
}

.m-4 {
  margin: 40px !important;
}

.mt-4,
.my-4 {
  margin-top: 40px !important;
}

.mr-4,
.mx-4 {
  margin-right: 40px !important;
}

.mb-4,
.my-4 {
  margin-bottom: 40px !important;
}

.ml-4,
.mx-4 {
  margin-left: 40px !important;
}

.m-5 {
  margin: 50px !important;
}

.mt-5,
.my-5 {
  margin-top: 50px !important;
}

.mr-5,
.mx-5 {
  margin-right: 50px !important;
}

.mb-5,
.my-5 {
  margin-bottom: 50px !important;
}

.ml-5,
.mx-5 {
  margin-left: 50px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 10px !important;
}

.pt-1,
.py-1 {
  padding-top: 10px !important;
}

.pr-1,
.px-1 {
  padding-right: 10px !important;
}

.pb-1,
.py-1 {
  padding-bottom: 10px !important;
}

.pl-1,
.px-1 {
  padding-left: 10px !important;
}

.p-2 {
  padding: 20px !important;
}

.pt-2,
.py-2 {
  padding-top: 20px !important;
}

.pr-2,
.px-2 {
  padding-right: 20px !important;
}

.pb-2,
.py-2 {
  padding-bottom: 20px !important;
}

.pl-2,
.px-2 {
  padding-left: 20px !important;
}

.p-3 {
  padding: 30px !important;
}

.pt-3,
.py-3 {
  padding-top: 30px !important;
}

.pr-3,
.px-3 {
  padding-right: 30px !important;
}

.pb-3,
.py-3 {
  padding-bottom: 30px !important;
}

.pl-3,
.px-3 {
  padding-left: 30px !important;
}

.p-4 {
  padding: 40px !important;
}

.pt-4,
.py-4 {
  padding-top: 40px !important;
}

.pr-4,
.px-4 {
  padding-right: 40px !important;
}

.pb-4,
.py-4 {
  padding-bottom: 40px !important;
}

.pl-4,
.px-4 {
  padding-left: 40px !important;
}

.p-5 {
  padding: 50px !important;
}

.pt-5,
.py-5 {
  padding-top: 50px !important;
}

.pr-5,
.px-5 {
  padding-right: 50px !important;
}

.pb-5,
.py-5 {
  padding-bottom: 50px !important;
}

.pl-5,
.px-5 {
  padding-left: 50px !important;
}

.m-n1 {
  margin: -10px !important;
}

.mt-n1,
.my-n1 {
  margin-top: -10px !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -10px !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -10px !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -10px !important;
}

.m-n2 {
  margin: -20px !important;
}

.mt-n2,
.my-n2 {
  margin-top: -20px !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -20px !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -20px !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -20px !important;
}

.m-n3 {
  margin: -30px !important;
}

.mt-n3,
.my-n3 {
  margin-top: -30px !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -30px !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -30px !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -30px !important;
}

.m-n4 {
  margin: -40px !important;
}

.mt-n4,
.my-n4 {
  margin-top: -40px !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -40px !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -40px !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -40px !important;
}

.m-n5 {
  margin: -50px !important;
}

.mt-n5,
.my-n5 {
  margin-top: -50px !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -50px !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -50px !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -50px !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 10px !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 10px !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 10px !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 10px !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 10px !important;
  }

  .m-sm-2 {
    margin: 20px !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 20px !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 20px !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 20px !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 20px !important;
  }

  .m-sm-3 {
    margin: 30px !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 30px !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 30px !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 30px !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 30px !important;
  }

  .m-sm-4 {
    margin: 40px !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 40px !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 40px !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 40px !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 40px !important;
  }

  .m-sm-5 {
    margin: 50px !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 50px !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 50px !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 50px !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 50px !important;
  }


  .m-sm-n1 {
    margin: -10px !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -10px !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -10px !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -10px !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -10px !important;
  }

  .m-sm-n2 {
    margin: -20px !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -20px !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -20px !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -20px !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -20px !important;
  }

  .m-sm-n3 {
    margin: -30px !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -30px !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -30px !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -30px !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -30px !important;
  }

  .m-sm-n4 {
    margin: -40px !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -40px !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -40px !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -40px !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -40px !important;
  }

  .m-sm-n5 {
    margin: -50px !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -50px !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -50px !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -50px !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -50px !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 10px !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 10px !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 10px !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 10px !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 10px !important;
  }

  .m-md-2 {
    margin: 20px !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 20px !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 20px !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 20px !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 20px !important;
  }

  .m-md-3 {
    margin: 30px !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 30px !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 30px !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 30px !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 30px !important;
  }

  .m-md-4 {
    margin: 40px !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 40px !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 40px !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 40px !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 40px !important;
  }

  .m-md-5 {
    margin: 50px !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 50px !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 50px !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 50px !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 50px !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 10px !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 10px !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 10px !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 10px !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 10px !important;
  }

  .p-md-2 {
    padding: 20px !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 20px !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 20px !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 20px !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 20px !important;
  }

  .p-md-3 {
    padding: 30px !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 30px !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 30px !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 30px !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 30px !important;
  }

  .p-md-4 {
    padding: 40px !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 40px !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 40px !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 40px !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 40px !important;
  }

  .p-md-5 {
    padding: 50px !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 50px !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 50px !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 50px !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 50px !important;
  }

  .m-md-n1 {
    margin: -10px !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -10px !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -10px !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -10px !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -10px !important;
  }

  .m-md-n2 {
    margin: -20px !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -20px !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -20px !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -20px !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -20px !important;
  }

  .m-md-n3 {
    margin: -30px !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -30px !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -30px !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -30px !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -30px !important;
  }

  .m-md-n4 {
    margin: -40px !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -40px !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -40px !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -40px !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -40px !important;
  }

  .m-md-n5 {
    margin: -50px !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -50px !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -50px !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -50px !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -50px !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 10px !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 10px !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 10px !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 10px !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 10px !important;
  }

  .m-lg-2 {
    margin: 20px !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 20px !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 20px !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 20px !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 20px !important;
  }

  .m-lg-3 {
    margin: 30px !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 30px !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 30px !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 30px !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 30px !important;
  }

  .m-lg-4 {
    margin: 40px !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 40px !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 40px !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 40px !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 40px !important;
  }

  .m-lg-5 {
    margin: 50px !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 50px !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 50px !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 50px !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 50px !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 10px !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 10px !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 10px !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 10px !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 10px !important;
  }

  .p-lg-2 {
    padding: 20px !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 20px !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 20px !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 20px !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 20px !important;
  }

  .p-lg-3 {
    padding: 30px !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 30px !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 30px !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 30px !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 30px !important;
  }

  .p-lg-4 {
    padding: 40px !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 40px !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 40px !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 40px !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 40px !important;
  }

  .p-lg-5 {
    padding: 50px !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 50px !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 50px !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 50px !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 50px !important;
  }

  .m-lg-n1 {
    margin: -10px !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -10px !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -10px !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -10px !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -10px !important;
  }

  .m-lg-n2 {
    margin: -20px !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -20px !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -20px !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -20px !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -20px !important;
  }

  .m-lg-n3 {
    margin: -30px !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -30px !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -30px !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -30px !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -30px !important;
  }

  .m-lg-n4 {
    margin: -40px !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -40px !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -40px !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -40px !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -40px !important;
  }

  .m-lg-n5 {
    margin: -50px !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -50px !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -50px !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -50px !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -50px !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 10px !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 10px !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 10px !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 10px !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 10px !important;
  }

  .m-xl-2 {
    margin: 20px !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 20px !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 20px !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 20px !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 20px !important;
  }

  .m-xl-3 {
    margin: 30px !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 30px !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 30px !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 30px !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 30px !important;
  }

  .m-xl-4 {
    margin: 40px !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 40px !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 40px !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 40px !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 40px !important;
  }

  .m-xl-5 {
    margin: 50px !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 50px !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 50px !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 50px !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 50px !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 10px !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 10px !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 10px !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 10px !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 10px !important;
  }

  .p-xl-2 {
    padding: 20px !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 20px !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 20px !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 20px !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 20px !important;
  }

  .p-xl-3 {
    padding: 30px !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 30px !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 30px !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 30px !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 30px !important;
  }

  .p-xl-4 {
    padding: 40px !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 40px !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 40px !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 40px !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 40px !important;
  }

  .p-xl-5 {
    padding: 50px !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 50px !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 50px !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 50px !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 50px !important;
  }

  .m-xl-n1 {
    margin: -10px !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -10px !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -10px !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -10px !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -10px !important;
  }

  .m-xl-n2 {
    margin: -20px !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -20px !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -20px !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -20px !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -20px !important;
  }

  .m-xl-n3 {
    margin: -30px !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -30px !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -30px !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -30px !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -30px !important;
  }

  .m-xl-n4 {
    margin: -40px !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -40px !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -40px !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -40px !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -40px !important;
  }

  .m-xl-n5 {
    margin: -50px !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -50px !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -50px !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -50px !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -50px !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono,
    Courier New, monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #2d63ba !important;
}

a.text-primary:focus,
a.text-primary:hover {
  color: #e60000 !important;
}

.text-secondary {
  color: #32be5b !important;
}

a.text-secondary:focus,
a.text-secondary:hover {
  color: #22813e !important;
}

.text-success {
  color: #32be5b !important;
}

a.text-success:focus,
a.text-success:hover {
  color: #22813e !important;
}

.text-info {
  color: #3bb5e9 !important;
}

a.text-info:focus,
a.text-info:hover {
  color: #168ec2 !important;
}

.text-warning {
  color: #ffb103 !important;
}

a.text-warning:focus,
a.text-warning:hover {
  color: #b67d00 !important;
}

.text-danger {
  color: #2d63ba !important;
}

a.text-danger:focus,
a.text-danger:hover {
  color: #e60000 !important;
}

.text-light {
  color: #f6f6f6 !important;
}

a.text-light:focus,
a.text-light:hover {
  color: #d0d0d0 !important;
}

.text-dark {
  color: #959595 !important;
}

a.text-dark:focus,
a.text-dark:hover {
  color: #6f6f6f !important;
}

.text-body {
  color: #333 !important;
}

.text-muted {
  color: #959595 !important;
}

.text-black-50 {
  color: rgba(40, 40, 40, 0.5) !important;
}

.text-white-50 {
  color: hsla(0, 0%, 100%, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {

  *,
  :after,
  :before {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]:after {
    content: " ("attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  blockquote,
  pre {
    border: 1px solid #959595;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  img,
  tr {
    page-break-inside: avoid;
  }

  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  .container,
  body {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #282828;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered td,
  .table-bordered th {
    border: 1px solid #dedede !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark tbody+tbody,
  .table-dark td,
  .table-dark th,
  .table-dark thead th {
    border-color: #eaeaea;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #eaeaea;
  }
}

a:active,
a:focus,
button:active,
button:focus,
input:active,
input:focus {
  outline: none !important;
}

:active,
:focus {
  outline: none;
}

body,
html {
  height: 100%;
}

/* img {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic
} */

img,
svg {
  vertical-align: top;
}

svg {
  overflow: visible !important;

  transform: translateZ(0);
}

svg [fill="none"] {
  fill: none;
}

.btn,
[class*="btn-icon-"],
a {
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn svg,
[class*="btn-icon-"] svg,
a svg {
  transition: opacity 0.15s ease-in-out;
}

.btn svg path,
[class*="btn-icon-"] svg path,
a svg path {
  transition: fill 0.15s ease-in-out;
}

.no-select,
.no-select * {
  user-select: none;
}

b {
  font-weight: 700;
}

cite,
em,
i {
  font-weight: 400;
}

.font-weight-sbold {
  font-weight: 600 !important;
}

p:last-child {
  margin-bottom: 0;
}

h1 {
  font-weight: 400;
  font-size: 27px;
  line-height: 32px;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 33px;
    line-height: 44px;
    letter-spacing: -1.3px;
  }
}

.h2,
h2 {
  line-height: 30px;
  letter-spacing: -0.3px;
}

.h3,
h3 {
  line-height: 28px;
}

.h3,
.h4,
h3,
h4 {
  letter-spacing: -0.2px;
}

.h4,
h4 {
  line-height: 24px;
}

.invert-colors h1,
.invert-colors h2,
.invert-colors h3,
.invert-colors h4,
.invert-colors h5,
.invert-colors h6 {
  color: #fff;
}

.section-title {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 50px;
}

.section-title:first-child {
  margin-top: -5px;
}



.list-checkmark {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.list-checkmark li {
  position: relative;
  padding-left: 1.8em;
}

.list-checkmark li:before {
  content: "";
  position: absolute;
  top: 0.32em;
  left: 4px;
  width: 0.367em;
  height: 0.72em;
  border-color: currentcolor;
  border-style: solid;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.list-checkmark-red li:before {
  border-color: #2d63ba;
}

.list-checkmark-green li:before {
  border-color: #32be5b;
}

.list-checkmark-info li:before {
  border-color: #3bb5e9;
}

[lang="ar"] .list-checkmark {
  text-align: right;
}

[lang="ar"] .list-checkmark li {
  direction: rtl;
  padding-left: 0;
  padding-right: 1.8em;
}

[lang="ar"] .list-checkmark li:before {
  left: auto;
  right: 4px;
}

.text-size-13 {
  font-size: 13px;
  line-height: 21px;
}

@media (min-width: 768px) {
  .text-size-md-13 {
    font-size: 13px;
    line-height: 22px;
  }

  .text-size-md-13.list-checkmark>li {
    padding-left: 1.7em;
  }

  .text-size-md-13.list-checkmark>li:before {
    top: 0.4em;
    left: 3px;
  }
}

@media (min-width: 768px) {
  [lang="ar"] .text-size-md-13.list-checkmark>li {
    padding-left: 0;
    padding-right: 1.7em;
  }

  [lang="ar"] .text-size-md-13.list-checkmark>li:before {
    left: auto;
    right: 3px;
  }
}

.list-spacing-md>li {
  margin-bottom: 8px;
}

.text-primary-hover:hover,
a.text-primary:focus,
a.text-primary:hover {
  color: #2d63ba !important;
}

.text-primary-hover.text-white:hover {
  color: #f66 !important;
}

.text-blue {
  color: #3bb5e9 !important;
}

.text-red {
  color: #2d63ba !important;
}

.text-red-lighten {
  color: #f66 !important;
}

.text-yellow {
  color: #ffb103 !important;
}

.text-green {
  color: #32be5b !important;
}

.text-error {
  color: #fc2504 !important;
}

.text-gray {
  color: #333 !important;
}

.text-gray-500 {
  color: #959595 !important;
}

.main-container {
  width: 100%;
  min-width: 300px;
  overflow-x: hidden;
}

.main-container>.main-content {
  width: 100%;
}

.main-container.full-height {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
}

.main-container.full-height>.main-content {
  flex: 1 1 auto;
}



.content-area {
  padding: 25px 0;
}

@media (min-width: 768px) {
  .content-area {
    padding: 55px 0;
  }
}

.content-section .container {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .content-section .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}


.widget-nav .card-body {
  padding: 0 !important;
}

.widget-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget-nav ul li {
  padding: 0;
  margin: 0;
  border-top: 1px solid #eaeaea;
}

.widget-nav ul li:first-child {
  border-top: none;
}

.widget-nav ul li a {
  display: flex;
  padding: 13px 20px 12px;
  font-size: 14px;
  line-height: 22px;
  color: #333;
  text-decoration: none;
}

.widget-nav ul li a i {
  padding: 2px 10px 0 0;
}

.widget-nav ul li a span {
  flex: 1 1 auto;
  letter-spacing: -0.1px;
}

.widget-nav ul li a:hover {
  background-color: #f6f6f6;
}

.widget-nav ul li a svg path:first-child {
  fill: #2d63ba;
}

@media (min-width: 768px) {
  .widget-nav ul li a {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row>.col,
.row>[class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .row {
    margin-right: -20px;
    margin-left: -20px;
  }

  .row>.col,
  .row>[class*="col-"] {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.row-spacing-normal {
  margin-right: -15px;
  margin-left: -15px;
}

.row-spacing-normal>.col,
.row-spacing-normal>[class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

.row-spacing-20 {
  margin-right: -10px;
  margin-left: -10px;
}

.row-spacing-20>.col,
.row-spacing-20>[class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}

@media (min-width: 992px) {
  .row-spacing-xl {
    margin-right: -30px;
    margin-left: -30px;
  }

  .row-spacing-xl>.col,
  .row-spacing-xl>[class*="col-"] {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .row-spacing-xl {
    margin-right: -40px;
    margin-left: -40px;
  }

  .row-spacing-xl>.col,
  .row-spacing-xl>[class*="col-"] {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.ui-badge {
  position: relative;
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0.2px !important;
  font-size: 9px !important;
  line-height: 13px !important;
  font-weight: 400 !important;
  padding: 0 4px !important;
  text-transform: uppercase;
  color: #2d63ba;
  border: 1px solid;
  border-radius: 2px;
}

.ui-badge.is-medium {
  font-size: 11px !important;
  line-height: 14px !important;
  padding: 1px 6px !important;
}

.ui-badge.is-large {
  font-size: 14px !important;
  line-height: 16px !important;
  padding: 1px 7px !important;
}

.ui-badge .ui-badge-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  overflow: hidden;
  background: currentColor;
  font-size: inherit;
  line-height: inherit;
}

.ui-badge .ui-badge-bar>span {
  color: #fff;
  padding: 0 4px;
}

.format-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  width: 28px;
  height: 32px;
  color: #959595;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23bbbbbb' viewBox='0 0 24 24'%3E%3Cpath d='M17,19H7c-0.553,0-1-0.447-1-1v-7h6V5h5c0.553,0,1,0.447,1,1v12C18,18.553,17.553,19,17,19z M6.02,10L11,5v5H6.02z'/%3E%3C/svg%3E");
  background-color: #fff;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 4px;
}

.files-container-box .format-icon {
  background-color: #fafafa;
}

.format-icon svg {
  display: none !important;
  fill: currentColor;
}

.f-archive {
  color: #ee470c;
}

.f-audio {
  color: #6d90f2;
}

.f-cad {
  color: #5daabc;
}

.f-document {
  color: #7d9cb1;
}

.f-ebook {
  color: #ffb202;
}

.f-font {
  color: #6d83ac;
}

.f-image {
  color: #a067e6;
}

.f-presentation {
  color: #ec7004;
}

.f-vector {
  color: #cdba6d;
}

.f-video {
  color: #3aa8ff;
}

.f-doc,
.f-docm,
.f-docx,
.f-dot,
.f-dotm,
.f-dotx,
.f-rtf {
  color: #4ac6fb;
}

.f-xls,
.f-xlsx {
  color: #4fcb4b;
}

.f-pdf {
  color: #fd1e1e;
}

.f-html {
  color: #7cabae;
}

.f-epub {
  color: #80bc39;
}

.f-psd {
  color: #35c1eb;
}

.f-pot,
.f-potm,
.f-potx,
.f-pps,
.f-ppsm,
.f-ppsx,
.f-ppt,
.f-pptm,
.f-pptx {
  color: #ff6e25;
}

.f-ai {
  color: #ff9200;
}

.format-icon.f-archive {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ee470c' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12,15.889L5,12l1.556-0.778c0,0,5.444,3.112,5.444,3.111c0,0.001,5.443-3.11,5.443-3.11L19,12L12,15.889zM12,12.777L5,8.888C5,8.888,12.055,5,12,5c0.055,0,7,3.889,7,3.889L12,12.777z M12,17.443c0,0.002,5.443-3.109,5.443-3.109L19,15.111c0,0-7.047,3.889-7,3.889c-0.047,0-7-3.889-7-3.889l1.556-0.778C6.556,14.333,12,17.445,12,17.443z'/%3E%3C/svg%3E");
}

.format-icon.f-audio {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236d90f2' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M13.21,5h-1.07v9.613c-0.685-0.381-1.62-0.504-2.58-0.271c-1.687,0.405-2.812,1.753-2.511,3.007c0.3,1.254,1.913,1.939,3.6,1.533c1.544-0.369,2.615-1.527,2.558-2.682h0.003V8.34c1.752,1.296,3.29,1.123,3.575,4.21C20.188,7.362,13.354,7.498,13.21,5z'/%3E%3C/svg%3E");
}

.format-icon.f-cad {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%235daabc' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12,5L6,8.5v7l6,3.5l6-3.5v-7L12,5z M12,12L6.864,9.004l5.134-2.996l5.135,2.996L12,12z'/%3E%3C/svg%3E");
}



.format-icon.f-ebook {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffb202' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5.568,17.227l0.054-0.033c1.72-1.129,3.972-1.024,5.579,0.26l0.586,0.469c0.137,0.104,0.326,0.104,0.462,0l0.533-0.451c1.622-1.336,3.93-1.441,5.667-0.261c0.23,0.156,0.551,0,0.551-0.278V7.366c0-0.122-0.053-0.226-0.16-0.278L18.432,6.81c-1.736-1.164-4.029-1.059-5.65,0.26L12.23,7.522c-0.136,0.104-0.325,0.104-0.461,0l-0.568-0.469c-1.608-1.301-3.875-1.407-5.598-0.26L5.16,7.07C5.064,7.139,5.006,7.248,5,7.365v9.567C5.018,17.209,5.338,17.383,5.568,17.227L5.568,17.227z'/%3E%3C/svg%3E");
}

.format-icon.f-font {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236d83ac' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M17.662,7H6.338C6.148,7.003,5.997,7.158,6,7.348l0,0v3.411c0,0.192,0.151,0.347,0.339,0.347h0.39c0.182-0.002,0.334-0.139,0.357-0.319c0.083-0.601,0.436-1.829,1.952-1.8h1.127c0.187,0,0.339,0.154,0.339,0.348v6.525c0,0.41-0.324,0.742-0.723,0.742H8.824v1.051C8.824,17.844,8.975,18,9.162,18h5.676c0.189-0.003,0.341-0.158,0.338-0.348l0,0v-1.051h-0.955c-0.404-0.006-0.729-0.338-0.724-0.741c0-0.001,0-0.001,0-0.001V9.334c0-0.193,0.151-0.348,0.339-0.348h1.127c1.516-0.028,1.87,1.199,1.952,1.8c0.022,0.181,0.175,0.317,0.358,0.319h0.39c0.188-0.003,0.339-0.157,0.337-0.346V7.348C18.003,7.158,17.852,7.003,17.662,7L17.662,7z'/%3E%3C/svg%3E");
}



.format-icon.f-presentation {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ec7004' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M15,6h2v12h-2V6z M11,9h2v9h-2V9z M7,12h2v6H7V12z'/%3E%3C/svg%3E");
}

.format-icon.f-vector {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cdba6d' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M13.846,13H4l4.923-7.386L13.846,13z M15,8c-1.012,0-1.95,0.306-2.737,0.822l2.415,3.623L15.714,14h-5.613c0.464,2.282,2.48,4,4.899,4c2.762,0,5-2.238,5-5S17.762,8,15,8z'/%3E%3C/svg%3E");
}



.format-icon.f-doc,
.format-icon.f-docm,
.format-icon.f-docx,
.format-icon.f-dot,
.format-icon.f-dotm,
.format-icon.f-dotx,
.format-icon.f-rtf {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234ac6fb' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5,17.33V6.67L15,4v16L5,17.33z M7.974,8.5H6.643l0.922,7h1.708l0.73-5.219l0.702,5.219h1.714l0.938-6.999h-1.261l-0.645,5.613l-0.732-5.613H9.32l-0.77,5.613L7.974,8.5L7.974,8.5z M19,6h-3v12h3V6z'/%3E%3C/svg%3E");
}

.format-icon.f-xls,
.format-icon.f-xlsx {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234fcb4b' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5,17.33V6.67L15,4v16L5,17.33z M19,6h-3v12h3V6z M12.852,15.5l-2.08-3.5l2.043-3.5H11.57l-1.244,2.246c-0.047,0.196-0.125,0.382-0.232,0.554c-0.088-0.173-0.158-0.354-0.209-0.539L8.684,8.5H7.338L9.33,12l-2.182,3.5h1.338l1.396-2.416c0.066-0.139,0.117-0.385,0.139-0.385c0.061,0.124,0.104,0.252,0.131,0.385l1.381,2.416H12.852L12.852,15.5z'/%3E%3C/svg%3E");
}



.format-icon.f-html {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%237cabae' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M8.118,7.839L9.49,9.226L6.745,12l2.745,2.773l-1.372,1.388L4,12L8.118,7.839z M15.882,7.839L14.51,9.226L17.255,12l-2.745,2.773l1.372,1.388L20,12L15.882,7.839z M11.887,7l1.911,0.34L12.113,17l-1.911-0.34L11.887,7z'/%3E%3C/svg%3E");
}

.format-icon.f-epub {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2380bc39' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12,16.4L7.6,12L12,7.6l1.467,1.467L10.533,12L12,13.466l4.4-4.399l-3.834-3.832c-0.313-0.313-0.82-0.313-1.133-0.001c-0.001,0-0.001,0-0.002,0.001l-6.197,6.198c-0.313,0.313-0.313,0.821,0,1.133l6.199,6.199c0.313,0.313,0.82,0.313,1.133,0l6.199-6.199c0.313-0.313,0.313-0.82,0-1.133l-0.9-0.9L12,16.4'/%3E%3C/svg%3E");
}

.format-icon.f-psd {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2335c1eb' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7.853,11.374h0.609c0.57,0,0.997-0.112,1.279-0.338c0.282-0.225,0.424-0.553,0.424-0.983c0-0.435-0.119-0.755-0.356-0.962C9.572,8.883,9.201,8.779,8.695,8.779H7.853V11.374z M12.036,9.987c0,0.94-0.293,1.659-0.881,2.157c-0.587,0.498-1.424,0.747-2.507,0.747H7.852V16H6V7.262h2.791c1.061,0,1.867,0.228,2.417,0.683C11.761,8.403,12.037,9.082,12.036,9.987L12.036,9.987z M18,14.016c0,0.686-0.238,1.207-0.714,1.565c-0.476,0.359-1.188,0.538-2.137,0.538c-0.417,0.006-0.833-0.026-1.243-0.098c-0.33-0.063-0.652-0.16-0.961-0.291v-1.506c0.367,0.17,0.751,0.303,1.144,0.4c0.424,0.107,0.798,0.161,1.122,0.161c0.661,0,0.991-0.19,0.991-0.573c0.005-0.13-0.042-0.256-0.131-0.351c-0.136-0.122-0.289-0.226-0.454-0.305c-0.214-0.112-0.501-0.244-0.861-0.397c-0.514-0.215-0.892-0.414-1.133-0.597c-0.225-0.164-0.405-0.381-0.526-0.63c-0.109-0.239-0.163-0.53-0.163-0.877c0-0.594,0.229-1.053,0.689-1.377c0.46-0.326,1.112-0.487,1.958-0.487c0.804,0,1.588,0.175,2.349,0.525l-0.552,1.315c-0.307-0.134-0.62-0.251-0.938-0.353c-0.287-0.092-0.588-0.138-0.889-0.138c-0.539,0-0.807,0.146-0.807,0.437c0,0.163,0.085,0.305,0.259,0.424c0.173,0.12,0.552,0.297,1.14,0.532c0.521,0.211,0.904,0.408,1.147,0.592c0.242,0.184,0.422,0.395,0.537,0.633C17.942,13.399,18,13.685,18,14.016z'/%3E%3C/svg%3E");
}

.format-icon.f-pot,
.format-icon.f-potm,
.format-icon.f-potx,
.format-icon.f-pps,
.format-icon.f-ppsm,
.format-icon.f-ppsx,
.format-icon.f-ppt,
.format-icon.f-pptm,
.format-icon.f-pptx {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff6e25' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M11,13h6.975c-0.256,3.355-3.054,6-6.475,6C7.91,19,5,16.09,5,12.5c0-3.421,2.645-6.219,6-6.475V13zM13,5.025V11h5.975C18.731,7.811,16.189,5.269,13,5.025z'/%3E%3C/svg%3E");
}

.format-icon.f-ai {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff9200' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12.581,16l-0.6-2.072H8.964L8.364,16H6.473l2.922-8.738h2.145L14.473,16H12.581z M11.562,12.382c-0.313-1.061-0.627-2.123-0.937-3.185c-0.057-0.193-0.107-0.387-0.149-0.582c-0.124,0.507-0.481,1.764-1.069,3.767H11.562zM15.014,7.626c0-0.591,0.328-0.886,0.986-0.886c0.66,0,0.986,0.294,0.986,0.886c0,0.282-0.078,0.502-0.244,0.656C16.578,8.441,16.33,8.52,16,8.52C15.342,8.52,15.014,8.222,15.014,7.626L15.014,7.626z M16.908,16h-1.816V9.347h1.816V16z'/%3E%3C/svg%3E");
}

.form-control:invalid {
  box-shadow: none !important;
}

input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-transition: color 0s ease-out, background-color 0s ease-out;
  -webkit-transition-delay: 9999s;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

input.form-control:not(:disabled):not(:placeholder-shown) {
  color: #333;
}

.invert-colors input.form-control:not(:disabled):not(:placeholder-shown) {
  color: #eaeaea;
}

.form-control {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  line-height: 21px;
  padding: 10px 15px 11px;
  height: 44px;
}


.form-control:hover:not(.selectboxit) {
  border-color: #333;
}

.form-control.selectboxit:not(.selectboxit-disabled):active,
.form-control.selectboxit:not(.selectboxit-disabled):focus {
  color: #959595;
  border-color: #e0e0e0;
}

.form-control.disabled,
.form-control.selectboxit-disabled,
.form-control:disabled {
  border-color: #eaeaea !important;
  color: #cecece !important;
}

.invert-colors .form-control {
  color: #bbb;
  background-color: hsla(0, 0%, 100%, 0.05);
  border-color: hsla(0, 0%, 100%, 0.2);
}

.invert-colors .form-control::placeholder {
  color: #616161;
}

.invert-colors .form-control:active:not(.selectboxit),
.invert-colors .form-control:focus:not(.selectboxit),
.invert-colors .form-control:hover:not(.selectboxit) {
  color: #eaeaea;
  border-color: hsla(0, 0%, 100%, 0.4);
}

.invert-colors .form-control.selectboxit:not(.selectboxit-disabled):active,
.invert-colors .form-control.selectboxit:not(.selectboxit-disabled):focus {
  color: #bbb;
  border-color: hsla(0, 0%, 100%, 0.2);
}

.invert-colors .form-control.disabled,
.invert-colors .form-control.selectboxit-disabled,
.invert-colors .form-control:disabled {
  color: #616161 !important;
  background-color: hsla(0, 0%, 100%, 0.02) !important;
  border-color: hsla(0, 0%, 100%, 0.12) !important;
}

.form-control.selectboxit-open {
  border-color: transparent !important;
}

.form-control-sm {
  font-size: 14px;
  line-height: 21px;
  padding: 5px 12px 6px;
  height: 34px;
}

.form-control-sm.text-uppercase {
  font-size: 12px;
  letter-spacing: -0.2px;
  font-weight: 400;
}

.input-question-mark {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  width: 33px;
  border: 1px solid transparent;
  border-left-color: #e0e0e0;
  border-radius: 0 4px 4px 0;
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  cursor: pointer;
  color: #afafaf;
  transition: color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.input-question-mark.is-large {
  width: 43px;
}

.input-question-mark:hover {
  color: #282828;
  border-color: #333;
}

.input-question-mark:before {
  content: "?";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -4px;
}

.input-question-mark+input.form-control {
  padding-right: 43px;
}

.input-box {
  position: relative;
}

.input-box.has-icon .form-control {
  padding-left: 44px;
}

.input-box.has-icon .form-control:focus+.input-icon {
  opacity: 1;
}

.input-box .input-icon {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  left: 11px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px 24px;
  opacity: 0.5;
  z-index: 1;
}

.input-box .input-icon.icon-mail {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333333' viewBox='0 0 24 24'%3E%3Cpath d='M19,6H5C4.448,6,4,6.448,4,7v10c0,0.553,0.448,1,1,1h14c0.553,0,1-0.447,1-1V7C20,6.448,19.553,6,19,6z M18.201,7L12,11.96L5.801,7H18.201z M5,17V7.641l6.688,5.35C11.779,13.063,11.89,13.1,12,13.1s0.221-0.036,0.313-0.109L19,7.642V17H5z'/%3E%3C/svg%3E");
}

.input-box .input-icon.icon-pswd {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333333' viewBox='0 0 24 24'%3E%3Cpath d='M8 9V6a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v3h1a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1v-7a1 1 0 0 1 1-1h1zm1 1H7v7h10v-7H9zm0-4v3h6V6H9zm3 6a1 1 0 0 1 1 1v1a1 1 0 0 1-2 0v-1a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.custom-control label {
  user-select: none;
  color: #959595;
  transition: color 0.15s ease-in-out;
}

.custom-control label:before {
  border: 1px solid #c4c4c4;
}

.custom-control input:active:not([disabled])+label:before {
  border-color: #959595;
}

.custom-control input:checked+label {
  color: #333;
}

.custom-control input:checked+label:before {
  border-color: #333;
}

.custom-checkbox label:after,
.custom-checkbox label:before {
  top: 0.2rem;
}

.invert-colors .custom-checkbox label {
  color: #7d7d7d;
}

.invert-colors .custom-checkbox label:before {
  border-color: hsla(0, 0%, 100%, 0.2);
}

.invert-colors .custom-checkbox input:active:not([disabled])+label:before {
  border-color: hsla(0, 0%, 100%, 0.4);
}

.invert-colors .custom-checkbox .custom-control-input:checked~.custom-control-label {
  color: #cecece;
}

.invert-colors .custom-checkbox .custom-control-input:checked~.custom-control-label:before {
  border-color: #3bb5e9 !important;
  background-color: #3bb5e9 !important;
}

.invert-colors .custom-checkbox .custom-control-input:checked~.custom-control-label:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 15 15'%3E%3Cpath d='M6.496,11.431L2.283,7.097l1.434-1.395l2.787,2.867l5.184-5.271l1.426,1.402L6.496,11.431z'/%3E%3C/svg%3E");
}

.custom-radio {
  padding-left: 28px;
}

.custom-radio label:after,
.custom-radio label:before {
  width: 18px;
  height: 18px;
  top: 0.15rem;
  left: -28px;
}

.custom-radio label:after {
  background: transparent;
  border-radius: 50%;
  transform: scale(0.45);
}

.custom-radio input:checked+label:before {
  border-color: #2d63ba;
  background: #2d63ba !important;
}

.custom-radio input:checked+label:after {
  background: #fff;
}

.custom-radio input:disabled+label:before {
  border-color: #c4c4c4;
  background: transparent !important;
}

.custom-radio input:disabled+label:after {
  background: #959595;
}

.btn {
  padding: 10px 20px 11px;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.2px;
}

.btn svg {
  vertical-align: middle;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.btn svg.btn-icon-after {
  margin-right: 0;
  margin-left: 5px;
}

.btn-sm {
  padding: 5px 20px 6px;
  font-size: 14px;
  line-height: 21px;
}

.btn-sm.text-uppercase {
  font-size: 12px;
  line-height: 17px;
  padding: 7px 13px 8px;
}

.btn-sm.btn-add-more {
  font-size: 13px;
  line-height: 17px;
  padding: 8px 13px;
}

.btn-sm svg {
  top: -1px;
}

.btn-lg {
  padding: 9px 30px 11px;
  font-size: 21px;
  line-height: 28px;
}

.btn-xl {
  padding: 15px 30px 18px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}


@media (min-width: 768px) {
  .btn-xl {
    padding-left: 35px;
    padding-right: 35px;
  }
}

[class*="btn-soc"] {
  position: relative;
  padding: 10px 50px 11px;
  font-size: 13px;
  line-height: 21px;
  color: #282828;
  font-weight: 400;
  border-radius: 2px;
  background-color: #fbfbfb;
  border: 1px solid #e0e0e0;
  box-shadow: inset 0 0 0 1px #fff;
  text-align: center;
}

[class*="btn-soc"] svg {
  position: absolute;
  top: 9px;
  left: 10px;
}

[class*="btn-soc"]:hover {
  color: #282828;
  background-color: #fff;
}

.btn-caret {
  position: relative;
  padding-right: 28px !important;
}

.btn-caret>i {
  width: 27px;
  height: 100%;
  top: 0;
}

.btn-caret>i,
.btn-caret>i:before {
  display: block;
  position: absolute;
  right: 0;
}

.btn-caret>i:before {
  content: "";
  width: 7px;
  height: 7px;
  top: 50%;
  left: 0;
  bottom: 0;
  margin: -6px auto auto;
  border-color: currentcolor;
  border-style: solid;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #2d63ba;
  border-color: #2d63ba;
  opacity: 0.5;
}

.btn-secondary:active,
.btn-secondary:hover,
.btn-secondary:not(:disabled):not(.disabled):active {
  background-color: #38c962;
  border-color: #38c962;
}

.btn-blue,
.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled):active {
  color: #fff;
}

.btn-blue {
  background-color: #3bb5e9;
  border-color: #3bb5e9;
}

.btn-blue:hover,
.btn-blue:not(:disabled):not(.disabled):active {
  background-color: #2babe2;
  border-color: #2babe2;
  color: #fff;
}

.btn-blue.disabled,
.btn-blue:disabled {
  background-color: #3bb5e9;
  border-color: #3bb5e9;
  color: #fff;
  opacity: 0.5;
}

.btn-outline-blue {
  color: #3bb5e9;
  border-color: #3bb5e9;
  background-color: transparent;
}

.btn-outline-blue:hover,
.show .btn-outline-blue {
  color: #fff;
  border-color: #3bb5e9;
  background-color: #3bb5e9;
}

.btn-outline-blue.disabled,
.btn-outline-blue:disabled {
  color: #9e9e9e;
  border-color: #e8e8e8;
  background-color: transparent;
}

.btn-light2 {
  background-color: #eaeaea;
  border-color: #eaeaea;
  color: #333;
}

.btn-light2:hover,
.btn-light2:not(:disabled):not(.disabled):active {
  background-color: #fff;
  border-color: #fff;
  color: #333;
}

.btn-light2.disabled,
.btn-light2:disabled {
  background-color: #eaeaea;
  border-color: #eaeaea;
  color: #616161;
  opacity: 0.5;
}

.btn-green2 {
  background-color: #08b847;
  border-color: #08b847;
  color: #fff;
}

.btn-green2:active,
.btn-green2:hover,
.btn-green2:not(:disabled):not(.disabled):active {
  background-color: #09c74d;
  border-color: #09c74d;
  color: #fff;
}

.btn-green2.disabled,
.btn-green2:disabled {
  background-color: #08b847;
  border-color: #08b847;
  color: #fff;
  opacity: 0.5;
}

.btn-pp {
  background-color: #0081df;
  border-color: #0081df;
  color: #fff;
}

.btn-pp:active,
.btn-pp:hover,
.btn-pp:not(:disabled):not(.disabled):active {
  background-color: #008df3;
  border-color: #008df3;
  color: #fff;
}

.btn-pp.disabled,
.btn-pp:disabled {
  background-color: #0081df;
  border-color: #0081df;
  color: #fff;
  opacity: 0.5;
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #616161;
  border-color: #959595;
}

.btn-outline-dark2 {
  color: #333;
}

.btn-outline-dark2:active,
.btn-outline-dark2:hover,
.btn-outline-dark2:not(:disabled):not(.disabled):active {
  background-color: #1d1d1d !important;
  border-color: #1d1d1d !important;
}

.btn-outline-dark3 {
  color: #333;
  border-color: #aeaeae;
  background-color: transparent;
}

.btn-outline-dark3:hover,
.show .btn-outline-dark3 {
  color: #333;
  border-color: #616161;
  background-color: transparent;
}

.btn-outline-dark3.disabled,
.btn-outline-dark3:disabled {
  color: #9e9e9e;
  border-color: #e8e8e8;
  background-color: transparent;
}

.btn-outline-dark4 {
  color: #959595;
  border-color: #959595;
}

.btn-outline-dark4:active,
.btn-outline-dark4:hover,
.btn-outline-dark4:not(:disabled):not(.disabled):active {
  color: #32be5b;
  border-color: #32be5b;
  background-color: transparent;
}

.btn-outline-dark5 {
  background: transparent !important;
  border-color: #c4c4c4;
  color: #959595;
}

.btn-outline-dark5.active,
.btn-outline-dark5:hover,
.btn-outline-dark5:not(:disabled):not(.disabled):active {
  border-color: #aeaeae;
  color: #333;
}

.btn-outline-dark6 {
  background: transparent !important;
  border-color: rgba(97, 97, 97, 0);
  color: #333;
}

.btn-outline-dark6.active,
.btn-outline-dark6:hover,
.btn-outline-dark6:not(:disabled):not(.disabled):active,
.btn-outline-dark6[aria-expanded="true"] {
  border-color: #616161;
  color: #333;
}

.btn-outline-dark6.disabled,
.btn-outline-dark6:disabled {
  background: transparent !important;
  border-color: transparent !important;
  color: #333;
}

.btn-outline-dark6.disabled i,
.btn-outline-dark6.disabled svg,
.btn-outline-dark6:disabled i,
.btn-outline-dark6:disabled svg {
  color: currentColor !important;
  cursor: default;
}

.btn-cancel {
  background: transparent !important;
  border-color: #c3c3c3;
  color: #777;
}

.btn-cancel:hover,
.btn-cancel:not(:disabled):not(.disabled):active {
  border-color: #c3c3c3;
  color: #333;
}

.btn-outline-light {
  border-color: #8d8d8d;
}

.btn-outline-light:active,
.btn-outline-light:hover,
.btn-outline-light:not(:disabled):not(.disabled):active {
  border-color: #fff;
}

.btn-outline-light.btn-no-hover:hover {
  cursor: default;
  background-color: transparent !important;
  color: #f6f6f6 !important;
  border-color: #8d8d8d !important;
}

.btn-outline-light2 {
  background: transparent !important;
  border-color: #8d8d8d;
  color: #fff;
}

.btn-outline-light2:active,
.btn-outline-light2:hover,
.btn-outline-light2:not(:disabled):not(.disabled):active {
  border-color: #fff;
  color: #fff;
}

.form-group-btn {
  position: relative;
  padding-right: 44px;
}

.form-group-btn .btn-del {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  padding: 5px 8px;
  text-align: center;
  color: #333;
  background-color: #fff;
  border: 1px solid #e0e0e0;
}

.form-group-btn .btn-del svg {
  margin: 0;
}

.form-group-btn .btn-del:active,
.form-group-btn .btn-del:hover,
.form-group-btn .btn-del:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: #333;
  border-color: #333;
}

@media (min-width: 768px) {
  .form-group-btn-md {
    padding-right: 44px;
  }
}

.buttons {
  margin: 0 -5px;
  font-size: 0;
}

.buttons:last-child {
  margin-bottom: -10px;
}

.buttons>* {
  margin: 0 5px 10px;
}

.buttons-spacing-md {
  margin-right: -10px;
  margin-left: -10px;
}

.buttons-spacing-md:last-child {
  margin-bottom: -20px;
}

.buttons-spacing-md>* {
  margin: 0 10px 20px;
}

.nav-switch {
  display: flex;
  justify-content: center;
  align-content: stretch;
  align-items: stretch;
  padding: 1px 1px 0 0;
  margin: 0 0 30px;
  list-style: none;
  user-select: none;
}

.nav-switch:last-child {
  margin-bottom: 0;
}

.nav-switch label,
.nav-switch li {
  display: flex;
  align-self: stretch;
  position: relative;
}

.nav-switch li {
  padding: 0;
  margin: -1px -1px 0 0;
  flex: 1 1 0;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}

.nav-switch li:first-child label {
  border-radius: 4px 0 0 4px;
}

.nav-switch li:last-child {
  margin-left: 0;
}

.nav-switch li:last-child label {
  border-radius: 0 4px 4px 0;
}

.nav-switch label {
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 8px 10px 9px;
  color: #212121;
  background-color: transparent;
  border: 1px solid #212121;
  cursor: pointer;
}

.nav-switch input {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}

.nav-switch input:checked+label {
  cursor: default;
  color: #fff;
  background-color: #212121;
}

.tooltip {
  line-height: 20px !important;
  font-weight: 300 !important;
}

.tooltip.tooltip-sm {
  margin: 5px;
}

.tooltip.tooltip-sm .tooltip-inner {
  max-width: 210px;
  font-size: 12px !important;
  padding: 8px 12px 9px;
}

.tooltip.tooltip-convert-all-to {
  top: 2px !important;
}

.tooltip.tooltip-convert-all-to .tooltip-inner {
  line-height: 1.3;
  padding-top: 9px;
  max-width: none;
}

.tooltip.tooltip-security .tooltip-inner {
  max-width: 250px;
}

.dropdown-menu {
  box-shadow: 0 5px 40px 4px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -webkit-backface-visibility: hidden;
}

.dropdown-menu,
.dropdown-menu .dropdown-item-text {
  color: #959595;
}

.dropdown-menu .dropdown-item {
  font-weight: 300;
}

.dropdown-menu .dropdown-item.current {
  color: #fff;
  background-color: #5e5e5e;
}

.dropdown-hover>.dropdown-menu:after,
.dropdown-hover>.dropdown-menu:before {
  content: "";
  display: block;
  width: 100%;
  height: 11px;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
}

.dropdown-hover>.dropdown-menu:before {
  top: auto;
  bottom: 100%;
}

.dropdown-hover:hover>.dropdown-menu {
  display: block !important;
}

@keyframes bouncing {

  0%,
  to {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

.fade-in.one {
  animation-delay: 0.2s;
}

.fade-in.two {
  animation-delay: 0.6s;
}

.fade-in.three {
  animation-delay: 0.9s;
}

.fade-in.four {
  animation-delay: 1.1s;
}

body.adb-body .adb {
  display: none !important;
}

.adb {
  margin-bottom: 15px;
  text-align: center;
}

.adb .adb-text {
  padding-top: 10px;
}

.adb:last-child {
  margin-bottom: 20px;
}

.info-box2+.adb {
  margin-top: 50px;
}

.adb ins {
  vertical-align: top;
}

.converter-wrapper {
  background-color: #fff;
  /* background-image:
        linear-gradient(45deg, rgba(0, 0, 0, .06) 25%, transparent 0),
        linear-gradient(-45deg, rgba(0, 0, 0, .06) 25%, transparent 0),
        linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, .06) 0),
        linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, .06) 0),
        /* Add hexagon pattern here */
  /*repeating-linear-gradient(60deg,
            rgba(0, 0, 0, .06),
            rgba(0, 0, 0, .06) 16px,
            transparent 0,
            transparent 32px); */

  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;

  /* background-color: #e4e4e4;
    background-image: linear-gradient(45deg, rgb(255 255 255 / 6%) 25%, transparent 0), linear-gradient(-45deg, rgb(251 251 251 / 6%) 25%, transparent 0), linear-gradient(45deg, transparent 75%, rgb(255 255 255 / 6%) 0), linear-gradient(-45deg, transparent 75%, rgb(255 255 255 / 6%) 0), Add hexagon pattern here repeating-linear-gradient(60deg, rgb(255 255 255 / 6%), rgba(0, 0, 0, .06) 16px, transparent 0, transparent 32px); */
}

.ui-pattern-1 {
  background-color: #3c3c3c;
  background-image: linear-gradient(45deg,
      rgba(0, 0, 0, 0.06) 25%,
      transparent 0),
    linear-gradient(-45deg, rgba(0, 0, 0, 0.06) 25%, transparent 0),
    linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.06) 0),
    linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.06) 0);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
}

.file-tools3 .convert-button .btn.disabled,
.file-tools3 .convert-button .btn:disabled,
.ui-pattern-2 {
  background-color: #dd7667;
  background-image: linear-gradient(45deg, #d57263 25%, transparent 0),
    linear-gradient(-45deg, #d57263 25%, transparent 0),
    linear-gradient(45deg, transparent 75%, #d57263 0),
    linear-gradient(-45deg, transparent 75%, #d57263 0);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
}

.icon-warning:before {
  content: "\26A0";
}

.icon-process {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  opacity: 0.7;
  animation-name: spin;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.icon-success,
.loader {
  width: 50px;
  height: 50px;
}

.loader {
  display: inline-block;
  position: relative;
  color: #999;
}

.loader i {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 50px;
  width: 50px;
  overflow: hidden;
  border-radius: 50%;
  background: none;
  border: 4px solid transparent;
  border-bottom-color: currentcolor;
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1, 0.32, 0.73, 0.74);
}

.content-centered {
  max-width: 672px;
  margin: 0 auto 60px;
}

@media (min-width: 768px) {
  .content-centered {
    margin-bottom: 80px;
  }
}

.page-lead {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.2px;
}

@media (min-width: 768px) {
  .page-lead {
    margin-bottom: 80px;
  }
}

.privacy-content .page-lead {
  max-width: 658px;
}

.security-list {
  max-width: 1010px;
  margin-bottom: 10px;
  color: #494949;
}

.security-list+.content-centered {
  max-width: 475px;
  margin-bottom: 50px;
}

.security-list .row {
  margin: 0;
}

.security-list .row .col-12 {
  margin-bottom: 50px;
  padding: 0 0 0 48px;
}

.security-list .row .col-12 svg {
  position: absolute;
  top: -7px;
  left: -6px;
}

.security-list h3 {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: normal;
}

@media (min-width: 768px) {
  .security-list+.content-centered {
    margin-bottom: 70px;
  }

  .security-list .row {
    margin: 0 -30px;
  }

  .security-list .row .col-12 {
    padding: 0 30px 0 88px;
    margin-bottom: 80px;
  }

  .security-list .row .col-12 svg {
    left: 30px;
  }
}

@media (min-width: 992px) {
  .security-list .row {
    margin: 0 -40px;
  }

  .security-list .row .col-12 {
    padding: 0 40px 0 98px;
  }

  .security-list .row .col-12 svg {
    left: 40px;
  }
}

.security-note {
  border-top: 1px solid #eaeaea;
}

.security-note p {
  margin: 0 auto;
  max-width: 475px;
}

.side-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.side-nav li {
  padding: 0;
  margin: 0;
  border-top: 1px solid #f1f1f1;
}

.side-nav li:first-child {
  border-top: none;
}

.side-nav li a {
  display: block;
  padding: 7px 15px;
  color: #a2a2a2;
  text-decoration: none;
}

.side-nav li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: 1px solid;
  margin: -1px 15px 0 0;
  opacity: 0.8;
}

.side-nav li a:hover {
  color: #2d63ba;
}

.side-nav li a:hover:before {
  opacity: 1;
}

.side-nav li.current a {
  color: #1d1d1d;
}

.side-nav li.current a:before {
  border-color: #2d63ba;
}

.page-title+.text-content {
  margin-top: 60px;
}

.text-content h2 {
  margin-top: 2em;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 30px;
}

.text-content h2:first-child {
  margin-top: -5px;
}

.text-content .lead-text {
  font-size: 16px;
  line-height: 26px;
}

.text-content ul {
  list-style: none;
  margin-left: 0;
  padding-left: 20px;
}

.text-content ul li {
  position: relative;
  margin: 0 0 5px;
  padding-left: 21px;
}

.text-content ul li:before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid;
}

.text-content ul li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .text-content h2 {
    margin-top: 60px;
  }
}

.note-box {
  margin-bottom: 18px;
  padding: 20px;
  background-color: #f6f6f6;
}

@media (min-width: 768px) {
  .note-box {
    padding: 30px;
  }
}

h3+.note-box,
h4+.note-box {
  margin-top: 18px;
}

.card-match-height .card {
  align-self: stretch;
  height: 100%;
}

@media (min-width: 768px) {
  .card .card-body {
    padding: 30px;
  }
}

@media (min-width: 1200px) {
  .card .card-body {
    padding: 40px;
  }

  .sidebar .card .card-body {
    padding: 30px;
  }
}

.card .card-header {
  border-bottom: none !important;
}

.card .card-footer {
  border-top: 1px solid #eaeaea;
}

.card.widget {
  box-shadow: 0 1px 5px 0 rgba(216, 220, 227, 0.44);
  border: 1px solid hsla(0, 0%, 90.6%, 0.57);
}

.card.widget .btn {
  min-width: 126px;
}

.card.converter-wrapper {
  box-shadow: none;
  border: none;
}

.border-radius-0 {
  border-radius: 0 !important;
}

.no-files {
  padding: 30px 20px 20px;
}

.no-files>div span {
  display: block;
  margin: 0 auto 13px;
  width: 50px;
  height: 50px;
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 27px;
  line-height: 46px;
  padding-right: 1px;
  color: #2d63ba;
  text-align: center;
}

@media (min-height: 540px) and (min-width: 768px) {
  .no-files {
    height: 245px;
  }
}

@media (min-height: 640px) and (min-width: 992px) {
  .no-files {
    height: 345px;
  }
}

.file-source-button-wrapper {
  text-align: center;
  padding-bottom: 40px;

}

.file-source-button-wrapper .file-source-title {
  color: #959595;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 23px;
}

.file-source-button-wrapper .file-source-title.is-small {
  font-size: 12px;
  margin-top: -12px;
}

.file-source-button-wrapper .security-icon {
  position: relative;
  margin: 0 -4px !important;
  width: 18px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px 24px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23747475' viewBox='0 0 24 24'%3E%3Cpath d='M15,11V9.526C15,8.131,13.656,7,12,7S9,8.131,9,9.526V11H8v6h8v-6H15z M10,9.658C10,8.743,10.896,8,12.001,8C13.105,8,14,8.743,14,9.658V11h-4V9.658z'/%3E%3C/svg%3E");
}

.file-source-button-wrapper .file-source-caption {
  padding: 13px 0 2px;
  color: #959595;
  letter-spacing: -0.3px;
  cursor: default;
}

.file-source-button-wrapper .file-source-caption>* {
  display: inline-block;
  vertical-align: top;
  margin: 0 4px;
}

.file-source-button-wrapper .file-source-caption a {
  text-decoration: underline;
}

.widget .file-source-button-wrapper {
  margin: 0;
  padding: 20px;
}

.widget .file-source-button-wrapper .file-source-title {
  color: #c4c4c4;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

@media (min-width: 992px) {
  .widget .file-source-button-wrapper .file-source-title span {
    display: block;
  }
}

@media (min-width: 768px) {
  .widget .file-source-button-wrapper {
    padding: 30px;
  }
}

.file-source-nav {
  z-index: 1027;
  width: auto;
  min-width: 100%;
  color: #fff;
}

.file-source-nav #pc-upload-add {
  display: none;
}

.file-source-nav .nav-item {
  position: relative;
  display: block;
  padding: 8px 24px 8px 19px;
  margin: 0;
  background-color: rgba(29, 29, 29, 0);
  cursor: pointer;
  font-size: 14px;
  line-height: 22px;
  white-space: nowrap;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.11);
}

.file-source-nav .nav-item:after,
.file-source-nav .nav-item>i,
.file-source-nav .nav-item svg {
  display: inline-block;
  vertical-align: middle;
}

.file-source-nav .nav-item svg {
  transform: scale(0.8);
}

.file-source-nav .nav-item>i {
  width: 30px;
  margin-right: 8px;
  text-align: center;
}

.file-source-nav .nav-item:after {
  content: attr(data-action-label);
  padding: 4px 0;
}

.file-source-nav .nav-item:hover {
  background-color: #3bb5e9;
}

.file-source-nav .nav-item:first-child {
  border-radius: 4px 4px 0 0;
}

.file-source-nav .nav-item:last-child {
  border-width: 0;
  border-radius: 0 0 4px 4px;
}

.file-source-nav input+.nav-item,
.file-source-nav label+.nav-item {
  border-radius: 4px 4px 0 0;
}

.add-more-nav .btn {
  min-width: 190px;
  margin: 0;
  padding: 6px 20px 7px 16px;
  font-weight: 600;
  text-align: left;
  letter-spacing: normal;
  transition: none;
}

.add-more-nav .btn svg {
  margin-right: 12px;
}

.add-more-nav:hover>.btn,
.add-more-nav:hover>.btn:active {
  cursor: default;
  background-color: #e3e3e3;
}

.add-more-nav .file-source-nav .nav-item {
  padding-left: 9px;
}


.file-source-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: auto;
  /* background-color: #2d63ba; */
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 2px 8px 17px 0 rgba(76, 76, 76, 0.06),
    2px 12px 19px 0 rgba(0, 0, 0, 0.05), 2px 7px 9px 0 rgba(0, 0, 0, 0.04),
    2px 6px 9px 13px rgba(252, 22, 0, 0.02);
  border-radius: 40px;
  transition: background-color 0.15s ease-in-out, box-shadow 0.2s ease-in-out;
}



.file-source-button:hover {
  background-color: var(--primary-color);

  box-shadow: 2px 8px 17px 0 rgba(76, 76, 76, 0.12),
    2px 12px 19px 0 rgba(0, 0, 0, 0.1), 2px 7px 9px 0 rgba(0, 0, 0, 0.08),
    2px 6px 9px 13px rgba(252, 22, 0, 0.04);
}

.file-source-button,
.file-source-button>* {
  user-select: none;
}


.file-source-button .action-label {
  display: none;
}

.file-source-button .menu-wrapper {
  position: relative;
  text-align: left;
}

.file-source-button .menu-wrapper img {
  text-align: justify;
}

.file-source-button .menu-wrapper .file-source-btn {
  position: relative;
  color: #fff;
  border: none;
  background: none;
  box-shadow: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 16px 57px 18px 25px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.file-source-button .menu-wrapper .file-source-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 47px;
  border-left: 1px solid rgba(51, 51, 51, 0.66);
}

.file-source-button .menu-wrapper .file-source-btn i:before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -7px;
  border-color: currentcolor transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0;
}

.file-source-button .menu-wrapper .file-source-btn i.active:before {
  border-width: 0 6px 6px;
  border-color: transparent transparent currentColor;
}

.file-source-button .menu-wrapper .file-source-btn span {
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.file-source-button .file-source-nav {
  top: 100%;
}

.file-source-button .file-source-nav .nav-item.from-pc {
  display: none;
}

@media (min-width: 992px) {
  .widget .file-source-button .menu-wrapper .file-source-btn {
    padding: 14px 53px 15px 20px;
    font-size: 16px;
    line-height: 21px;
  }

  .widget .file-source-button .menu-wrapper .file-source-btn i {
    width: 43px;
  }

  .widget .file-source-button .menu-wrapper .file-source-nav .nav-item {
    padding-left: 14px;
  }
}


.file-source-button-resizable .file-source-button {
  width: auto;
  max-width: 455px;
  font-size: 0;
  margin-top: 5px;
}

.file-source-button-resizable .file-source-button .action-label {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 20px 10px 20px 20px;
  width: 194px;
  color: inherit;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  cursor: pointer;
}

.file-source-button-resizable .file-source-button .menu-wrapper {
  display: inline-block;
  vertical-align: top;
}

.file-source-button-resizable .file-source-button .menu-wrapper .file-source-btn {
  display: none;
}

.file-source-button-resizable .file-source-button .file-source-nav {
  display: inline-block !important;
  vertical-align: top;
  position: relative;
  top: auto;
  left: auto;
  z-index: 0;
  width: auto;
  min-width: auto;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 0;
}

.file-source-button-resizable .file-source-button .file-source-nav:after,
.file-source-button-resizable .file-source-button .file-source-nav:before {
  display: none;
}

.file-source-button-resizable .file-source-button .file-source-nav .nav-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
  background-color: transparent !important;
  border-width: 0 !important;
  border-radius: 0 !important;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out;
  opacity: 0.5;
}

.file-source-button-resizable .file-source-button .file-source-nav .nav-item.from-pc {
  opacity: 1;
}

.file-source-button-resizable .file-source-button .file-source-nav .nav-item.mute-item {
  opacity: 0.5 !important;
}

.file-source-button-resizable .file-source-button .file-source-nav .nav-item>i {
  position: relative;
  width: 62px;
  height: 65px;
  margin: 0;
}

.file-source-button-resizable .file-source-button .file-source-nav .nav-item:last-child {
  width: 75px;
}

.file-source-button-resizable .file-source-button .file-source-nav .nav-item svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: scale(1);
}

.file-source-button-resizable .file-source-button .file-source-nav .nav-item:after {
  display: none;
}

.file-source-button-resizable .file-source-button .file-source-nav .nav-item:hover {
  opacity: 1;
}


.converter-wrapper {
  position: relative;
  margin: 0 -20px 40px;
}

.converter-wrapper.tall {
  padding-top: 26px;
  padding-bottom: 26px;
}

.converter-wrapper .file-formats {
  /* padding-bottom: 28px; */
  margin-top: -5px;
  text-align: center;
}

.converter-wrapper .file-formats>* {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  font-size: 13px;
  line-height: 22px;
}

.converter-wrapper .file-formats h6 {
  color: #959595;
}

.converter-wrapper .file-formats p {
  color: #000;
  text-transform: uppercase;

}

.image-file-formats {
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
}

@media (min-width: 768px) {
  .converter-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

.converter {
  padding: 30px 20px 0;
}

.converter .file-source-button-wrapper {
  padding-bottom: 30px;
}

.converter .file-source-button {
  box-shadow: 2px 7px 10px 0 rgba(0, 0, 0, 0.1),
    2px 11px 11px 0 rgba(0, 0, 0, 0.1), 2px 6px 8px 0 rgba(0, 0, 0, 0.08),
    2px 5px 8px 0 rgba(252, 22, 0, 0.05);
}

.converter .file-source-button:hover {
  box-shadow: 2px 7px 10px 0 rgba(0, 0, 0, 0.2),
    2px 11px 11px 0 rgba(0, 0, 0, 0.2), 2px 6px 8px 0 rgba(0, 0, 0, 0.16),
    2px 5px 8px 0 rgba(252, 22, 0, 0.1);
}

@media (min-width: 768px) {
  .converter {
    padding: 45px 30px 0;
  }
}

.converter-tabs {
  position: relative;
  width: 100%;
  margin-bottom: -20px;
  color: #959595;
  letter-spacing: -0.2px;
  text-align: center;
}

.converter-tabs a {
  color: #c4c4c4;
  white-space: nowrap;
}

.converter-tabs a:hover {
  color: #fff;
  text-decoration: none;
}

.converter-tabs ul {
  position: absolute;
  top: 12px;
  right: 0;
  max-width: 100%;
  overflow: hidden;
  height: 22px;
  padding: 0 20px 0 0;
  margin: 0;
  list-style: none;
  text-align: right;
}

.converter-tabs ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  margin: 0 0 10px 16px;
}

.converter-tabs ul li:first-child {
  margin-left: 0;
}

.converter-tabs .ct-tab {
  position: relative;
  padding: 12px 20px 13px;
  border-bottom: 1px solid #525252;
}

.converter-tabs .ct-title {
  padding: 20px 20px 13px;
  font-size: 12px;
  color: #cecece;
  text-transform: uppercase;
  text-align: center;
}

.converter-tabs-2 {
  display: flex;
  flex-wrap: wrap;
}

.converter-tabs-2 .ct-tab:first-child+.ct-tab {
  flex: 1 1 auto;
  min-width: 0;
}

.converter-tabs-2 .ct-title {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .converter-tabs {
    margin-bottom: -35px;
  }

  .converter-tabs .ct-tab {
    padding-left: 28px;
    padding-right: 28px;
  }

  .converter-tabs .ct-tab ul {
    padding-right: 28px;
  }
}

@media (min-width: 1200px) {
  .converter-tabs-2 {
    margin: 0;
  }

  .converter-tabs-2 .ct-tab:first-child+.ct-tab {
    order: 1;
  }

  .converter-tabs-2 .ct-title {
    flex: 0 1 auto;
    padding: 14px 12px 13px 28px;
    width: auto;
    white-space: nowrap;
    border-bottom: 1px solid #525252;
  }
}

.zoom {
  margin: 0 -7px;
  padding: 3px 0;
  white-space: nowrap;
  font-size: 0;
}

.zoom>span {
  position: relative;
  margin: 0 7px;
  display: inline-block;
  vertical-align: top;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid #333;
  color: #2d63ba;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    color 0.15s ease-in-out;
}

.zoom>span:hover {
  background-color: #2d63ba;
  border-color: #2d63ba;
  color: #fff;
}

.zoom>span:after,
.zoom>span:before {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: currentColor;
}

.zoom>span:after {
  width: 1px;
  height: 11px;
}

.zoom>span.zoom-out:after {
  display: none;
}

.save-into {
  margin: 0 -5px;
  text-align: center;
}

.save-into>* {
  display: inline-block;
  vertical-align: middle !important;
  width: auto;
  margin: 10px 5px;
}

.disabled>.save-into,
.save-into.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.save-into>span {
  margin: 10px;
}

.save-into>.buttons {
  margin: 10px 5px 0;
}

.save-into>.buttons>span {
  display: inline-block;
  vertical-align: top;
}

.save-into>.buttons>span:first-child:after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 1px;
  height: 12px;
  background-color: currentColor;
  margin: 5px 3px 0 14px;
  opacity: 0.3;
}

.save-into>.buttons .btn {
  padding: 0 2px;
  border-width: 0;
}

.file-tools {
  position: relative;
  margin: 0 -20px 50px;
}

.file-tools .selectboxit-container,
.file-tools select.form-control {
  width: auto;
  max-width: 100%;
}

.data-table-wrapper+.file-tools {
  margin-top: -40px;
}

.file-tools .file-tools1 {
  padding: 15px 20px;
  min-height: 64px;
  text-align: center;
}

.file-tools .file-tools1 .buttons>*,
.file-tools .file-tools1 .row [class*="col-"]>* {
  display: inline-block;
  vertical-align: top;
}

.file-tools .file-tools1 .buttons:last-child {
  margin-bottom: -15px;
}

.file-tools .file-tools1 .buttons>* {
  margin-bottom: 15px;
}

.file-tools .file-tools1 .btn-outline-dark6 {
  font-size: 13px;
  line-height: 20px;
  padding: 5px 10px 7px;
}

.file-tools .file-tools1 h5 {
  display: block !important;
  color: #fff;
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 22px;
}

.file-tools .file-tools1 .convert-all-to {
  position: static;
}

.file-tools .file-tools1 .convert-all-to .dropdown-menu {
  margin: 4px 0;
  top: 0;
  left: 0;
}

.file-tools .file-tools1 .label-files-stored {
  position: static;
  padding: 6px 20px;
  color: #666;
  font-size: 13px;
  line-height: 20px;
}

.file-tools .file-tools1 .label-files-stored a {
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}

.file-tools .file-tools1 .label-files-stored a.dashed {
  text-decoration: underline dashed;
}

.file-tools .file-tools1 .label-files-stored a:hover {
  text-decoration: none;
}

.file-tools .ocr-tools1 {
  padding: 0;
}

.file-tools .ocr-tools1 .row,
.file-tools .ocr-tools1 .row [class*="col-"] {
  padding: 10px;
}

.file-tools .file-tools2 {
  padding: 10px 20px;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
  box-shadow: 0 1px 5px 0 rgba(216, 220, 227, 0.44);
}

.file-tools .ocr-tools2 {
  padding: 0 20px;
}

.file-tools .ocr-tools2 .row [class*="col-"] {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .file-tools {
    margin-left: 0;
    margin-right: 0;
  }

  .file-tools .file-tools1 .convert-all-to,
  .file-tools .file-tools1 .label-files-stored {
    position: relative;
  }

  .file-tools .ocr-tools1 h5 {
    margin: -4px 0 24px;
  }

  .file-tools .ocr-tools1 .row [class*="col-"] {
    padding: 20px 10px;
  }

  .file-tools .ocr-tools1 .row .col-sm-auto {
    padding: 10px;
    position: relative;
  }

  .file-tools .ocr-tools1 .row .col-sm-auto h5 {
    margin: 0;
    position: absolute;
    top: 14px;
    left: 110%;
    white-space: nowrap;
  }

  .file-tools .ocr-tools2 {
    padding: 0 30px;
  }
}

@media (min-width: 992px) {
  .file-tools .file-tools1 .btn-download {
    position: absolute;
    right: 5px;
  }

  .file-tools .file-tools1 .btn-download .btn-icon-after {
    margin-left: 7px;
  }
}

.file-tools3 {
  color: #999;
}

.file-tools3 .btn-holder1 {
  width: 100%;
  padding: 20px;
  text-align: center;
}

.file-tools3 .btn-holder1 .add-more-nav {
  display: inline-block;
}

.file-tools3 .btn-holder1 .add-btn-caption {
  display: none;
  font-size: 13px;
  line-height: 20px;
}

.file-tools3 .btn-holder2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.file-tools3 .save-into {
  width: 100%;
  margin: 0;
}

.file-tools3 .save-into>span {
  display: none;
}

.file-tools3 .save-into .buttons {
  display: flex;
  width: 100%;
  margin: 0;
  background-color: rgba(29, 29, 29, 0.33);
}

.file-tools3 .save-into .buttons>span {
  flex: 1 1 auto;
  margin: 0;
  border-left: 1px solid rgba(69, 69, 69, 0.77);
}

.file-tools3 .save-into .buttons>span:after {
  content: none;
  display: none;
}

.file-tools3 .save-into .buttons>span:first-child {
  border-width: 0;
}

.file-tools3 .save-into .buttons .btn {
  height: 70px;
  width: 100%;
  min-width: 80px;
  padding: 20px;
  background-color: rgba(29, 29, 29, 0) !important;
  -webkit-transform: translateZ(0);
}

.file-tools3 .save-into .buttons .btn span {
  display: none;
}

.file-tools3 .save-into .buttons .btn svg {
  margin: 0;
  fill: #757575;
  transform: scale(1.4);
  transition: fill 0.15s ease-in-out;
}

.file-tools3 .save-into .buttons .btn:hover {
  background-color: rgba(29, 29, 29, 0.4) !important;
}

.file-tools3 .save-into .buttons .btn:hover svg {
  fill: #b3b3b3;
}

.file-tools3 .save-into .buttons .btn.active {
  background-color: rgba(29, 29, 29, 0.4) !important;
}

.file-tools3 .save-into .buttons .btn.active svg {
  fill: #d6d6d6;
}

.file-tools3 .save-into .buttons .btn.active:hover svg {
  fill: #fff;
}

.file-tools3 .convert-button {
  flex: 1 1 auto;
  margin: 0;
}

.file-tools3 .convert-button .btn {
  position: relative;
  min-width: 100%;
  width: 100%;
  height: 70px;
  padding: 20px 66px 20px 30px;
  font-size: 19px;
  line-height: 28px;
  letter-spacing: -0.6px;
  font-weight: 700;
  text-align: left;
  border-radius: 0;
}

.file-tools3 .convert-button .btn svg {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 19px;
  margin-top: -11px;
  fill: hsla(0, 0%, 100%, 0.55);
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.file-tools3 .convert-button .btn:hover svg {
  transform: translateX(6px);
}

.file-tools3 .convert-button .btn.disabled,
.file-tools3 .convert-button .btn:disabled {
  opacity: 1;
  color: #eea79d;
  border-color: transparent;
}

.file-tools3 .convert-button .btn.disabled svg,
.file-tools3 .convert-button .btn:disabled svg {
  fill: #ea9d92;
  transform: translateX(0);
}

@media (min-width: 576px) {
  .file-tools3 {
    display: flex;
    flex-wrap: wrap;
  }

  .file-tools3 .save-into {
    width: auto;
  }
}

@media (min-width: 768px) {
  .file-tools3 {
    flex-wrap: nowrap;
    border-radius: 0 0 4px 4px;
  }

  .file-tools3 .btn-holder1 {
    padding: 17px 20px;
    width: auto;
    flex: 0 1 auto;
    display: flex;
    text-align: left;
  }

  .file-tools3 .btn-holder1 .add-more-nav .btn {
    white-space: nowrap;
  }

  .file-tools3 .btn-holder2 {
    flex: 1;
    width: 100%;
    flex-wrap: nowrap;
  }

  .file-tools3 .convert-button {
    flex: 1 1 auto;
  }

  .file-tools3 .convert-button .btn {
    border-radius: 0 0 4px 0;
  }
}

@media (min-width: 840px) {
  .file-tools3 .save-into .buttons .btn {
    min-width: 88px !important;
  }

  .file-tools3 .btn-holder1 {
    flex: 1;
  }

  .file-tools3 .btn-holder2 {
    flex: 0 1 auto;
    width: auto;
  }

  .file-tools3 .convert-button {
    flex: 0 1 auto;
    min-width: 240px;
  }
}

@media (min-width: 992px) {
  .file-tools3 .btn-holder1 {
    padding: 17px 26px;
  }

  .file-tools3 .convert-button {
    min-width: 268px;
  }

  .file-tools3 .convert-button .btn {
    padding-left: 46px;
  }
}

@media (min-width: 1060px) {
  .file-tools3 .btn-holder1 .add-btn-caption {
    display: block;
    align-self: center;
    margin: -5px 0 -5px 32px;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.convert-button {
  margin: 0 0 40px;
  text-align: center;
}

.convert-button .btn {
  min-width: 230px;
}

.convert-button .btn svg {
  display: none;
}

.file-tools+.convert-button,
.files-container-box+.convert-button {
  margin-top: -20px;
}

@media (min-width: 768px) {
  .convert-button {
    margin-bottom: 50px;
  }
}

.converter-container {
  width: 100%;
  margin-bottom: 40px;
}

.converter-container .convert-button,
.converter-container .converter-wrapper {
  margin-bottom: 0;
}

.converter-container+h2 {
  margin-top: 80px;
}

.adb+.converter-container {
  margin-top: -3px;
}

.invert-colors .question-mark {
  color: #cecece;
  background-color: hsla(0, 0%, 100%, 0.05);
}

.info-wrapper {
  display: flex;
  flex-direction: column;
}

.adb+.info-wrapper {
  margin-top: 40px;
}

.info-wrapper+.adb,
.info-wrapper+.steps {
  margin-top: 50px;
}

.converter-container+.info-wrapper,
.index-counter+.info-wrapper {
  margin-top: -10px;
}

@media (min-width: 768px) {
  .info-wrapper+.steps {
    margin-top: 80px;
  }
}

@media (min-width: 992px) {
  .info-wrapper {
    flex-direction: row;
    justify-content: flex-end;
    align-content: flex-start;
  }
}

.info-section {
  display: flex;
  flex-direction: column;
  margin: 0 0 50px;
}

.info-section:last-child {
  margin-bottom: 0;
}

.adb+.info-section {
  margin-top: 40px;
}

.info-section .item {
  padding: 32px 30px;
  background-color: #f6f6f6;
  color: #666;
  font-size: 13px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
}

.info-section .item:first-child {
  margin-bottom: 30px;
}

.info-section .item:first-child:last-child {
  margin: 0 !important;
}

.info-section h3 {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.2px;
  font-weight: 400;
}

.info-section .link-arrow {
  color: #666;
  float: right;
  margin-top: -2px;
  text-decoration: underline;
}

.info-section .link-arrow:after {
  margin-top: 0;
  top: -1px;
}

.info-section .link-arrow:hover {
  color: #2d63ba;
  text-decoration: underline;
}

.info-section .badge-wrapper {
  margin-bottom: 15px;
}

.info-section .collapsible {
  max-height: 96px;
  overflow: hidden;
}

.info-section .collapsible .btn {
  display: none;
}

.info-section .js-collapsible {
  max-height: none;
  overflow: visible;
}

.info-section .js-collapsible .btn {
  display: inline-block;
}

.info-section .js-collapsible>div {
  max-height: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.info-section .js-collapsible.show>div {
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: initial;
}

@media (min-width: 576px) {
  .info-section .item {
    padding: 42px 40px;
  }
}

@media (min-width: 768px) {
  .info-section {
    flex-direction: row;
  }

  .info-section .item {
    flex: 1 1 100%;
  }

  .info-section .item:first-child {
    margin: 0 15px 0 0;
  }

  .info-section .item:last-child {
    margin: 0 0 0 15px;
  }
}

@media (min-width: 992px) {
  .info-section .item {
    padding: 42px 50px;
  }
}

.account-del .custom-checkbox label {
  font-size: 13px;
  color: #c4c4c4;
  user-select: none;
  text-align: left;
}

.account-del .custom-checkbox input:checked+label {
  color: #333;
}

.ocr-warning-block {
  margin-bottom: 37px;
  text-align: center;
}

.ocr-warning-block .ocr-warning-block-text {
  padding-top: 10px;
  margin-bottom: -17px;
}

.adb+.ocr-warning-block {
  margin-top: -3px;
}

.drag-drop-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASAAAAEUCAMAAAC8thsJAAAANlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///+3yE5gAAAAEXRSTlMAAQUJDBAUGCYgLBwzO0JJU1moJ8sAAA+nSURBVHja7NvRjhMxEERR2gGSTLIP/P/P0mJJKkxNu2w8RmPiiniKQOLoTm8Qu1/m5ubm5ubm5ubm5ubm5ubm5ubmDjhb7cucZfbOXEabUlsy02nbZioJm6mkdaaR1plGkufdiUzvrYmsZO8rZKV7UyIr31sKWc3eUMjq9nZC9rdLq1d+wwpZ/TZBsk4DC1k0bZNWs18jpMGFrHwRDTNBcXggs0qcVLLnbxlfyMr26IKmUxobqLwd1tH77TqwUKd2sCfuoEIF8Qid8o7+QyCOp62j8YAED+k0E40m1J2HiYYC2oPn9PmqIBpISJznEhpyUkRDPWOxjfCBxUpGIv3600cBsniCBzTYw0kZmS+NIRT3I9phHEaKZ2mUZ8yiiXYIh5RERuavAYB0PxwP2skKiYwGSaiqH/ydBY7KCA2NCBT28zg8NctlNMSVrujnhHjqjU5hQ8cG2sKp5fn6x7aEYqLDJ6T6YR7G4VUQHT0hdYA0TxvR4b/Qy4BAJHSkUXyHRgJKFn1sVjyaKPgHyKELMt5GO4Knhsh3GimhXEAgEjwVRMMlZLStx0vxfHuZJNowsjQKEAXEjxfj8LJEiXbkr/MlAWkebSSeM0sHBRIBndb9CB4hFDd02CstAyKeSEcbrRsaIaFMQDjPmqee6DPN4yekAkqFPN9fVkY0xhVSAUX5BDhYTLR6zI6dUK6fU5wP6yijKKJjN2S5ftp4NBEaOuqnIePxpx/2iXS00abQMT8wGo0DKub5EUwT8a0+wH+1Wmbb9znk0UBMJCPq/y0NGqemH+aBjgbCAiLRkEDqr6P7ETzn7+dzBHQ+SyLRkDDqrKP70Ty+HJBPE+mG+htZwYJ8BI8E8oVEHBEakuuno/up4dFAmogjsqJ19dH9sA9wwHO73SIgf2vLiIVEQ12FrLkf5vlDJw/kE0RtDVlvHt2P4BFAikg2pPdv8sFKeW6PXa8R0PV6g5Ek4oYKibr386pDPoLn6ssA+QQRCWGNj1n/fjgf5tFATBREhIawrg0V8eT6YR7W0UBsxES5hlIvoTIe3Y/iuVwvEdDF3xVEuiEQ7StUz8P9aB7X8YVAPlmRaAhEOwvV8qAfnQ/q8eWBfKhIRoSGqol29kl8nWMf5kE8GggZMVEshJUStfpwPbIf5BPXo4GQEREhItVQMn2u9w2IeBL5UD6b9SyXZYmAluWCoSKOiIUSbdeHTODw9VkFRD5hPc6TA1rcL6qIhCghiiiPtOeFpmV9OB/UI4B8QURSiIhMXKJdfFLweGkfzsd5NBAqooiUEG23hEQ+5f1QPlyPBuKKEFEkJB6zVqDGfnzkQ/ksz93vEdB9wS4LIiIhAImG9ilI9qMDgo/I5+4+MdDd344jIiECChpqFarsR/vE+ThBFghEQURCaGM7JNSvH65nUUC+5bneDbUGFH/zMwPBR+QjgFARRURCBFTdUIeASnyQD/q5w0cW9BLR6hBpoQ4J7XaAuB/Ox/eRAfoIIuKG2s9Qe0GpOiD0w/nA5yMCAg9FhIZEQsHPLaQ2IB0Q+tE+3M+rji8C8rfQECKihoQQr6mg5gPky/aDfD78lwByIX8holxD30VDDQkpoOj+MBAfIPSDfB5EDqCAnAjjO0RnqPErWUNBf3WA0A/yWZ5PVwHQKiIQfU6dobghS61AOiD4MBD64fODfMqAENEvXgihIU5INbR7QUE/vhIfPj/+0kAYjvWSaag9oZaAuJ/6gNbnx/eTnTtcahsGggD8w7Sxk1pK3v9ly3gqtvJyXo6LwoXBvMHOpz05kimlWAGVQoYwzOazg9DkJzQeEAroPLOfFs9xQIUQYZj5CMFQkNBdAAk/a+fnMKBS1haSMBQhFBck/BiATD/gowMq2tCHFpkgFBPkAdQXEPtZu/7RAWlDqCFBaISgOCD4aQ/iUQG1RxiKEfIHpAFNChAVEPwgnrbCqhVQRUKFDf1fQ4IQDElCDwWEAiI/5a2ASrUDqi0ew1CMkC6h8YDYDwC1eI4Csg0hoQcQ0oL8gOaFCwh+kI8IqFbTEGooTiguyP7KiQNiQJjv5KeogKphCDWEhCggMckCgkKAzHzYjxRUkBAIGYssTkgHNBAQ5jviUUvMMBQmFBfkB4SKpglm+dGC/hmqZOiQ0G+b0EhBfkAdH/KDRwraG6JJ5iDURTRAEAGiGS8WWPEHBEJ46dCEfhktJAhFK+gY0C3BowhNooVCX8IzoOwBcQvJEooLshvoluCxWgiTfpwgBpQ/ICKkvuUI/S+ODhDP+BwB0aQXhGKCxFEPAOUKyCbEJRQXxICeMSAidDdBACRWWJaAxBqLC2JAepOYLaAPbxa9gvyAMgdkEJpsQnFBNqA8AamaHizoxQxouSV4FjOglwGCNKDcAQlCcUGOTVCmgNQam4SgQRW05AhoCZZQuIKeNyB/CcUrKHtAglBcEOL5TgF9gaBLroAuDxMEP98qoOmhgk45AzqlEfSEAf0I+hH0TILozPn16e9D784Kr/1zM55r//SniP05/dsB4rKknmI4cz4I6DoiIJxAJ5xi2xqjgLaIugu/FRH5A6qvf90x9FpwjwHXPJYl9U56C+jMa6zsCH0ioJZPqd1VGACCoK/aSeuXVb7WsfZrrDQ/1RMQ4kFEWz4A9AeCxMvqyLd5/XMHWrr76qDsW/ozS6wJ4go69x2tf+4QggZuhLiEcG0KhLY68QVUQQj5QBBW2Iwpn+gXRbuE1vcHvWuJIR8GJCooNsTGlxAE9YS29eIVBEBGBc1jKyheQpwQIqJBhoR0QJXyEYCcFRQXpO926DmGQYaMHEuM8tEzjA8OxwvyzLGeUAEhhyCkw3sgAHLMsLCgCKGLIsSGXEvMBkQzTAEaf7tD1zS3EBtSguCH8iFAuqI1oLggvVckQsZmCIZEQPBTeIIBkHuXOP6GmV5j2Ayt5iTTgnaAVgHIt8LigqiEHIQgiGsIGdkBbXr2O0Tks/oAiQtmoWvAECSuAVstxIaQkB0QGsgoaBPQyQEofA3YT4i/5gUh2g4dCeJ+RkC0SZwdgO4uCIR837Jg1IMQ9ZAdUKVXeAFoEYACgkZ/zLKahq4P/ZglVkH8rhEihCVGNfSXtzPIbRgGYiCSHJo6hv//3OYiDGJiS6+pWO2hyKXAYLSqjYp8L3/bp/aHe6u5QNdfqPMXDnHomEHbxAt18X0xcShQCEL1HPI3DuFjNlhfoDkG5Zd6ByJ1yAASf9hfcmdVz3gv0H2uQblCQsgC2qr9xQC6+lq4IkqycdzF+c0AKveXDxbwAs0xqFDIRFM89woV0TgG0KADHwRKoynmG9RXSMdQM9wEfzYJe4NPRyBrUJtQXyEA1Q6hkI/HwR9JLU0EAk+cH5QppA4Niw4HLOkBNkUgEPUAeYXORXStJyO65O9D5eMF0iBFZ1A+hLxCtUNI5EPetsqflkAmlmKyQY2YwAVCO4k2ExPo/UEgy+eLBpVlPj6p1Dvkgya3nT7wWXpBk3qExYAgJHiMQtYhJKoBfeizGn/8BstjAn1WKYgaCmGQvv3wYbfiDxmKPYG0ki1KA/aB/0FcMoPIA1J/+gIJnjxP2itkEu1rQguEPCD0wR/l41PtJRYnNshH/r/Xych2JDKA0EfmD3x8ZPs1BhW1UDb0H0IqkQn9V30GnzF/nodC/8WgvBbB9/Y9Gqn2IxUYQii02toIHT9LWqxxMwKFQ6hfrEFxBIhYJaCdPowf8SfvRMira/rdUK+9Qzzaf1i0VoA+9Flrf15RP1QOCERxOdQCouPlR6v21uBP3MuSAwJPv91HHYLQ+9sAKvXBH89HEeFPWDCmiKKCOh1EA1G/gE398V2iuUD+oD9bUVdKZAAJnmaFX6HP/YsVfqFDTKLByJVALrxdZXs1Kg4fV9Zk3g/VrCohBhGIFlazRpTWLFMj+rjPLclkNYt6DxXR1j2967wiWs/niqbeFiEZRMzqRpXxTp+gyviasmdF1CjDfsoo+l4Z9iPoUw8Ukseyc3Xhvk4de1Sfvj83/Pl24TyDCEaNQn5GERYVKyjkV3/yCcRyBr2X2WQQQqLdKGIVdEp70Mf0YCseDygnNFy1h71KpKNoUBA64BF7RB93gA3vDZ+IkP3HoYJQgUh3GpT4iOeKAk/Bx+gT8QFQFxGEQCSEQCSPHyDhR8FT8ZEILqOPARQT4peKQxCyiNBIF3QsHuUjeAKBAodEooKQtej3BJ7xfsP4A56AT0TIOASiHxB9MBoUBI7SAQ/6GH/A0+OTEwJR7ZBKpIjwiMUHggd70Oc/fwI+OSFW6RASqUXKiC/oCB7Rp/Tn1vbnr707WmkYCKIwnFhLL3z/99VehBP5mZzdLAszTUZQ6YXgx59NbDd1ihBP+CBCRTDCQAf1mNstB3zmLkQPCrEiEv1ABzyohz4Dy89soqghEjEjTqDzIk/czzQeTv86RCERMaOX0VE84oEP+pnpwznREIlYkSbQ0dJjeNDPZB1OX0OIKKhIRlKSjeIhD/Lp7GeZMM4Hl4yGCB1xNkjyHGyCHtCZbqSBEIjUUchj6pFPTz/L7OlpiEQmIxMPeEw/M3HG98hQ6BkQvfZOeizggQ/6GbCZrISdsIiIRFJ66ZuQ50ke9fOeJDatRBJiRTTiPFkPD6//ASXieY9/uxhGBKJGnid4sIU+Uz1tb1olIVakMTqsJ7wPPp2PaYgRsSIhEUf1wEfLT+Z+TEKMCBX5+Y7zeRQIqGEZkhAr4ph6sPxkDwhAwYZqEMHIxUOeCiuQSUhrNYQ0Pp44nwIBCchvIRKRX4y+mY9GPPJJG5CAkBDuDRIRBjhhPdp9mPoS8aggCv1NRAQNDHh0ck/6J0bXf4jmQkQiwwMfFrTmXaNtQvqNQHSSp1ZA5k11hKSINE08PHvBJ3VAAvJCJHo4HfLQp1pBXKY9kedRhgxoTXwZFBREIi0fDw5wQh7Omr0gCOEgI5Ef8pT1WcgjoUEi8nABSvMkdDj+VQ4Sycjr7HnYT8WCcG8QV2sZ2XbEw1lLFLS4e4NIpMtre2iJh5PgJbA+IE4ktBlFHe1Ti3lSvQ7mgPy9QUQSAHB4aNGnTEEQwhVRMLIgXQvPVxEfANnzPQ82fegB61MloMXuyLdGLMvzZNimMCokIj/Kx/HU8zm+jRNEdjxPkn0uA0KoaNhIF84FfQBEoZGMtPRs2B8GJKfzRvoBa0WgxePoyvfcwrMdWzV9IGRvee1v5/25rs/SyqPPzThqpzIQhMyJ3yMpuPeX8j4AMkRCItP28M7lA4CcUPysUfww0ynsY4Sckj4MSl0fCQ3Ox/p0Cl3Qp0vokj4dQhf1aSW6Lk+b0KV9PNHVeQzRzXNkdOscGd06sdJtY6amzS9qi5FgS/4prwAAAABJRU5ErkJggg==") 50% no-repeat,
    rgba(50, 31, 31, 0.69);
  z-index: 100;
}

.modal .close {
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 16px 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' viewBox='0 0 16 16'%3E%3Cpath d='M.724.118L.118.724 7.395 8 .118 15.276l.606.606L8 8.605l7.276 7.277.606-.606L8.605 8 15.882.724l-.606-.606L8 7.395z'/%3E%3C/svg%3E");
  opacity: 0.5;
  transition: opacity 0.15s ease-in-out;
  padding: 0;
  margin: 0;
  -webkit-transform: translateZ(0);
}

.modal .close:hover {
  opacity: 1;
}

.modal .modal-content {
  box-shadow: 10px 20px 30px 0 rgba(0, 0, 0, 0.31);
}

.modal .modal-content>.close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.modal.invert-colors .close {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M.724.118L.118.724 7.395 8 .118 15.276l.606.606L8 8.605l7.276 7.277.606-.606L8.605 8 15.882.724l-.606-.606L8 7.395z'/%3E%3C/svg%3E");
}

.modal.invert-colors .modal-content {
  background-color: #282828;
}

.modal .bg-error .ui-badge,
.modal.invert-colors,
.modal.invert-colors h1,
.modal.invert-colors h2,
.modal.invert-colors h3,
.modal.invert-colors h4,
.modal.invert-colors h5,
.modal.invert-colors h6 {
  color: #fff;
}

.modal .bg-error a {
  color: #fff;
  text-decoration: underline;
}

.modal .modal-body {
  padding: 30px 20px;
}

.modal .modal-body .buttons .btn {
  min-width: 132px;
}

.modal .modal-header {
  display: block;
  padding: 25px 20px 0;
}

.modal .modal-header h5 {
  font-size: 20px;
  line-height: 28px;
}

.modal .modal-header h6 {
  padding-top: 2px;
  font-size: 18px;
  line-height: 26px;
}

.modal .modal-header .close {
  margin: 0 -7px 0 0;
  cursor: pointer;
  color: #fff;
}

.modal .modal-header .close+h5 {
  padding: 0 14px 0 30px;
}

.modal .modal-footer {
  padding: 0 20px 30px;
}

.modal .form-group-lang>.selectboxit-container,
.modal .form-group-lang>select.form-control {
  width: 100%;
}

.modal .captcha {
  padding: 0 0 20px;
}

@media (min-width: 768px) {
  .modal .modal-content {
    box-shadow: 20px 40px 60px 0 rgba(0, 0, 0, 0.31);
  }

  .modal .modal-body {
    padding: 40px 30px;
  }

  .modal .modal-header {
    padding: 25px 30px 0;
  }

  .modal .modal-header h5 {
    font-size: 24px;
    line-height: 32px;
  }

  .modal .modal-footer {
    padding: 0 30px 40px;
  }
}

.modal-message .modal-body {
  padding: 40px 20px;
  font-size: 15px;
  line-height: 24px;
}

.modal-message .modal-body h2 {
  margin-bottom: 30px;
}

.modal-message .modal-body h2:last-child {
  margin-bottom: 0;
}

.modal-message p {
  margin-bottom: 14px;
}

.modal-message p:last-child {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .modal-message .modal-body {
    padding: 50px 30px;
  }

  .modal-message .modal-body h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 34px;
  }
}

.form-table {
  width: 100%;
  margin-bottom: 20px;
}

.form-table:last-child {
  margin-bottom: 0;
}

.form-table .form-control,
.form-table .selectboxit-container,
.form-table .selectboxit-container .selectboxit-options {
  width: 100%;
}

.form-table .selectboxit-container .selectboxit-btn {
  height: 34px;
}

.form-table .selectboxit-container .selectboxit-text {
  width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  padding: 5px 30px 6px 11px;
}

.form-table label {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 21px;
  color: #a8a8a8;
}

.form-table .ft-row {
  margin-bottom: 15px;
}

.form-table .ft-row:last-child {
  margin-bottom: 0;
}

.form-table .ft-cell>label {
  padding: 0 0 7px;
}

.form-table .ft-cell .custom-control.custom-checkbox {
  margin: 5px 0;
}

.form-table .ft-cell .custom-control.custom-checkbox:last-child {
  margin-bottom: 0;
}

.form-table .ft-cell .double-separated {
  display: flex;
  align-items: center;
}

.form-table .ft-cell .double-separated .form-control {
  flex: 0 1 100%;
}

.form-table .ft-cell .double-separated .separator {
  padding: 0 10px;
  opacity: 0.6;
}

@media (min-width: 400px) {
  .form-table {
    display: table;
  }

  .form-table .ft-cell {
    display: table-cell;
    vertical-align: top;
    text-align: left;
    padding-bottom: 15px;
  }

  .form-table .ft-cell:first-child {
    padding-right: 20px;
  }

  .form-table .ft-cell>label {
    padding: 6px 0 7px;
  }

  .form-table .ft-cell .custom-control.custom-checkbox {
    margin: 6px 0 7px !important;
  }

  .form-table .ft-row {
    display: table-row;
    margin: 0;
  }

  .form-table .ft-row:last-child .ft-cell {
    padding-bottom: 0;
  }
}

.modal-settings.invert-colors .modal-content {
  background-color: #1d1d1d;
  user-select: none;
}

.modal-settings.invert-colors .modal-header {
  background-color: #2b2b2b;
  padding: 17px 64px 0 25px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.modal-settings.invert-colors .modal-header .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 60px;
  margin: 0;
}

.modal-settings.invert-colors .modal-header .modal-title {
  flex: 1 0 auto;
  padding: 0 30px 17px 0 !important;
  font-size: 19px;
  line-height: 26px;
  white-space: nowrap;
}

.modal-settings.invert-colors .modal-header .modal-title svg {
  display: inline-block;
  vertical-align: top;
  fill: #32be5b;
  margin: 4px 4px 0 0;
}

.modal-settings.invert-colors .modal-header ul.tabs {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-settings.invert-colors .modal-header ul.tabs li {
  margin: 0;
  padding: 7px 15px 8px;
  min-width: 90px;
  font-weight: 600;
  color: #828282;
  background-color: #393939;
  text-align: center;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.modal-settings.invert-colors .modal-header ul.tabs li:hover {
  color: #9c9c9c;
  background-color: #464646;
}

.modal-settings.invert-colors .modal-header ul.tabs li.active {
  color: #cbcbcb;
  background-color: #1d1d1d;
  cursor: default;
}

.modal-settings.invert-colors .modal-body,
.modal-settings.invert-colors .modal-footer {
  color: #cecece;
  font-size: 13px;
  line-height: 21px;
  font-weight: 400;
}

.modal-settings.invert-colors .modal-body {
  position: relative;
  padding: 0;
}

.modal-settings.invert-colors .modal-body>.scroll-element.scroll-y {
  height: auto;
  min-height: auto;
  top: 10px;
  bottom: 10px;
}

.modal-settings.invert-colors .modal-body .scroll-element.scroll-x {
  display: none;
  visibility: hidden;
}

.modal-settings.invert-colors .modal-form-wrapper {
  padding: 30px 25px;
}

.modal-settings.invert-colors .modal-footer {
  justify-content: flex-start;
  padding: 20px 25px;
  background-color: #1d1d1d;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 -3px 6px 0 rgba(0, 0, 0, 0.4);
}

.modal-settings.invert-colors .modal-footer .btn {
  min-width: 96px;
  padding: 5px 18px 6px;
}

.modal-settings.invert-colors .form-control {
  font-weight: 300;
}

.modal-settings.invert-colors .form-group:last-child {
  margin-bottom: 0;
}

.modal-settings.invert-colors .form-group .form-control,
.modal-settings.invert-colors .form-group .selectboxit-container {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .modal-settings.invert-colors .modal-dialog {
    max-width: 500px;
  }

  .modal-settings.invert-colors .modal-footer,
  .modal-settings.invert-colors .modal-form-wrapper {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.modal-settings .selectboxit-options {
  max-height: 340px;
}

.pages-slider-wrapper {
  height: 35px;
  padding: 12px 0;
}

.pages-slider-wrapper .ui-slider {
  position: relative;
  text-align: left;
  background-color: #e3e3e3;
}

.pages-slider-wrapper .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 2px 3px 0 rgba(0, 0, 0, 0.17);
  transition: box-shadow 0.15s ease-in-out;
}

.pages-slider-wrapper .ui-slider .ui-slider-handle:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1), 0 2px 6px 0 rgba(0, 0, 0, 0.34);
}

.pages-slider-wrapper .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-color: #32be5b;
}

.pages-slider-wrapper .ui-slider.ui-state-disabled .ui-slider-handle,
.pages-slider-wrapper .ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.pages-slider-wrapper .ui-slider-horizontal {
  height: 11px;
  border-radius: 2px;
}

.pages-slider-wrapper .ui-slider-horizontal .ui-slider-handle {
  width: 13px;
  height: 35px;
  border-radius: 7px;
  top: -12px;
  margin-left: -6px;
}

.pages-slider-wrapper .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
  border-radius: 2px;
}

.pages-slider-wrapper .ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.pages-slider-wrapper .ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.rs-container {
  position: relative;
  margin-bottom: 20px;
  height: 13px;
  user-select: none;
}

.rs-container:last-child {
  margin-bottom: 0;
}

.rs-bar,
.rs-line {
  position: absolute;
  display: block;
  height: 3px;
}

.rs-line {
  top: 5px;
  left: 0;
  width: 100%;
  background-color: hsla(0, 0%, 100%, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.rs-bar {
  background-color: #3bb5e9;
}

.rs-handle {
  display: block;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  padding: 0 4px;
  font-size: 9px;
  line-height: 13px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  background-color: #2babe2;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
}

.irs {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif;
}

.irs,
.irs-line {
  position: relative;
  display: block;
}

.irs-line {
  overflow: hidden;
  outline: none !important;
}

.irs-bar {
  display: block;
}

.irs-bar,
.irs-shadow {
  position: absolute;
  left: 0;
  width: 0;
}

.irs-shadow {
  display: none;
}

.irs-handle {
  position: absolute;
  display: block;
  box-sizing: border-box;
  cursor: default;
  z-index: 1;
}

.irs-handle.type_last {
  z-index: 2;
}

.irs-max,
.irs-min {
  position: absolute;
  display: block;
  cursor: default;
}

.irs-min {
  left: 0;
}

.irs-max {
  right: 0;
}

.irs-from,
.irs-single,
.irs-to {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}

.irs-with-grid .irs-grid {
  display: block;
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}

.irs-grid-pol.small {
  height: 4px;
}

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: transparent;
  z-index: 2;
}

.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}

.irs-disabled {
  opacity: 0.4;
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}

.irs--cnvsm {
  height: 13px;
}

.irs--cnvsm .irs-bar,
.irs--cnvsm .irs-line {
  top: 5px;
  height: 3px;
}

.irs--cnvsm .irs-line {
  background-color: hsla(0, 0%, 100%, 0.15);
}

.irs--cnvsm .irs-bar {
  background-color: #3bb5e9;
}

.irs--cnvsm .irs-handle {
  top: 0;
  min-width: 30px;
  height: 13px;
  padding: 1px 4px 0;
  font-size: 9px;
  line-height: 12px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  background-color: #2babe2;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
}

.irs--cnvlg,
.rs-container-lg {
  height: 35px;
}

.irs--cnvlg .irs-bar,
.irs--cnvlg .irs-line {
  top: 12px;
  height: 11px;
  border-radius: 2px;
}

.irs--cnvlg .irs-line {
  background-color: #e3e3e3;
}

.irs--cnvlg .irs-bar {
  background-color: #32be5b;
}

.irs--cnvlg .irs-handle {
  top: 0;
  width: 13px;
  height: 35px;
  border-radius: 7px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 2px 3px 0 rgba(0, 0, 0, 0.17);
  transition: box-shadow 0.15s ease-in-out;
}

.irs--cnvlg .irs-handle:hover {
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1), 0 2px 6px 0 rgba(0, 0, 0, 0.34);
}

.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: auto;
  text-align: left;
}

.selectboxit-container * {
  -webkit-touch-callout: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
}

.selectboxit-container [data-val*="/ar/"],
.selectboxit-container [data-val*="/ja/"],
.selectboxit-container [data-val*="/kr/"],
.selectboxit-container [data-val*="/th/"],
.selectboxit-container [data-val*="/vn/"],
.selectboxit-container [data-val*="/zh/"] {
  font-family: Arial, sans-serif !important;
}

.selectboxit-btn {
  width: 100% !important;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  position: relative;
  padding-right: 30px !important;
  transition: none;
  transform: translateZ(0);
}

.selectboxit-btn .selectboxit-text {
  max-width: none !important;
}

.selectboxit-disabled {
  cursor: default !important;
}

.selectboxit-options {
  width: auto;
  min-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 0 !important;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  z-index: 999;
  border-radius: 4px;
  text-align: left;
  font-weight: 300 !important;
  scrollbar-color: #606060 #1d1d1d;
  scrollbar-width: thin;
}

.selectboxit-options::-webkit-scrollbar-track {
  background-color: transparent;
}

.selectboxit-options::-webkit-scrollbar {
  width: 17px;
  background-color: transparent;
}

.selectboxit-options::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border: 6px solid #1d1d1d;
  background-color: #606060;
}

.selectboxit-options>li {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
}

.selectboxit-options>li a {
  font-size: 14px !important;
  line-height: 21px !important;
  padding: 6px 12px 7px;
  display: block;
  text-decoration: none !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: none;
}





.ocr-centered {
  max-width: 850px;
  margin: 0 auto;
}

.adb+.ocr-centered {
  margin-top: -3px;
}

.ocr-settings .section {
  margin: 10px 0 0;
  padding: 30px 20px;
  background-color: #f6f6f6;
}

.ocr-settings .section:first-child {
  margin-top: 0;
}

.ocr-settings .section .row {
  margin-bottom: -20px;
}

.ocr-settings .section .row [class*="col-"],
.ocr-settings h4 {
  margin-bottom: 20px;
}

.ocr-settings .form-group,
.ocr-settings h4:last-child {
  margin-bottom: 0;
}

.ocr-settings .form-group>.form-control,
.ocr-settings .form-group>.selectboxit-container {
  width: 100%;
}

.ocr-tools1+.ocr-settings {
  padding-top: 10px;
}

@media (min-width: 768px) {
  .ocr-settings .section {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .ocr-settings .section {
    padding: 40px;
  }
}


.converter-wrapper~.file-tools>.ocr-settings {
  margin-top: -30px;
}

@media (min-width: 768px) {
  .converter-wrapper+.links-nav+.file-tools>.ocr-settings {
    margin-top: 0;
  }
}

.clients-section {
  background-color: #f8f8f8;
}

.clients-section .logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.clients-section .logos:last-child {
  margin-bottom: -35px;
}

.clients-section .logos img {
  width: auto;
  height: 40px;
  margin: 0 20px 35px;
  opacity: 0.6;
}

@media (min-width: 768px) {
  .clients-section .logos {
    margin: 0 -24px;
  }

  .clients-section .logos img {
    margin: 0 24px 35px;
  }
}

.section-title .heart {
  font-size: 0;
  position: relative;
}

.section-title .heart:before {
  position: relative;
  top: 1px;
  content: "\2764";
  font-size: 20px;
  color: #2d63ba;
}




.imprint-section {
  background-color: #fff;
}

.imprint-section .section-title {
  margin-top: -25px;
}

.imprint-section .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .imprint-section .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.imprint-info a {
  color: #333;
  text-decoration: underline;
}

.imprint-info a:hover {
  color: #2d63ba;
}

.imprint-info p {
  margin-bottom: 22px;
  line-height: 22px;
}

.imprint-info p:last-child {
  margin-bottom: 0;
}

.imprint-info .logo {
  margin: 4px 0 17px;
  color: #474747;
}

.imprint-info .logo a {
  color: currentColor !important;
}

.imprint-info .reg-num,
.imprint-info small {
  font-size: 12px;
  font-weight: 300;
}

.imprint-info small {
  color: #959595;
}

.imprint-info .reg-num {
  line-height: 20px;
}

.imprint-info .reg-num br {
  display: none;
}

.imprint-info .col-12 {
  margin-bottom: 22px;
}

.imprint-info .col-12:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .imprint-info {
    justify-content: center;
    margin-left: -40px;
    margin-right: -40px;
  }

  .imprint-info .reg-num br {
    display: inline;
  }

  .imprint-info .col-12 {
    margin-bottom: 0;
    width: auto;
    flex: 0 1 auto;
    text-align: left;
    padding: 8px 40px 9px;
    border-left: 1px solid #eaeaea;
  }

  .imprint-info .col-12:first-child {
    border-left: none;
  }
}

@media (min-width: 860px) {
  .imprint-info {
    margin-left: -60px;
    margin-right: -60px;
  }

  .imprint-info .col-12 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* Semi-transparent black background */
  z-index: 100;
  /* Ensure the overlay is above the content */
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(40, 40, 40, 0.2);
  border-radius: 4px;
  outline: 0;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 0 solid #eaeaea;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
}

.modal-title {
  font-size: 22px;
  font-weight: bold;
  /* Other styles for the modal title */
  color: white;
  /* margin: 8px 0; */
  margin-bottom: 15px;
}

.modal-body {
  padding: 20px;
  margin-bottom: 0;
  line-height: 1.6;

  position: relative;
  flex: 1 1 auto;

  /* Center items horizontally and vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* Other styles for the modal body */
  /* padding: 1.25rem */
}

/* Customize the dropdown */
.custom-dropdown {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  background-color: transparent;
  color: var(--primary-color);
  font-size: 16px;
  /* Other styles for the dropdown */
}

/* Customize the button */
.custom-button {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 170px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  /* margin: 15px auto; */
  /* Other styles for the button */
}

/* Add hover effects if needed */
.custom-button:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);

  /* A darker shade of the primary color */
}

.loader {
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid var(--primary-color);
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* -------------------------- */
/* ------- drag & drop css --------- */

#drop-area {
  border: 3px dashed #aaa;
  border-radius: 10px;
  padding: 4rem;
  margin: 0.5rem;
  text-align: center;
  transition: border-color 0.1s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bor-dashed {
  border: 3px dashed #aaa;
}

#drop-area.dragged-over {
  border-color: #555;
  transition: all 0.2s;
}

#file-input {
  display: none;
  color: #727cf5;
}

.label {
  cursor: pointer;
  background-color: #727cf5;
  color: #fff;
  padding: 1.3rem 3.5rem;
  transition: background-color 0.3s ease;
  font-size: x-large;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.label:hover {
  background-color: #5d6bfe;
}

#file-list {
  margin-top: 20px;
}

#uploadAudioBtn {
  display: none;
}

.file-item {
  margin-bottom: 10px;
}

.button-wrapper {
  text-align: center;
  margin-top: 10px;
  /* Adjust the margin-top as needed */
}

.ocr-result-buttons {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border-radius: 0.5rem;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.input-filed {
  border-radius: 0.5rem;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  border: none;
  padding: 8px;
}

/* CHOOSE FORMAT MODAL IN AUDIO CONVERTER CSS  */
.choose-format {
  width: 90%;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 8px 14px;
  margin-top: 9px;
}

.choose-format .format-grid {
  display: grid;
  grid-template-columns: repeat(5, 19%);
  gap: 5px;
}

.choose-format .format-grid .format {
  padding: 5px 8px;
  text-align: center;
  margin: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.format-grid .format:hover {

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
  color: white;

}

.format {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
}


/* ------- Custom dialog --------  */
.custom-dialog-modal,
.custom-dialog-modal-pro,.pop-box-store {
  width: 500px;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 40px;  display: none;
  left: 0;
  right: 0;
  background-color: #f7f7f7;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 100;
  transition: all 0.3s ease;
}

.custom-dialog-modal.show,
.custom-dialog-modal-pro.show,.pop-box-store.show {
  display: block;
}

.custom-dialog-modal .closeDialog,
.custom-dialog-modal-pro .closeDialog,.pop-box-store .closeDialog {
  position: absolute;
  top: 14px;
  right: 18px;
  cursor: pointer;
}

.custom-dialog-modal img,.custom-dialog-modal-pro img,.pop-box-store .closeDialog img {
  width: 40px;
  height: auto;
  margin: 15px 0;
}

.custom-dialog-modal .dialog-heading,
.custom-dialog-modal-pro .dialog-heading {
  font-size: 1.5rem;
  font-weight: bold;
}

.custom-dialog-modal .dialog-para,
.custom-dialog-modal-pro .dialog-para {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
}

.custom-dialog-modal .stars,
.custom-dialog-modal-pro .stars {
  margin-bottom: 19px;
}

.custom-dialog-modal .stars .star,
.custom-dialog-modal-pro .stars .star {
  font-size: 22px;
}

.custom-dialog-modal .dialogBtn,
.custom-dialog-modal-pro .dialogBtn {
  padding: 12px 22px;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  background-color: #2d63ba1c;
  font-size: 15px;
  cursor: pointer;
}

.custom-dialog-modal .dialogBtn:hover,
.custom-dialog-modal-pro .dialogBtn:hover {
  text-decoration: none;
  background-color: #2d63ba1a;
}

.icon {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}




/*! CSS Used from: Embedded */
*,
:after,
:before {
  box-sizing: border-box;
}

svg {
  vertical-align: middle;
}

svg {
  overflow: hidden;
}

.container-system {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}




.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.svg-Windows-40 {
  background: url(https://static.icecreamapps.com/www/webpack_sprite.css-0c046a40.712f8ffc.svg) no-repeat;
}

.svg-Windows-40 {
  background-position: 90.24590163934427% 92.9070929070929%;
}

.svg-Windows-40-dims {
  width: 45px;
  height: 44px;
}


.heading-text {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: var(--primary-color);
}


h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;

}

.btn-92-orange {
  height: 92px;
  border-radius: 12px;
  padding: 30px 50px;
  font-size: 24px;
  font-weight: 700;
  border: 3px solid #000;
  outline: 1px solid transparent;
  background: transparent;
  transition: box-shadow 0.1s ease-in-out;
}

.btn-92-orange,
.btn-92-orange:hover {
  color: #000;
  text-decoration: none;
}


h2 {
  font-family: Montserrat, Open Sans, Tahoma, sans-serif;
}

.landing .btn-92-orange:hover {
  text-decoration: none;
  color: #fff;
}

.landing .btn-92-orange:active {
  filter: brightness(0.85);
}

.landing-requirements-h h2 {
  margin-top: 12px;
}

.landing-requirements h2 {
  font-size: 40px;
  line-height: 52px;
  font-family: Montserrat, Open Sans, Tahoma, sans-serif;
  color: #000;
}

.landing-requirements-items {
  margin-top: 64px;
  margin-bottom: 48px;
}

.landing-requirements-item {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e1e1e1;
}

.landing-requirements-item-h {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  color: #222;
}

.landing-requirements-item-body {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: #222;
}

.landing-requirements-item:last-child {
  border-bottom: 1px solid #e1e1e1;
}

.landing-requirements-btn-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: #444;
  margin-top: 16px;
}


/*! CSS Used from: Embedded */
.styles-module--paragraph--26b81 {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  display: inline-block;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .styles-module--paragraph--26b81 {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {
  .styles-module--paragraph--26b81 {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  .styles-module--paragraph--26b81 {
    font-size: 14px;
    line-height: 22px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

img {
  vertical-align: middle;
  border-style: none;
}

header {
  display: block;
}

img {
  border: 0;
}

* {
  box-sizing: border-box;
}

p {
  margin-bottom: 0;
}

p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

@media (max-width: 1199px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 991px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 575px) {
  p {
    font-size: 14px;
    line-height: 22px;
  }
}

.fade {
  animation-name: fade;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}

.index-module--layout_en_container--f4c3a * {
  font-family: "Inter", sans-serif !important;
  letter-spacing: 0;
}

.styles-module--common_layout--e36f7 .styles-module--common_children--3991b {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.styles-module--reason_title--badc7 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
}

.styles-module--reason_title--badc7 {
  margin-top: 16px;
}

.styles-module--reason_description--590e1 {
  color: #4b5159;
}

.styles-module--reason_description--590e1 {
  margin-top: 8px;
}

.styles-module--reason_container--b6319 {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

.styles-module--reason_img--1ac7e {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 991px) {
  .styles-module--reason_title--badc7 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 575px) {
  .styles-module--reason_title--badc7 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }
}

.styles-module--reasons_container--96282 {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

@media screen and (max-width: 991px) {
  .styles-module--reasons_container--96282 {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}

@media screen and (max-width: 575px) {
  .styles-module--reasons_container--96282 {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}

/*! CSS Used keyframes */
@keyframes fade {
  from {
    filter: blur(12px);
  }

  to {
    filter: blur(0px);
  }
}
.title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.container-supported {
  max-width: 64rem;
  margin: 40px auto;
  padding: 1rem;
}
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.icon-container {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.format-name {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  font-size: 0.875rem;
}

.right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.format-desc {
  font-size: 0.875rem;
  color: #4b5563;
  margin: 0 0 0.5rem 0;
}

.convert-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.875rem;
  align-self: start;
}

.convert-link:hover {
  color: #1d4ed8;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*! CSS Used from: Embedded */
*,
:after,
:before {
  box-sizing: border-box;
}

a {
  background-color: transparent;
}

a:hover { text-decoration: underline;
}

img {
  border-style: none;
}

img {
  vertical-align: middle;
}


.order-last {
  -ms-flex-order: 13;
  order: 13;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;

}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

@media print {

  *,
  :after,
  :before {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  img {
    page-break-inside: avoid;
  }

}

.svg-Youtube {
  background: url(https://static.icecreamapps.com/www/webpack_sprite.css-0c046a40.712f8ffc.svg) no-repeat;
}

.svg-Youtube {
  background-position: 63.55446355446355% 92.4075924075924%;
}

.svg-Youtube-dims {
  width: 44px;
  height: 44px;
}

.fz-16 {
  font-size: 16px;
}


.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.footer-social-links a {
  display: block;
}

.footer-social-links a:hover {
  opacity: 0.8;
}

.footer-social-links a:nth-child(2) {
  margin: 0 10px;
}

.footer-social-links a i {
  display: block;
}

.svg-ebook-reader,
.svg-Facebook,
.svg-image-resizer,
.svg-pdf-converter,
.svg-pdf-editor,
.svg-pdf-split-merge,
.svg-photo-editor,
.svg-screen-recorder,
.svg-slideshow-maker,
.svg-video-converter,
.svg-video-editor,
.svg-X {
  background: url(https://static.icecreamapps.com/www/webpack_sprite2-3b118891.3919a4bd.svg) no-repeat;
}

.svg-Facebook {
  background-position: 27.559055118110237% 89.96138996138995%;
}

.svg-Facebook,
.svg-X {
  width: 42px;
  height: 42px;
}

.svg-X {
  background-position: 5.511811023622047% 89.96138996138995%;
}

.svg-ebook-reader {
  background-position: 16.53543307086614% 89.96138996138995%;
  width: 42px;
  height: 42px;
}

.svg-image-resizer {
  background-position: 96.05781865965834% 77.99227799227799%;
  width: 43px;
  height: 42px;
}

.svg-pdf-converter {
  background-position: 84.7568988173456% 77.99227799227799%;
  width: 43px;
  height: 42px;
}

.svg-pdf-editor {
  background-position: 0 89.96138996138995%;
  width: 42px;
  height: 42px;
}

.svg-pdf-split-merge {
  background-position: 90.40735873850197% 69.88416988416988%;
  width: 43px;
  height: 42px;
}

.svg-photo-editor {
  background-position: 33.07086614173228% 89.96138996138995%;
  width: 42px;
  height: 42px;
}

.svg-screen-recorder {
  background-position: 11.023622047244094% 89.96138996138995%;
  width: 42px;
  height: 42px;
}

.svg-slideshow-maker {
  background-position: 84.7568988173456% 69.88416988416988%;
  width: 43px;
  height: 42px;
}

.svg-video-converter {
  background-position: 79.10643889618922% 77.99227799227799%;
  width: 43px;
  height: 42px;
}

.svg-video-editor {
  background-position: 90.40735873850197% 77.99227799227799%;
  width: 43px;
  height: 42px;
}.custom-alert .close img{	width: 20px;	height: 20px;}.comment-box.pop-box-buy{background-color: #e2e2e2;text-align: center;width:900px!important;overflow: hidden;padding: 0 !important;}.comment-box .pro-pic{width: 30%;padding:20px  0;}.comment-box .pro-info{width: 69%;text-align: left;padding-bottom: 30px;background-color: #fff;padding-left: 30px;padding-right: 15px;}.comment-box .pro-pic img{width: auto;height: auto;max-width: 100%;}.comment-box .pro-pic .tit{font-size: 18px;text-align: left;padding-left: 15px;font-weight: bold;padding-top: 15px;}.comment-box .pro-info .tit{font-size: 20px;color: #333;font-weight: 600;}.comment-box .pro-info .ic{width: 21px;height: auto;margin: 0;}.comment-box .pro-info .ic1{width: 25px;height: auto;margin: 0;}.comment-box .pro-info .pro-vs-info{color: #555;}.comment-box .pro-info .pro-vs-info p{margin-bottom: 0;margin-top: 5px;font-size: 14px;}.comment-box .pro-info .pro-vs-info .tit-small{font-size: 18px;font-weight: 600;color: #333;}.pop-box-buy.comment-box .pro-info{padding-top: 30px;}.pop-box-buy .flex-btn .btn{background-color: #c9c9c9;margin-left: 0;margin-right: 0;font-size: 20px;}.pop-box-buy .flex-btn .btn span{font-size:14px;font-weight: normal;}.pop-box-buy .flex-btn .btn.buy{background-color: #fac52d;}.pop-box-buy .flex-btn .btn{width: 100%;margin-top: 12px;}.ul-features li{position: relative;padding-left: 25px!important;z-index: 20;}.ul-features li::before {background: url("https://pdf.acethinker.ai/wp-content/themes/acetheme/dist/img/pop/right-blue.svg");position: absolute;left: 0;top:0;content: "";width: 20px;height: 20px;background-size: contain;}.comment-box.pop-box-store{background-color: #fff;text-align: center;width: 900px!important;overflow: hidden;padding: 0 !important;}.pop-box-store.comment-box .pro-pic{font-size: 14px;background-color: #d7f8ef;}.pop-box-store.comment-box .pro-info{padding: 60px 20px 20px 20px;}.pop-box-store.comment-box ul{width: 100%;padding:0 15px 20px 15px;border: none!important;margin: auto!important;}.pop-box-store.comment-box ul li{list-style-type:none;padding: 0;text-align: left;margin: 10px 0;}.pop-box-store.comment-box .link-buy-box{padding: 5px 10px;}.link-buy-box .item{border: 1px solid #ddd;border-radius: 10px;text-align: center;width: 32%;overflow: hidden;margin-left:2%;}.link-buy-box .item:first-child{margin-left: 0;}.link-buy-box .item .save-num{background-color: #333;text-align: center;color: #fff;font-size: 16px; font-weight: normal;}.link-buy-box .item .tit{font-size: 15px;font-weight: bold;padding: 10px;text-align: center;}.link-buy-box .item .price{color: #e83b45;font-size: 20px;padding-bottom: 15px;font-weight: bold;text-align: center;}.link-buy-box .item .price del{display: block;color: #666;font-size: 14px;font-weight: normal;}.pop-box-store.comment-box .pro-info .note{margin-top: 20px;font-size: 13px;}.tab-changeBox ul li{cursor: pointer;}.tab-changeBox ul li:hover{background-color: #f5f5f5;}.tab-changeBox ul li.active{border-color: #333;background-color: #e4fcf6;}.tab-changeBox .change-item {display: none;}.tab-changeBox .change-cont{padding: 15px;}.tab-changeBox .change-cont .buy-box{margin-top: 10px;}.tab-changeBox .change-cont .buy-box a{border-radius:10px;padding:10px;font-size: 16px;display: block;border: 1px solid #333;text-align: center;}.tab-changeBox .change-cont .buy-box .buy-now{background-color: #333;color: #fff;margin-bottom: 10px;}.tab-changeBox .change-cont .buy-box .paypal-buy img{width: 60px;background-color: #fff;}.pop-box-store.comment-box .pro-pic{background: #d7f8ef url("https://pdf.acethinker.ai/wp-content/themes/acetheme/dist/img/pop/store-pop-bg.jpg")no-repeat bottom center;padding-bottom:80px;}.comment-box .pro-info .pro-vs-info .item{width: 48%;margin-top: 15px;}.comment-box .pro-info .pro-vs-info .item:first-child{border-right: 1px solid #ddd;}.comment-box .pro-info .pro-vs-info .item ul{width: 100%;margin:inherit;font-size: 14px;padding-left: 15px;}.comment-box .pro-info .pro-vs-info .item ul li{margin-top: 5px;}.mobile-show{display: none!important;}.comment-box .name{font-size: 26px;}.pop-box-store.comment-box .pro-info .name{font-weight: 500;font-size: 30px;}@media (max-width: 960px){	.pop-box-buy,	.pop-box1,	.pop-box-store,	.comment-box.pop-box-buy,.comment-box.pop-box-store{width: 92%!important;}	.comment-box .pro-pic,.comment-box .pro-info,.comment-box .pro-info .pro-vs-info .item,.link-buy-box .item{width: 100%;}	.comment-box .pro-info .pro-vs-info .item:first-child{border: none;}	.pop-box-store.comment-box .pro-info{padding: 15px;}	.comment-box .pro-info{padding-left: 15px;}	.comment-box .name{font-size: 24px;}	.windows-show{display: none!important;}	.mobile-show{display: block!important;}	.pop-box-store.comment-box .pro-pic{padding-bottom: 20px;}	.link-buy-box .item .price del{display: inline-block;}	.tab-changeBox .change-cont{padding-top: 0;}}