.icon-success {
  color: #00C05E;
}

.icon-danger {
  color: #e91e63;
}

body {
  background: #fff;
  color: #1F2933;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

h1, .h1 {
  color: #1F2933;
  line-height: 1.3334;
}

@media (max-width: 991px) {
  h1, .h1 {
    font-size: 30px;
  }
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: 36px;
  }
}

h2, .h2 {
  font-size: 30px;
  color: #333;
  line-height: 1.2;
}

@media (max-width: 991px) {
  h2, .h2 {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  color: #333;
  line-height: 1.3;
}

@media (max-width: 991px) {
  h3, .h3 {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  h3, .h3 {
    font-size: 24px;
  }
}

h4, .h4 {
  color: #333;
  line-height: 1.3;
}

@media (max-width: 991px) {
  h4, .h4 {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  h4, .h4 {
    font-size: 20px;
  }
}

h5, .h5 {
  color: #1F2933;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

h6, .h6 {
  font-size: 14px;
  color: #353F4A;
  line-height: 1.5;
  margin-bottom: 1rem;
}

a, a:hover {
  color: #0044B8;
  text-decoration: none;
}

a:focus {
  outline: none;
}

b, strong {
  font-weight: 600;
}

.opening {
  color: #52606D;
  margin-bottom: 27px;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding-left: 20px;
  position: relative;
}

.custom-list li:before {
  color: #0059F1;
  display: inline-block;
  content: "\25CF";
  font-size: 1.2em;
  line-height: 1.15;
  position: absolute;
  left: 0;
  top: 0;
}

.custom-list li + li {
  margin-top: 1rem;
}

.spin {
  -webkit-animation: spin-rotate 2s linear infinite;
  animation: spin-rotate 2s linear infinite;
  transform-origin: center;
  width: 70px;
}

.spin circle {
  fill: none;
  stroke-width: 4;
}

.spin .dash {
  stroke: #0059F1;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: spin-dash 1.5s ease-in-out infinite;
  animation: spin-dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes spin-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 80, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -124px;
  }
}

@keyframes spin-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 80, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dashoffset: -124px;
  }
}

/* Hide svg sprite */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.link-info {
  background: url(../images/sprite.svg#g-info) no-repeat left center;
  background-size: 16px 16px;
  padding-left: 25px;
}

.link-info, .link-info:hover {
  color: #616E7C;
}

.link-external {
  background: url(../images/sprite.svg#g-external) no-repeat right center;
  background-size: 11px 11px;
  padding-right: 18px;
}

.link-charge {
  display: inline-block;
}

.link-charge > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: right;
}

.links-list {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin: 0 -4px 1rem;
}

.links-list > a {
  display: inline-block;
  padding-left: 4px;
  padding-right: 4px;
}

.alert {
  font-size: 14px;
  margin-bottom: 1.5rem;
  padding: 17px 16px 17px;
}

.alert-success {
  background-image: url(../images/sprite.svg?#g-success);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: left 16px top 18px;
  background-color: #cbfad1;
  border-color: #cbfad1;
  color: #227739;
  padding-left: 48px;
}

.alert-info {
  background-image: url(../images/sprite.svg?#g-info);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: left 16px top 18px;
  background-color: #cbe7fa;
  border-color: #cbe7fa;
  color: #225b77;
  padding-left: 48px;
}

.alert-warning {
  background-image: url(../images/sprite.svg?#g-warning);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: left 16px top 18px;
  background-color: #FAEFCB;
  border-color: #FAEFCB;
  color: #775F22;
  padding-left: 48px;
}

.alert .your-address {
  color: #55606C;
  position: relative;
}

.alert .your-address .link-edit {
  position: absolute;
  right: 0;
  top: 0;
}

.alert :last-child {
  margin-bottom: 0;
}

.btn {
  border-radius: 6px;
  color: #3E4C59;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  padding: 15px 24px;
}

.btn .icon {
  position: relative;
  top: -1px;
}

.btn .icon-before {
  margin-right: 6px;
}

.btn .icon-after {
  margin-left: 6px;
}

.btn .spin {
  margin-right: 8px;
  position: relative;
  top: -1px;
  width: 20px;
}

.btn .spin circle {
  stroke-width: 6;
}

.btn .spin .dash {
  stroke: #fff;
}

.btn:focus {
  box-shadow: none;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

.btn-cf-primary {
  background-color: #0059F1;
  color: #fff;
}

.btn-cf-primary:active, .btn-cf-primary:active:focus {
  background: #003CA3;
}

.btn-cf-primary:hover {
  background-color: #3179F4;
  color: #fff;
}

.btn-cf-primary:disabled {
  background: #91B8F9;
  cursor: no-drop;
}

.btn-cf-secondary {
  background-color: transparent;
  color: #0059F1;
}

.btn-cf-light, .btn-cf-outline-light {
  background-color: transparent;
  color: #3E4C59;
}

.btn-cf-outline-light {
  border-color: #3E4C59;
}

.table thead th {
  border-bottom: none;
}

.table tbody:first-child tr:first-child th, .table tbody:first-child tr:first-child td {
  border-top: none;
}

.table tfoot th, .table tfoot td {
  font-weight: 600;
}

.card .table:last-child {
  margin-bottom: 0;
}

.card .table thead th {
  border-top: none;
}

@media (max-width: 767px) {
  .table td, .table th {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .table td:first-child, .table th:first-child {
    padding-left: 24px;
  }
  .table td:last-child, .table th:last-child {
    padding-right: 24px;
  }
}

.card {
  border-color: #E4E7EB;
  margin-bottom: 1rem;
}

.card-header {
  font-weight: 500;
}

.card-body {
  color: #323F4B;
}

.card-body :last-child {
  margin-bottom: 0;
}

.card + .card {
  margin-top: 14px;
}

@media (max-width: 767px) {
  .card-header {
    font-size: 14px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .card-body {
    padding: 24px 12px;
  }
}

@media (min-width: 768px) {
  .card-header {
    padding-left: 24px;
    padding-right: 24px;
  }
  .card-body {
    padding: 24px;
  }
}

.card-barcode .control-barcode {
  background-color: transparent;
  border: none;
  cursor: default;
  display: block;
  font-weight: 500;
  line-height: 1.2;
  outline: none;
  padding: 0;
  resize: none;
  text-align: center;
  width: 100%;
}

.card-barcode .control-barcode::-moz-selection {
  background-color: transparent;
}

.card-barcode .control-barcode::selection {
  background-color: transparent;
}

.card-barcode .card-success {
  height: 0;
  position: absolute;
  opacity: 0;
  width: 0;
}

.card-barcode.copied {
  position: relative;
}

.card-barcode.copied .card-success {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.839707);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  transition: opacity 0.3s ease;
  opacity: 1;
  width: 100%;
}

.card-barcode.copied .card-success .icon {
  margin-bottom: 0.5rem;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 10px;
  border: 1px solid #CBD2D9;
  cursor: pointer;
  height: 22px;
  outline: none;
  transition: all 0.15s ease;
  width: 22px;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  background-color: #0059F1;
  background-image: url(../images/sprite.svg#g-check);
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked {
  border-color: #0059F1;
}

input[type="checkbox"] {
  border-radius: 4px;
}

input[type="checkbox"]:checked {
  border-color: #0044B8;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group label {
  color: #616E7C;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 0;
}

.form-group label ~ .form-control {
  padding: 15px 14px !important;
}

.form-group.has-error .form-control {
  border-color: #E12D39;
  box-shadow: 0 0 0 1px #E12D39, 0 0 0 4px #FFE3E3;
}

.form-control {
  border-color: #CBD2D9;
  font-size: 14px;
  height: 54px;
  line-height: 22px;
  padding: 15px 14px;
  color: #242931;
}

textarea.form-control {
  min-height: 228px;
}

.form-control ~ label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 14px;
  font-weight: normal;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 17px;
  transition: all 0.15s ease;
}

.form-control:focus {
  border-color: #0059F1;
  box-shadow: 0 0 0 1px #0059F1, 0 0 0 4px #EBF2FF;
}

select.form-control:focus, select.form-control:not(:placeholder-shown), .form-control[placeholder]:focus, .form-control[placeholder]:not(:placeholder-shown) {
  padding-bottom: 6px;
  padding-top: 24px;
}

select.form-control:focus ~ label, select.form-control:not(:placeholder-shown) ~ label, .form-control[placeholder]:focus ~ label, .form-control[placeholder]:not(:placeholder-shown) ~ label {
  color: #6E7C81;
  font-size: 12px;
  top: 9px;
}

select.form-control:-webkit-autofill, .form-control[placeholder]:-webkit-autofill {
  padding-bottom: 6px;
  padding-top: 24px;
}

select.form-control:-webkit-autofill ~ label, .form-control[placeholder]:-webkit-autofill ~ label {
  color: #6E7C81;
  font-size: 12px;
  top: 9px;
}

.form-check {
  line-height: 22px;
  padding-left: 28px;
}

.form-check-input {
  margin-left: -28px;
  margin-top: 0;
}

.form-footer {
  margin-top: 29px;
}

.form-footer .small {
  color: #616E7C;
  font-size: 12px;
  margin-left: 11px;
}

.form-helper {
  border-top: 1px solid #D8D8D8;
  margin-top: 34px;
  padding-top: 33px;
  color: #52606D;
  font-size: 14px;
}

.form-helper .h6 {
  margin-bottom: 9px;
}

.form-text {
  color: #6E7C81;
  font-size: 12px;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .form-footer .btn {
    width: 100%;
  }
  .form-footer .btn + .btn {
    margin-top: 5px;
  }
}

@media (min-width: 992px) {
  .form-footer {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  .form-footer .btn + .btn {
    margin-right: 8px;
  }
}

.control-dropzone {
  color: #212932;
  cursor: pointer;
  font-size: 14px;
  height: 72px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: box-shadow 0.15s ease;
}

.control-dropzone .dz-message,
.control-dropzone .dz-preview {
  align-items: center;
  justify-content: space-between;
  padding: 7px;
}

.control-dropzone .dz-message,
.control-dropzone .dz-preview.dz-complete {
  display: flex;
}

.control-dropzone .dz-thumbnail {
  align-items: center;
  display: flex;
}

.control-dropzone .dz-status-text {
  margin-right: 16px;
  margin-left: 16px;
}

.control-dropzone .dz-success-mark,
.control-dropzone .dz-progress {
  margin-left: 10px;
  margin-right: 10px;
}

.control-dropzone:hover {
  box-shadow: 0 3px 6px 0 rgba(228, 231, 235, 0.75), 0 2px 4px 0 rgba(228, 231, 235, 0.75);
}

.group-password {
  position: relative;
}

.toggle-password {
  background: url(../images/sprite.svg#g-pass-show) no-repeat center;
  background-size: cover;
  cursor: pointer;
  display: block;
  height: 22px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: 22px;
}

.toggle-password.show {
  background-image: url(../images/sprite.svg#g-pass-hide);
}

.choices {
  display: flex;
}

.choices .choice {
  cursor: pointer;
  margin-bottom: 0;
  width: 197px;
}

.choices .choice input {
  display: none;
}

.choices .choice input:checked + .choice-body {
  background: #F5F9FF;
  border-color: #0059F1;
  box-shadow: 0 0 0 1px #0059F1, 0 3px 6px 0 rgba(228, 231, 235, 0.75), 0 2px 4px 0 rgba(228, 231, 235, 0.75);
}

.choices .choice .icon {
  display: block;
  height: 50px;
  margin: 0 auto 22px;
}

.choices .choice-body {
  height: 167px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #616E7C;
  display: block;
  font-size: 12px;
  text-align: center;
  line-height: 1.3334;
  padding: 22px 14px 16px;
  transition: all 0.15s ease;
}

.choices .choice-body strong {
  color: #1F2933;
  display: block;
  font-weight: normal;
  margin-bottom: 4px;
}

.choices .choice:hover .choice-body {
  box-shadow: 0 3px 6px 0 rgba(228, 231, 235, 0.75), 0 2px 4px 0 rgba(228, 231, 235, 0.75);
}

@media (max-width: 991px) {
  .choices {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .choices {
    margin: 0 -8px -16px;
  }
  .choices .choice {
    padding: 0 8px 16px;
  }
  .choices .choice-body strong {
    font-size: 14px;
  }
}

@media (min-width: 576px) {
  .choices {
    margin: 0 -15px -30px;
  }
  .choices .choice {
    padding: 0 15px 30px;
  }
  .choices .choice-body strong {
    font-size: 16px;
  }
}

.choices-inline .choice {
  cursor: pointer;
  display: block;
  margin-bottom: 0;
  position: relative;
}

.choices-inline .choice input {
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.choices-inline .choice input:checked + .choice-body {
  background: #F5F9FF;
  border-color: #0059F1;
  box-shadow: 0 0 0 1px #0059F1, 0 3px 6px 0 rgba(228, 231, 235, 0.75), 0 2px 4px 0 rgba(228, 231, 235, 0.75);
}

.choices-inline .choice-body {
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  padding: 14px 15px 14px 48px;
}

.choices-inline .choice-body strong {
  font-size: 20px;
  color: #1F2933;
  display: block;
  line-height: 1.1;
}

.choices-inline .choice:hover .choice-body {
  box-shadow: 0 3px 6px 0 rgba(228, 231, 235, 0.75), 0 2px 4px 0 rgba(228, 231, 235, 0.75);
}

.choices-inline .choice + .choice {
  margin-top: 14px;
}

.cc-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .form-row {
    margin-left: -6px;
    margin-right: -6px;
  }
  .form-row > .col,
  .form-row > [class*=col-] {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (min-width: 992px) {
  .form-row {
    margin-left: -10px;
    margin-right: -10px;
  }
  .form-row > .col,
  .form-row > [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.accordion-title {
  background: url(../images/sprite.svg#g-minus) no-repeat right 10px center;
  background-size: 18px 19px;
}

.accordion-title.collapsed {
  background-image: url(../images/sprite.svg#g-plus);
}

.accordion-title, .accordion-body {
  padding-right: 45px;
}

.accordion + .accordion {
  border-top: 1px solid #D8D8D8;
  margin-top: 18px;
  padding-top: 17px;
}

.close {
  opacity: 1;
}

.close, .close:hover {
  color: #636E7B;
}

.close:focus {
  outline: none;
}

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

.modal-backdrop {
  background: #212932;
}

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

.modal-content {
  border-radius: 4px;
}

.modal-header {
  border-bottom: 0;
}

.modal-footer {
  border-top: 0;
}

@media (max-width: 991px) {
  .modal .modal-header {
    padding: 30px 30px 10px;
  }
  .modal .modal-body {
    padding: 10px 30px 30px;
  }
  .modal .modal-footer {
    padding: 0 30px 30px;
  }
}

@media (min-width: 992px) {
  .modal-header {
    border-bottom: 0;
    padding: 28px 45px 9px;
  }
  .modal-body, .modal-footer {
    padding: 36px 45px;
  }
  .modal-dialog {
    max-width: 556px;
    flex: 1;
  }
  .modal-open .modal-aside {
    overflow-y: hidden;
  }
  .modal-open .modal-aside .modal-content {
    overflow-y: auto;
  }
}

.modal-aside .close {
  position: absolute;
}

.modal-aside .modal-header {
  display: block;
}

.modal-aside .modal-section {
  color: #9CA5B0;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: -0.25px;
  line-height: 1.6667;
  margin-bottom: 0;
}

.modal-aside .modal-footer {
  color: #7D8793;
  font-size: 12px;
  justify-content: flex-start;
  line-height: 1.25;
}

@media (max-width: 991px) {
  .modal-aside .modal-header {
    padding-top: 45px;
  }
}

@media (max-width: 991px) {
  .modal-aside .close {
    right: 16px;
    top: 16px;
  }
}

@media (min-width: 992px) {
  .modal-aside .close {
    left: 20px;
    position: absolute;
    top: 16px;
  }
  .modal-aside .modal-dialog {
    height: 100%;
    margin: 0 0 0 auto;
    max-width: 488px;
  }
  .modal-aside .modal-content {
    border: none;
    border-radius: 0;
    height: 100%;
  }
  .modal-aside .modal-header {
    padding: 105px 75px 27px;
  }
  .modal-aside .modal-body, .modal-aside .modal-footer {
    padding: 27px 75px;
  }
  .modal-aside .modal-footer {
    padding-bottom: 45px;
  }
  .modal-aside.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(50px, 0);
  }
  .modal-aside.show .modal-dialog {
    transform: none;
  }
}

.modal-dropzone {
  cursor: default;
}

.modal-dropzone .modal-header {
  justify-content: center;
}

.modal-dropzone .modal-body {
  color: #55606C;
  font-size: 14px;
  text-align: center;
  line-height: 1.55;
}

.modal-dropzone .modal-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 270px;
  margin: 0 auto 38px;
  width: 274px;
}

.modal-dropzone .modal-img-viewer {
  align-items: center;
  background-color: #E4E7EA;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 4px;
  display: flex;
  height: 420px;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 420px;
}

.modal-dropzone .modal-img-viewer .spin {
  height: 40px;
  width: 40px;
}

.modal-dropzone .modal-img-viewer .spin circle {
  stroke-width: 5;
}

.modal-dropzone .modal-img-viewer .spin .line {
  stroke: #fff;
}

.navbar {
  background-color: #0059F1;
  box-shadow: 0 0 10px 0 #0059F1;
  margin-bottom: 1rem;
  padding-bottom: 6px;
  padding-top: 6px;
}

.navbar,
.navbar a {
  color: #fff;
}

.navbar-brand {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 0;
  padding-top: 0;
}

.navbar-brand img {
  height: 44px;
  margin-right: 10px;
}

.navbar-brand:hover {
  color: #fff;
}

.main {
  display: flex;
  flex-direction: column;
  padding: 72px 1rem 0;
  min-height: 100vh;
}

@media (max-width: 991px) {
  .main {
    padding-bottom: 35px;
  }
}

@media (min-width: 768px) {
  .main {
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
  }
}

@media (min-width: 992px) {
  .main {
    padding-bottom: 60px;
  }
}

.section {
  display: flex;
  flex-direction: column;
}

.section-footer {
  color: #616E7C;
  font-size: 14px;
}

.section, .section-body {
  flex: 1;
}

.section > .form {
  display: flex;
  flex: 1;
  flex-direction: column;
}

@media (max-width: 991px) {
  .section-footer {
    padding-top: 35px;
  }
}

@media (min-width: 992px) {
  .section-footer {
    padding-top: 44px;
  }
}
