@import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap);
.rdw-option-wrapper {
  border: 1px solid #F1F1F1;
  padding: 5px;
  min-width: 25px;
  height: 20px;
  border-radius: 2px;
  margin: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-option-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-option-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-option-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-dropdown-wrapper {
  height: 30px;
  background: white;
  cursor: pointer;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  margin: 0 3px;
  text-transform: capitalize;
  background: white;
}
.rdw-dropdown-wrapper:focus {
  outline: none;
}
.rdw-dropdown-wrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}
.rdw-dropdown-wrapper:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-dropdown-carettoopen {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-top: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-carettoclose {
  height: 0px;
  width: 0px;
  position: absolute;
  top: 35%;
  right: 10%;
  border-bottom: 6px solid black;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.rdw-dropdown-selectedtext {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdown-optionwrapper {
  z-index: 100;
  position: relative;
  border: 1px solid #F1F1F1;
  width: 98%;
  background: white;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  max-height: 250px;
  overflow-y: scroll;
}
.rdw-dropdown-optionwrapper:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
  background-color: #FFFFFF;
}

.rdw-dropdownoption-default {
  min-height: 25px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.rdw-dropdownoption-highlighted {
  background: #F1F1F1;
}
.rdw-dropdownoption-active {
  background: #f5f5f5;
}
.rdw-dropdownoption-disabled {
  opacity: 0.3;
  cursor: default;
}

.rdw-inline-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-inline-dropdown {
  width: 50px;
}
.rdw-inline-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-block-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-block-dropdown {
  width: 110px;
}

.rdw-fontsize-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontsize-dropdown {
  min-width: 40px;
}
.rdw-fontsize-option {
  display: flex;
  justify-content: center;
}

.rdw-fontfamily-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-fontfamily-dropdown {
  width: 115px;
}
.rdw-fontfamily-placeholder {
  white-space: nowrap;
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rdw-fontfamily-optionwrapper {
  width: 140px;
}

.rdw-list-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-list-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-list-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}

.rdw-text-align-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-text-align-dropdown {
  width: 50px;
  z-index: 90;
}
.rdw-text-align-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-right-aligned-block {
  text-align: right;
}
.rdw-left-aligned-block {
  text-align: left !important;
}
.rdw-center-aligned-block {
  text-align: center !important;
}
.rdw-justify-aligned-block {
  text-align: justify !important;
}
.rdw-right-aligned-block > div {
  display: inline-block;
}
.rdw-left-aligned-block > div {
  display: inline-block;
}
.rdw-center-aligned-block > div {
  display: inline-block;
}
.rdw-justify-aligned-block > div {
  display: inline-block;
}

.rdw-colorpicker-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-colorpicker-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 175px;
  height: 175px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-colorpicker-modal-header {
  display: flex;
  padding-bottom: 5px;
}
.rdw-colorpicker-modal-style-label {
  font-size: 15px;
  width: 50%;
  text-align: center;
  cursor: pointer;
  padding: 0 10px 5px;
}
.rdw-colorpicker-modal-style-label-active {
  border-bottom: 2px solid #0a66b7;
}
.rdw-colorpicker-modal-options {
  margin: 5px auto;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  overflow: scroll;
}
.rdw-colorpicker-cube {
  width: 22px;
  height: 22px;
  border: 1px solid #F1F1F1;
}
.rdw-colorpicker-option {
  margin: 3px;
  padding: 0;
  min-height: 20px;
  border: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  box-shadow: 1px 2px 1px #BFBDBD inset;
}
.rdw-colorpicker-option:hover {
  box-shadow: 1px 2px 1px #BFBDBD;
}
.rdw-colorpicker-option:active {
  box-shadow: -1px -2px 1px #BFBDBD;
}
.rdw-colorpicker-option-active {
  box-shadow: 0px 0px 2px 2px #BFBDBD;
}

.rdw-link-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-link-dropdown {
  width: 50px;
}
.rdw-link-dropdownOption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-link-dropdownPlaceholder {
  margin-left: 8px;
}
.rdw-link-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 205px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-link-modal-label {
  font-size: 15px;
}
.rdw-link-modal-input {
  margin-top: 5px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  height: 25px;
  margin-bottom: 15px;
  padding: 0 5px;
}
.rdw-link-modal-input:focus {
  outline: none;
}
.rdw-link-modal-buttonsection {
  margin: 0 auto;
}
.rdw-link-modal-target-option {
  margin-bottom: 20px;
}
.rdw-link-modal-target-option > span {
  margin-left: 5px;
}
.rdw-link-modal-btn {
  margin-left: 10px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-link-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-link-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-link-modal-btn:focus {
  outline: none !important;
}
.rdw-link-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-link-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-embedded-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-embedded-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  justify-content: space-between;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-embedded-modal-header {
  font-size: 15px;
  display: flex;
}
.rdw-embedded-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-embedded-modal-header-label {
  width: 95px;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-embedded-modal-link-section {
  display: flex;
  flex-direction: column;
}
.rdw-embedded-modal-link-input {
  width: 88%;
  height: 35px;
  margin: 10px 0;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-embedded-modal-link-input-wrapper {
  display: flex;
  align-items: center;
}
.rdw-embedded-modal-link-input:focus {
  outline: none;
}
.rdw-embedded-modal-btn-section {
  display: flex;
  justify-content: center;
}
.rdw-embedded-modal-btn {
  margin: 0 3px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-embedded-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-embedded-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-embedded-modal-btn:focus {
  outline: none !important;
}
.rdw-embedded-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-embedded-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-embedded-modal-size-input {
  width: 80%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-embedded-modal-size-input:focus {
  outline: none;
}

.rdw-emoji-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-emoji-modal {
  overflow: auto;
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-wrap: wrap;
  width: 235px;
  height: 180px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-emoji-icon {
  margin: 2.5px;
  height: 24px;
  width: 24px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rdw-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.rdw-spinner > div {
  width: 12px;
  height: 12px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.rdw-spinner .rdw-bounce1 {
  animation-delay: -0.32s;
}
.rdw-spinner .rdw-bounce2 {
  animation-delay: -0.16s;
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
  } 40% {
    transform: scale(1.0);
  }
}

.rdw-image-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}
.rdw-image-modal {
  position: absolute;
  top: 35px;
  left: 5px;
  display: flex;
  flex-direction: column;
  width: 235px;
  border: 1px solid #F1F1F1;
  padding: 15px;
  border-radius: 2px;
  z-index: 100;
  background: white;
  box-shadow: 3px 3px 5px #BFBDBD;
}
.rdw-image-modal-header {
  font-size: 15px;
  margin: 10px 0;
  display: flex;
}
.rdw-image-modal-header-option {
  width: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rdw-image-modal-header-label {
  width: 80px;
  background: #f1f1f1;
  border: 1px solid #f1f1f1;
  margin-top: 5px;
}
.rdw-image-modal-header-label-highlighted {
  background: #6EB8D4;
  border-bottom: 2px solid #0a66b7;
}
.rdw-image-modal-upload-option {
  width: 100%;
  color: gray;
  cursor: pointer;
  display: flex;
  border: none;
  font-size: 15px;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  outline: 2px dashed gray;
  outline-offset: -10px;
  margin: 10px 0;
  padding: 9px 0;
}
.rdw-image-modal-upload-option-highlighted {
  outline: 2px dashed #0a66b7;
}
.rdw-image-modal-upload-option-label {
  cursor: pointer;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.rdw-image-modal-upload-option-label span{
  padding: 0 20px;
}
.rdw-image-modal-upload-option-image-preview {
  max-width: 100%;
  max-height: 200px;
}
.rdw-image-modal-upload-option-input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}
.rdw-image-modal-url-section {
  display: flex;
  align-items: center;
}
.rdw-image-modal-url-input {
  width: 90%;
  height: 35px;
  margin: 15px 0 12px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 15px;
  padding: 0 5px;
}
.rdw-image-modal-btn-section {
  margin: 10px auto 0;
}
.rdw-image-modal-url-input:focus {
  outline: none;
}
.rdw-image-modal-btn {
  margin: 0 5px;
  width: 75px;
  height: 30px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  text-transform: capitalize;
}
.rdw-image-modal-btn:hover {
  box-shadow: 1px 1px 0px #BFBDBD;
}
.rdw-image-modal-btn:active {
  box-shadow: 1px 1px 0px #BFBDBD inset;
}
.rdw-image-modal-btn:focus {
  outline: none !important;
}
.rdw-image-modal-btn:disabled {
  background: #ece9e9;
}
.rdw-image-modal-spinner {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.rdw-image-modal-alt-input {
  width: 70%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
  margin-left: 5px;
}
.rdw-image-modal-alt-input:focus {
  outline: none;
}
.rdw-image-modal-alt-lbl {
  font-size: 12px;
}
.rdw-image-modal-size {
  align-items: center;
  display: flex;
  margin: 8px 0;
  justify-content: space-between;
}
.rdw-image-modal-size-input {
  width: 40%;
  height: 20px;
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  font-size: 12px;
}
.rdw-image-modal-size-input:focus {
  outline: none;
}
.rdw-image-mandatory-sign {
  color: red;
  margin-left: 3px;
  margin-right: 3px;
}

.rdw-remove-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  flex-wrap: wrap
}

.rdw-history-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  flex-wrap: wrap
}
.rdw-history-dropdownoption {
  height: 40px;
  display: flex;
  justify-content: center;
}
.rdw-history-dropdown {
  width: 50px;
}

.rdw-link-decorator-wrapper {
  position: relative;
}
.rdw-link-decorator-icon {
  position: absolute;
  left: 40%;
  top: 0;
  cursor: pointer;
  background-color: white;
}

.rdw-mention-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-suggestion-wrapper {
  position: relative;
}
.rdw-suggestion-dropdown {
  position: absolute;
  display: flex;
  flex-direction: column;
  border: 1px solid #F1F1F1;
  min-width: 100px;
  max-height: 150px;
  overflow: auto;
  background: white;
  z-index: 100;
}
.rdw-suggestion-option {
  padding: 7px 5px;
  border-bottom: 1px solid #f1f1f1;
}
.rdw-suggestion-option-active {
  background-color: #F1F1F1;
}

.rdw-hashtag-link {
  text-decoration: none;
  color: #1236ff;
  background-color: #f0fbff;
  padding: 1px 2px;
  border-radius: 2px;
}

.rdw-image-alignment-options-popup {
  position: absolute;
  background: white;
  display: flex;
  padding: 5px 2px;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  width: 105px;
  cursor: pointer;
  z-index: 100;
}
.rdw-alignment-option-left {
  justify-content: flex-start;
}
.rdw-image-alignment-option {
  height: 15px;
  width: 15px;
  min-width: 15px;
}
.rdw-image-alignment {
  position: relative;
}
.rdw-image-imagewrapper {
  position: relative;
}
.rdw-image-center {
  display: flex;
  justify-content: center;
}
.rdw-image-left {
  display: flex;
}
.rdw-image-right {
  display: flex;
  justify-content: flex-end;
}
.rdw-image-alignment-options-popup-right {
  right: 0;
}

.rdw-editor-main {
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}
.rdw-editor-toolbar {
  padding: 6px 5px 0;
  border-radius: 2px;
  border: 1px solid #F1F1F1;
  display: flex;
  justify-content: flex-start;
  background: white;
  flex-wrap: wrap;
  font-size: 15px;
  margin-bottom: 5px;
  -webkit-user-select: none;
          user-select: none;
}
.public-DraftStyleDefault-block {
  margin: 1em 0;
}
.rdw-editor-wrapper:focus {
  outline: none;
}
.rdw-editor-wrapper {
  box-sizing: content-box;
}
.rdw-editor-main blockquote {
  border-left: 5px solid #f1f1f1;
  padding-left: 5px;
}
.rdw-editor-main pre {
  background: #f1f1f1;
  border-radius: 3px;
  padding: 1px 10px;
}
/**
 * Draft v0.9.1
 *
 * Copyright (c) 2013-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */
.DraftEditor-editorContainer,.DraftEditor-root,.public-DraftEditor-content{height:inherit;text-align:initial}.public-DraftEditor-content[contenteditable=true]{-webkit-user-modify:read-write-plaintext-only}.DraftEditor-root{position:relative}.DraftEditor-editorContainer{background-color:rgba(255,255,255,0);border-left:.1px solid transparent;position:relative;z-index:1}.public-DraftEditor-block{position:relative}.DraftEditor-alignLeft .public-DraftStyleDefault-block{text-align:left}.DraftEditor-alignLeft .public-DraftEditorPlaceholder-root{left:0;text-align:left}.DraftEditor-alignCenter .public-DraftStyleDefault-block{text-align:center}.DraftEditor-alignCenter .public-DraftEditorPlaceholder-root{margin:0 auto;text-align:center;width:100%}.DraftEditor-alignRight .public-DraftStyleDefault-block{text-align:right}.DraftEditor-alignRight .public-DraftEditorPlaceholder-root{right:0;text-align:right}.public-DraftEditorPlaceholder-root{color:#9197a3;position:absolute;z-index:0}.public-DraftEditorPlaceholder-hasFocus{color:#bdc1c9}.DraftEditorPlaceholder-hidden{display:none}.public-DraftStyleDefault-block{position:relative;white-space:pre-wrap}.public-DraftStyleDefault-ltr{direction:ltr;text-align:left}.public-DraftStyleDefault-rtl{direction:rtl;text-align:right}.public-DraftStyleDefault-listLTR{direction:ltr}.public-DraftStyleDefault-listRTL{direction:rtl}.public-DraftStyleDefault-ol,.public-DraftStyleDefault-ul{margin:16px 0;padding:0}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listLTR{margin-left:1.5em}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-listRTL{margin-right:1.5em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listLTR{margin-left:3em}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-listRTL{margin-right:3em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listLTR{margin-left:4.5em}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-listRTL{margin-right:4.5em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listLTR{margin-left:6em}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-listRTL{margin-right:6em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listLTR{margin-left:7.5em}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-listRTL{margin-right:7.5em}.public-DraftStyleDefault-unorderedListItem{list-style-type:square;position:relative}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth0{list-style-type:disc}.public-DraftStyleDefault-unorderedListItem.public-DraftStyleDefault-depth1{list-style-type:circle}.public-DraftStyleDefault-orderedListItem{list-style-type:none;position:relative}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listLTR:before{left:-36px;position:absolute;text-align:right;width:30px}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-listRTL:before{position:absolute;right:-36px;text-align:left;width:30px}.public-DraftStyleDefault-orderedListItem:before{content:counter(ol0) ". ";counter-increment:ol0}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth1:before{content:counter(ol1) ". ";counter-increment:ol1}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth2:before{content:counter(ol2) ". ";counter-increment:ol2}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth3:before{content:counter(ol3) ". ";counter-increment:ol3}.public-DraftStyleDefault-orderedListItem.public-DraftStyleDefault-depth4:before{content:counter(ol4) ". ";counter-increment:ol4}.public-DraftStyleDefault-depth0.public-DraftStyleDefault-reset{counter-reset:ol0}.public-DraftStyleDefault-depth1.public-DraftStyleDefault-reset{counter-reset:ol1}.public-DraftStyleDefault-depth2.public-DraftStyleDefault-reset{counter-reset:ol2}.public-DraftStyleDefault-depth3.public-DraftStyleDefault-reset{counter-reset:ol3}.public-DraftStyleDefault-depth4.public-DraftStyleDefault-reset{counter-reset:ol4}
.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }
  .Toastify__toast-container--top-left {
    top: 1em;
    left: 1em; }
  .Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--top-right {
    top: 1em;
    right: 1em; }
  .Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em; }
  .Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
    .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
      top: 0; }
    .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
      bottom: 0; }
    .Toastify__toast-container--rtl {
      right: 0;
      left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }
  .Toastify__toast--rtl {
    direction: rtl; }
  .Toastify__toast--default {
    background: #fff;
    color: #aaa; }
  .Toastify__toast--info {
    background: #3498db; }
  .Toastify__toast--success {
    background: #07bc0c; }
  .Toastify__toast--warning {
    background: #f1c40f; }
  .Toastify__toast--error {
    background: #e74c3c; }
  .Toastify__toast-body {
    margin: auto 0;
    flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start; }
  .Toastify__close-button--default {
    color: #000;
    opacity: 0.3; }
  .Toastify__close-button:hover, .Toastify__close-button:focus {
    opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left; }
  .Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards; }
  .Toastify__progress-bar--controlled {
    transition: transform .2s; }
  .Toastify__progress-bar--rtl {
    right: 0;
    left: initial;
    transform-origin: right; }
  .Toastify__progress-bar--default {
    background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }
.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  -webkit-animation: none;
          animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-box-shadow: 0 3px 13px rgba(0,0,0,0.08);
          box-shadow: 0 3px 13px rgba(0,0,0,0.08);
}
.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}
.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}
.flatpickr-calendar.animate.open {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
          animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}
.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}
.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
          box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}
.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid rgba(72,72,72,0.2);
}
.flatpickr-calendar.hasTime .flatpickr-innerContainer {
  border-bottom: 0;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  border: 1px solid rgba(72,72,72,0.2);
}
.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}
.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}
.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.arrowRight:before,
.flatpickr-calendar.rightMost:after,
.flatpickr-calendar.arrowRight:after {
  left: auto;
  right: 22px;
}
.flatpickr-calendar.arrowCenter:before,
.flatpickr-calendar.arrowCenter:after {
  left: 50%;
  right: 50%;
}
.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}
.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}
.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}
.flatpickr-calendar.arrowTop:before {
  border-bottom-color: rgba(72,72,72,0.2);
}
.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #42a5f5;
}
.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}
.flatpickr-calendar.arrowBottom:before {
  border-top-color: rgba(72,72,72,0.2);
}
.flatpickr-calendar.arrowBottom:after {
  border-top-color: #42a5f5;
}
.flatpickr-calendar:focus {
  outline: 0;
}
.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}
.flatpickr-months {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flatpickr-months .flatpickr-month {
  border-radius: 5px 5px 0 0;
  background: #42a5f5;
  color: #fff;
  fill: #fff;
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: #fff;
  fill: #fff;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}
.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  left: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
/*
      /*rtl:begin:ignore*/
/*
      */
  right: 0;
/*
      /*rtl:end:ignore*/
/*
      */
}
/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #bbb;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}
.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  -webkit-transition: fill 0.1s;
  transition: fill 0.1s;
  fill: inherit;
}
.numInputWrapper {
  position: relative;
  height: auto;
}
.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}
.numInputWrapper input {
  width: 100%;
}
.numInputWrapper input::-ms-clear {
  display: none;
}
.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(72,72,72,0.15);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.numInputWrapper span:hover {
  background: rgba(0,0,0,0.1);
}
.numInputWrapper span:active {
  background: rgba(0,0,0,0.2);
}
.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}
.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}
.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(72,72,72,0.6);
  top: 26%;
}
.numInputWrapper span.arrowDown {
  top: 50%;
}
.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(72,72,72,0.6);
  top: 40%;
}
.numInputWrapper span svg {
  width: inherit;
  height: auto;
}
.numInputWrapper span svg path {
  fill: rgba(255,255,255,0.5);
}
.numInputWrapper:hover {
  background: rgba(0,0,0,0.05);
}
.numInputWrapper:hover span {
  opacity: 1;
}
.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}
.flatpickr-current-month span.cur-month:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0;
  display: inline-block;
}
.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: #fff;
}
.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: #fff;
}
.flatpickr-current-month input.cur-year {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}
.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(255,255,255,0.5);
  background: transparent;
  pointer-events: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: #42a5f5;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active {
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0,0,0,0.05);
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: #42a5f5;
  outline: none;
  padding: 0;
}
.flatpickr-weekdays {
  background: #42a5f5;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: #42a5f5;
  color: rgba(0,0,0,0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: bolder;
}
.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 307.875px;
  border-left: 1px solid rgba(72,72,72,0.2);
  border-right: 1px solid rgba(72,72,72,0.2);
}
.flatpickr-days:focus {
  outline: 0;
}
.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}
.dayContainer + .dayContainer {
  -webkit-box-shadow: -1px 0 0 rgba(72,72,72,0.2);
          box-shadow: -1px 0 0 rgba(72,72,72,0.2);
}
.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #484848;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  -webkit-flex-basis: 14.2857143%;
      -ms-flex-preferred-size: 14.2857143%;
          flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e2e2e2;
  border-color: #e2e2e2;
}
.flatpickr-day.today {
  border-color: #bbb;
}
.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #bbb;
  background: #bbb;
  color: #fff;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #42a5f5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  border-color: #42a5f5;
}
.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}
.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}
.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 #42a5f5;
          box-shadow: -10px 0 0 #42a5f5;
}
.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}
.flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
          box-shadow: -5px 0 0 #e2e2e2, 5px 0 0 #e2e2e2;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(72,72,72,0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(72,72,72,0.1);
}
.flatpickr-day.week.selected {
  border-radius: 0;
  -webkit-box-shadow: -5px 0 0 #42a5f5, 5px 0 0 #42a5f5;
          box-shadow: -5px 0 0 #42a5f5, 5px 0 0 #42a5f5;
}
.flatpickr-day.hidden {
  visibility: hidden;
}
.rangeMode .flatpickr-day {
  margin-top: 1px;
}
.flatpickr-weekwrapper {
  float: left;
}
.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  border-left: 1px solid rgba(72,72,72,0.2);
}
.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}
.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(72,72,72,0.3);
  background: transparent;
  cursor: default;
  border: none;
}
.flatpickr-innerContainer {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(72,72,72,0.2);
}
.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 0 0 5px 5px;
}
.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}
.flatpickr-time .numInputWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}
.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #484848;
}
.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #484848;
}
.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}
.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}
.flatpickr-time input {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #484848;
  font-size: 14px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}
.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}
.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #484848;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eaeaea;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}
@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }
  .Toastify__toast-container--top-left {
    top: 1em;
    left: 1em; }
  .Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--top-right {
    top: 1em;
    right: 1em; }
  .Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em; }
  .Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
    .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
      top: 0; }
    .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
      bottom: 0; }
    .Toastify__toast-container--rtl {
      right: 0;
      left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }
  .Toastify__toast--rtl {
    direction: rtl; }
  .Toastify__toast--default {
    background: #fff;
    color: #aaa; }
  .Toastify__toast--info {
    background: #3498db; }
  .Toastify__toast--success {
    background: #07bc0c; }
  .Toastify__toast--warning {
    background: #f1c40f; }
  .Toastify__toast--error {
    background: #e74c3c; }
  .Toastify__toast-body {
    margin: auto 0;
    flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start; }
  .Toastify__close-button--default {
    color: #000;
    opacity: 0.3; }
  .Toastify__close-button:hover, .Toastify__close-button:focus {
    opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left; }
  .Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards; }
  .Toastify__progress-bar--controlled {
    transition: transform .2s; }
  .Toastify__progress-bar--rtl {
    right: 0;
    left: initial;
    transform-origin: right; }
  .Toastify__progress-bar--default {
    background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }
/*
Template Name: Minible - Admin & Dashboard Template
Author: Themesbrand
Version: 2.3.0
Website: https://themesbrand.com/
Contact: themesbrand@gmail.com
File: Icons Css File
*/
@font-face {
  font-family: 'boxicons';
  font-weight: normal;
  font-style: normal;
  src: url(/fonts/boxicons.eot?6829ebb16362074c0c306cfa17ff6c0d);
  src: url(/fonts/boxicons.eot?6829ebb16362074c0c306cfa17ff6c0d) format("embedded-opentype"), url(/fonts/boxicons.woff2?c6d7d0356c53c17d21beee212148029d) format("woff2"), url(/fonts/boxicons.woff?dcaf6a260cca4a061aff4a03f336ce1d) format("woff"), url(/fonts/boxicons.ttf?e2ffa5b9254ec286b380fd1f83f1cba3) format("truetype"), url(/fonts/boxicons.svg?5e81160c5f41fcc12b388f726eca743a) format("svg"); }

.bx {
  font-family: 'boxicons' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.bx-ul {
  margin-left: 2em;
  padding-left: 0;
  list-style: none; }

.bx-ul > li {
  position: relative; }

.bx-ul .bx {
  font-size: inherit;
  line-height: inherit;
  position: absolute;
  left: -2em;
  width: 2em;
  text-align: center; }

@keyframes spin {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(359deg); } }

@keyframes burst {
  0% {
    transform: scale(1);
    opacity: 1; }
  90% {
    transform: scale(1.5);
    opacity: 0; } }

@keyframes flashing {
  0% {
    opacity: 1; }
  45% {
    opacity: 0; }
  90% {
    opacity: 1; } }

@keyframes fade-left {
  0% {
    transform: translateX(0);
    opacity: 1; }
  75% {
    transform: translateX(-20px);
    opacity: 0; } }

@keyframes fade-right {
  0% {
    transform: translateX(0);
    opacity: 1; }
  75% {
    transform: translateX(20px);
    opacity: 0; } }

@keyframes fade-up {
  0% {
    transform: translateY(0);
    opacity: 1; }
  75% {
    transform: translateY(-20px);
    opacity: 0; } }

@keyframes fade-down {
  0% {
    transform: translateY(0);
    opacity: 1; }
  75% {
    transform: translateY(20px);
    opacity: 0; } }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%,
  20% {
    transform: scale3d(0.95, 0.95, 0.95) rotate3d(0, 0, 1, -10deg); }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg); }
  40%,
  60%,
  80% {
    transform: rotate3d(0, 0, 1, -10deg); }
  to {
    transform: scale3d(1, 1, 1); } }

.bx-spin {
  animation: spin 2s linear infinite; }

.bx-spin-hover:hover {
  animation: spin 2s linear infinite; }

.bx-tada {
  animation: tada 1.5s ease infinite; }

.bx-tada-hover:hover {
  animation: tada 1.5s ease infinite; }

.bx-flashing {
  animation: flashing 1.5s infinite linear; }

.bx-flashing-hover:hover {
  animation: flashing 1.5s infinite linear; }

.bx-burst {
  animation: burst 1.5s infinite linear; }

.bx-burst-hover:hover {
  animation: burst 1.5s infinite linear; }

.bx-fade-up {
  animation: fade-up 1.5s infinite linear; }

.bx-fade-up-hover:hover {
  animation: fade-up 1.5s infinite linear; }

.bx-fade-down {
  animation: fade-down 1.5s infinite linear; }

.bx-fade-down-hover:hover {
  animation: fade-down 1.5s infinite linear; }

.bx-fade-left {
  animation: fade-left 1.5s infinite linear; }

.bx-fade-left-hover:hover {
  animation: fade-left 1.5s infinite linear; }

.bx-fade-right {
  animation: fade-right 1.5s infinite linear; }

.bx-fade-right-hover:hover {
  animation: fade-right 1.5s infinite linear; }

.bx-xs {
  font-size: 1rem !important; }

.bx-sm {
  font-size: 1.55rem !important; }

.bx-md {
  font-size: 2.25rem !important; }

.bx-fw {
  font-size: 1.2857142857em;
  line-height: .8em;
  width: 1.2857142857em;
  height: .8em;
  margin-top: -0.2em !important;
  vertical-align: middle; }

.bx-lg {
  font-size: 3rem !important; }

.bx-pull-left {
  float: left;
  margin-right: 0.3em !important; }

.bx-pull-right {
  float: right;
  margin-left: 0.3em !important; }

.bx-rotate-90 {
  transform: rotate(90deg);
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)'; }

.bx-rotate-180 {
  transform: rotate(180deg);
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)'; }

.bx-rotate-270 {
  transform: rotate(270deg);
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)'; }

.bx-flip-horizontal {
  transform: scaleX(-1);
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)'; }

.bx-flip-vertical {
  transform: scaleY(-1);
  -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)'; }

.bx-border {
  padding: .25em;
  border: 0.07em solid rgba(0, 0, 0, 0.1);
  border-radius: .25em; }

.bx-border-circle {
  padding: .25em;
  border: 0.07em solid rgba(0, 0, 0, 0.1);
  border-radius: 50%; }

.bxl-adobe:before {
  content: "\e900"; }

.bxl-algolia:before {
  content: "\e901"; }

.bxl-audible:before {
  content: "\e902"; }

.bxl-figma:before {
  content: "\e903"; }

.bxl-redbubble:before {
  content: "\e904"; }

.bxl-etsy:before {
  content: "\e905"; }

.bxl-gitlab:before {
  content: "\e906"; }

.bxl-patreon:before {
  content: "\e907"; }

.bxl-facebook-circle:before {
  content: "\e908"; }

.bxl-imdb:before {
  content: "\e909"; }

.bxl-jquery:before {
  content: "\e90a"; }

.bxl-pinterest-alt:before {
  content: "\e90b"; }

.bxl-500px:before {
  content: "\e90c"; }

.bxl-airbnb:before {
  content: "\e90d"; }

.bxl-amazon:before {
  content: "\e90e"; }

.bxl-android:before {
  content: "\e90f"; }

.bxl-angular:before {
  content: "\e910"; }

.bxl-apple:before {
  content: "\e911"; }

.bxl-baidu:before {
  content: "\e912"; }

.bxl-behance:before {
  content: "\e913"; }

.bxl-bing:before {
  content: "\e914"; }

.bxl-bitcoin:before {
  content: "\e915"; }

.bxl-blogger:before {
  content: "\e916"; }

.bxl-bootstrap:before {
  content: "\e917"; }

.bxl-chrome:before {
  content: "\e918"; }

.bxl-codepen:before {
  content: "\e919"; }

.bxl-creative-commons:before {
  content: "\e91a"; }

.bxl-css3:before {
  content: "\e91b"; }

.bxl-dailymotion:before {
  content: "\e91c"; }

.bxl-deviantart:before {
  content: "\e91d"; }

.bxl-digg:before {
  content: "\e91e"; }

.bxl-digitalocean:before {
  content: "\e91f"; }

.bxl-discord:before {
  content: "\e920"; }

.bxl-discourse:before {
  content: "\e921"; }

.bxl-dribbble:before {
  content: "\e922"; }

.bxl-dropbox:before {
  content: "\e923"; }

.bxl-drupal:before {
  content: "\e924"; }

.bxl-ebay:before {
  content: "\e925"; }

.bxl-edge:before {
  content: "\e926"; }

.bxl-facebook:before {
  content: "\e927"; }

.bxl-facebook-square:before {
  content: "\e928"; }

.bxl-firefox:before {
  content: "\e929"; }

.bxl-flickr:before {
  content: "\e92a"; }

.bxl-flickr-square:before {
  content: "\e92b"; }

.bxl-foursquare:before {
  content: "\e92c"; }

.bxl-git:before {
  content: "\e92d"; }

.bxl-github:before {
  content: "\e92e"; }

.bxl-google:before {
  content: "\e92f"; }

.bxl-google-plus:before {
  content: "\e930"; }

.bxl-google-plus-circle:before {
  content: "\e931"; }

.bxl-html5:before {
  content: "\e932"; }

.bxl-instagram:before {
  content: "\e933"; }

.bxl-instagram-alt:before {
  content: "\e934"; }

.bxl-internet-explorer:before {
  content: "\e935"; }

.bxl-invision:before {
  content: "\e936"; }

.bxl-javascript:before {
  content: "\e937"; }

.bxl-joomla:before {
  content: "\e938"; }

.bxl-jsfiddle:before {
  content: "\e939"; }

.bxl-kickstarter:before {
  content: "\e93a"; }

.bxl-less:before {
  content: "\e93b"; }

.bxl-linkedin:before {
  content: "\e93c"; }

.bxl-linkedin-square:before {
  content: "\e93d"; }

.bxl-magento:before {
  content: "\e93e"; }

.bxl-mailchimp:before {
  content: "\e93f"; }

.bxl-mastercard:before {
  content: "\e940"; }

.bxl-medium:before {
  content: "\e941"; }

.bxl-medium-old:before {
  content: "\e942"; }

.bxl-medium-square:before {
  content: "\e943"; }

.bxl-messenger:before {
  content: "\e944"; }

.bxl-microsoft:before {
  content: "\e945"; }

.bxl-nodejs:before {
  content: "\e946"; }

.bxl-opera:before {
  content: "\e947"; }

.bxl-paypal:before {
  content: "\e948"; }

.bxl-periscope:before {
  content: "\e949"; }

.bxl-pinterest:before {
  content: "\e94a"; }

.bxl-play-store:before {
  content: "\e94b"; }

.bxl-pocket:before {
  content: "\e94c"; }

.bxl-product-hunt:before {
  content: "\e94d"; }

.bxl-quora:before {
  content: "\e94e"; }

.bxl-react:before {
  content: "\e94f"; }

.bxl-reddit:before {
  content: "\e950"; }

.bxl-redux:before {
  content: "\e951"; }

.bxl-sass:before {
  content: "\e952"; }

.bxl-shopify:before {
  content: "\e953"; }

.bxl-skype:before {
  content: "\e954"; }

.bxl-slack:before {
  content: "\e955"; }

.bxl-slack-old:before {
  content: "\e956"; }

.bxl-snapchat:before {
  content: "\e957"; }

.bxl-soundcloud:before {
  content: "\e958"; }

.bxl-spotify:before {
  content: "\e959"; }

.bxl-squarespace:before {
  content: "\e95a"; }

.bxl-stack-overflow:before {
  content: "\e95b"; }

.bxl-stripe:before {
  content: "\e95c"; }

.bxl-telegram:before {
  content: "\e95d"; }

.bxl-trello:before {
  content: "\e95e"; }

.bxl-tumblr:before {
  content: "\e95f"; }

.bxl-twitch:before {
  content: "\e960"; }

.bxl-twitter:before {
  content: "\e961"; }

.bxl-unsplash:before {
  content: "\e962"; }

.bxl-vimeo:before {
  content: "\e963"; }

.bxl-visa:before {
  content: "\e964"; }

.bxl-vk:before {
  content: "\e965"; }

.bxl-vuejs:before {
  content: "\e966"; }

.bxl-whatsapp:before {
  content: "\e967"; }

.bxl-whatsapp-square:before {
  content: "\e968"; }

.bxl-wikipedia:before {
  content: "\e969"; }

.bxl-windows:before {
  content: "\e96a"; }

.bxl-wix:before {
  content: "\e96b"; }

.bxl-wordpress:before {
  content: "\e96c"; }

.bxl-yahoo:before {
  content: "\e96d"; }

.bxl-yelp:before {
  content: "\e96e"; }

.bxl-youtube:before {
  content: "\e96f"; }

.bx-accessibility:before {
  content: "\e970"; }

.bx-add-to-queue:before {
  content: "\e971"; }

.bx-adjust:before {
  content: "\e972"; }

.bx-alarm:before {
  content: "\e973"; }

.bx-alarm-add:before {
  content: "\e974"; }

.bx-alarm-off:before {
  content: "\e975"; }

.bx-album:before {
  content: "\e976"; }

.bx-align-justify:before {
  content: "\e977"; }

.bx-align-left:before {
  content: "\e978"; }

.bx-align-middle:before {
  content: "\e979"; }

.bx-align-right:before {
  content: "\e97a"; }

.bx-analyse:before {
  content: "\e97b"; }

.bx-anchor:before {
  content: "\e97c"; }

.bx-angry:before {
  content: "\e97d"; }

.bx-aperture:before {
  content: "\e97e"; }

.bx-archive:before {
  content: "\e97f"; }

.bx-archive-in:before {
  content: "\e980"; }

.bx-archive-out:before {
  content: "\e981"; }

.bx-area:before {
  content: "\e982"; }

.bx-arrow-back:before {
  content: "\e983"; }

.bx-at:before {
  content: "\e984"; }

.bx-award:before {
  content: "\e985"; }

.bx-badge:before {
  content: "\e986"; }

.bx-badge-check:before {
  content: "\e987"; }

.bx-ball:before {
  content: "\e988"; }

.bx-band-aid:before {
  content: "\e989"; }

.bx-bar-chart:before {
  content: "\e98a"; }

.bx-bar-chart-alt:before {
  content: "\e98b"; }

.bx-bar-chart-alt-2:before {
  content: "\e98c"; }

.bx-bar-chart-square:before {
  content: "\e98d"; }

.bx-barcode:before {
  content: "\e98e"; }

.bx-basket:before {
  content: "\e98f"; }

.bx-basketball:before {
  content: "\e990"; }

.bx-bath:before {
  content: "\e991"; }

.bx-battery:before {
  content: "\e992"; }

.bx-bed:before {
  content: "\e993"; }

.bx-bell:before {
  content: "\e994"; }

.bx-bell-minus:before {
  content: "\e995"; }

.bx-bell-off:before {
  content: "\e996"; }

.bx-bell-plus:before {
  content: "\e997"; }

.bx-bitcoin:before {
  content: "\e998"; }

.bx-block:before {
  content: "\e999"; }

.bx-bluetooth:before {
  content: "\e99a"; }

.bx-body:before {
  content: "\e99b"; }

.bx-bold:before {
  content: "\e99c"; }

.bx-bolt-circle:before {
  content: "\e99d"; }

.bx-book:before {
  content: "\e99e"; }

.bx-book-bookmark:before {
  content: "\e99f"; }

.bx-book-content:before {
  content: "\e9a0"; }

.bx-bookmark:before {
  content: "\e9a1"; }

.bx-bookmark-minus:before {
  content: "\e9a2"; }

.bx-bookmark-plus:before {
  content: "\e9a3"; }

.bx-bookmarks:before {
  content: "\e9a4"; }

.bx-book-open:before {
  content: "\e9a5"; }

.bx-border-all:before {
  content: "\e9a6"; }

.bx-border-bottom:before {
  content: "\e9a7"; }

.bx-border-left:before {
  content: "\e9a8"; }

.bx-border-radius:before {
  content: "\e9a9"; }

.bx-border-right:before {
  content: "\e9aa"; }

.bx-border-top:before {
  content: "\e9ab"; }

.bx-bot:before {
  content: "\e9ac"; }

.bx-bowling-ball:before {
  content: "\e9ad"; }

.bx-box:before {
  content: "\e9ae"; }

.bx-briefcase:before {
  content: "\e9af"; }

.bx-briefcase-alt:before {
  content: "\e9b0"; }

.bx-briefcase-alt-2:before {
  content: "\e9b1"; }

.bx-brightness:before {
  content: "\e9b2"; }

.bx-brightness-half:before {
  content: "\e9b3"; }

.bx-broadcast:before {
  content: "\e9b4"; }

.bx-brush:before {
  content: "\e9b5"; }

.bx-brush-alt:before {
  content: "\e9b6"; }

.bx-bug:before {
  content: "\e9b7"; }

.bx-bug-alt:before {
  content: "\e9b8"; }

.bx-building:before {
  content: "\e9b9"; }

.bx-building-house:before {
  content: "\e9ba"; }

.bx-buildings:before {
  content: "\e9bb"; }

.bx-bulb:before {
  content: "\e9bc"; }

.bx-bullseye:before {
  content: "\e9bd"; }

.bx-buoy:before {
  content: "\e9be"; }

.bx-bus:before {
  content: "\e9bf"; }

.bx-cake:before {
  content: "\e9c0"; }

.bx-calculator:before {
  content: "\e9c1"; }

.bx-calendar:before {
  content: "\e9c2"; }

.bx-calendar-alt:before {
  content: "\e9c3"; }

.bx-calendar-check:before {
  content: "\e9c4"; }

.bx-calendar-event:before {
  content: "\e9c5"; }

.bx-calendar-minus:before {
  content: "\e9c6"; }

.bx-calendar-plus:before {
  content: "\e9c7"; }

.bx-calendar-x:before {
  content: "\e9c8"; }

.bx-camera:before {
  content: "\e9c9"; }

.bx-camera-off:before {
  content: "\e9ca"; }

.bx-captions:before {
  content: "\e9cb"; }

.bx-car:before {
  content: "\e9cc"; }

.bx-card:before {
  content: "\e9cd"; }

.bx-caret-down:before {
  content: "\e9ce"; }

.bx-caret-left:before {
  content: "\e9cf"; }

.bx-caret-right:before {
  content: "\e9d0"; }

.bx-caret-up:before {
  content: "\e9d1"; }

.bx-carousel:before {
  content: "\e9d2"; }

.bx-cart:before {
  content: "\e9d3"; }

.bx-cart-alt:before {
  content: "\e9d4"; }

.bx-cast:before {
  content: "\e9d5"; }

.bx-certification:before {
  content: "\e9d6"; }

.bx-chalkboard:before {
  content: "\e9d7"; }

.bx-chart:before {
  content: "\e9d8"; }

.bx-chat:before {
  content: "\e9d9"; }

.bx-check:before {
  content: "\e9da"; }

.bx-checkbox:before {
  content: "\e9db"; }

.bx-checkbox-checked:before {
  content: "\e9dc"; }

.bx-checkbox-square:before {
  content: "\e9dd"; }

.bx-check-circle:before {
  content: "\e9de"; }

.bx-check-double:before {
  content: "\e9df"; }

.bx-check-shield:before {
  content: "\e9e0"; }

.bx-check-square:before {
  content: "\e9e1"; }

.bx-chevron-down:before {
  content: "\e9e2"; }

.bx-chevron-left:before {
  content: "\e9e3"; }

.bx-chevron-right:before {
  content: "\e9e4"; }

.bx-chevrons-down:before {
  content: "\e9e5"; }

.bx-chevrons-left:before {
  content: "\e9e6"; }

.bx-chevrons-right:before {
  content: "\e9e7"; }

.bx-chevrons-up:before {
  content: "\e9e8"; }

.bx-chevron-up:before {
  content: "\e9e9"; }

.bx-chip:before {
  content: "\e9ea"; }

.bx-circle:before {
  content: "\e9eb"; }

.bx-clinic:before {
  content: "\e9ec"; }

.bx-clipboard:before {
  content: "\e9ed"; }

.bx-closet:before {
  content: "\e9ee"; }

.bx-cloud:before {
  content: "\e9ef"; }

.bx-cloud-download:before {
  content: "\e9f0"; }

.bx-cloud-drizzle:before {
  content: "\e9f1"; }

.bx-cloud-lightning:before {
  content: "\e9f2"; }

.bx-cloud-light-rain:before {
  content: "\e9f3"; }

.bx-cloud-rain:before {
  content: "\e9f4"; }

.bx-cloud-snow:before {
  content: "\e9f5"; }

.bx-cloud-upload:before {
  content: "\e9f6"; }

.bx-code:before {
  content: "\e9f7"; }

.bx-code-alt:before {
  content: "\e9f8"; }

.bx-code-block:before {
  content: "\e9f9"; }

.bx-code-curly:before {
  content: "\e9fa"; }

.bx-coffee:before {
  content: "\e9fb"; }

.bx-cog:before {
  content: "\e9fc"; }

.bx-collapse:before {
  content: "\e9fd"; }

.bx-collection:before {
  content: "\e9fe"; }

.bx-columns:before {
  content: "\e9ff"; }

.bx-command:before {
  content: "\ea00"; }

.bx-comment:before {
  content: "\ea01"; }

.bx-comment-dots:before {
  content: "\ea02"; }

.bx-compass:before {
  content: "\ea03"; }

.bx-confused:before {
  content: "\ea04"; }

.bx-conversation:before {
  content: "\ea05"; }

.bx-cool:before {
  content: "\ea06"; }

.bx-copy:before {
  content: "\ea07"; }

.bx-copy-alt:before {
  content: "\ea08"; }

.bx-copyright:before {
  content: "\ea09"; }

.bx-credit-card:before {
  content: "\ea0a"; }

.bx-credit-card-alt:before {
  content: "\ea0b"; }

.bx-crop:before {
  content: "\ea0c"; }

.bx-crosshair:before {
  content: "\ea0d"; }

.bx-crown:before {
  content: "\ea0e"; }

.bx-cube:before {
  content: "\ea0f"; }

.bx-cube-alt:before {
  content: "\ea10"; }

.bx-cuboid:before {
  content: "\ea11"; }

.bx-customize:before {
  content: "\ea12"; }

.bx-cut:before {
  content: "\ea13"; }

.bx-cycling:before {
  content: "\ea14"; }

.bx-cylinder:before {
  content: "\ea15"; }

.bx-data:before {
  content: "\ea16"; }

.bx-desktop:before {
  content: "\ea17"; }

.bx-detail:before {
  content: "\ea18"; }

.bx-devices:before {
  content: "\ea19"; }

.bx-dialpad:before {
  content: "\ea1a"; }

.bx-dialpad-alt:before {
  content: "\ea1b"; }

.bx-diamond:before {
  content: "\ea1c"; }

.bx-directions:before {
  content: "\ea1d"; }

.bx-disc:before {
  content: "\ea1e"; }

.bx-dish:before {
  content: "\ea1f"; }

.bx-dislike:before {
  content: "\ea20"; }

.bx-dizzy:before {
  content: "\ea21"; }

.bx-dna:before {
  content: "\ea22"; }

.bx-dock-bottom:before {
  content: "\ea23"; }

.bx-dock-left:before {
  content: "\ea24"; }

.bx-dock-right:before {
  content: "\ea25"; }

.bx-dock-top:before {
  content: "\ea26"; }

.bx-dollar:before {
  content: "\ea27"; }

.bx-dollar-circle:before {
  content: "\ea28"; }

.bx-dots-horizontal:before {
  content: "\ea29"; }

.bx-dots-horizontal-rounded:before {
  content: "\ea2a"; }

.bx-dots-vertical:before {
  content: "\ea2b"; }

.bx-dots-vertical-rounded:before {
  content: "\ea2c"; }

.bx-doughnut-chart:before {
  content: "\ea2d"; }

.bx-down-arrow:before {
  content: "\ea2e"; }

.bx-down-arrow-alt:before {
  content: "\ea2f"; }

.bx-down-arrow-circle:before {
  content: "\ea30"; }

.bx-download:before {
  content: "\ea31"; }

.bx-downvote:before {
  content: "\ea32"; }

.bx-droplet:before {
  content: "\ea33"; }

.bx-dumbbell:before {
  content: "\ea34"; }

.bx-duplicate:before {
  content: "\ea35"; }

.bx-edit:before {
  content: "\ea36"; }

.bx-edit-alt:before {
  content: "\ea37"; }

.bx-envelope:before {
  content: "\ea38"; }

.bx-equalizer:before {
  content: "\ea39"; }

.bx-error:before {
  content: "\ea3a"; }

.bx-error-alt:before {
  content: "\ea3b"; }

.bx-error-circle:before {
  content: "\ea3c"; }

.bx-euro:before {
  content: "\ea3d"; }

.bx-exit:before {
  content: "\ea3e"; }

.bx-exit-fullscreen:before {
  content: "\ea3f"; }

.bx-expand:before {
  content: "\ea40"; }

.bx-export:before {
  content: "\ea41"; }

.bx-extension:before {
  content: "\ea42"; }

.bx-face:before {
  content: "\ea43"; }

.bx-fast-forward:before {
  content: "\ea44"; }

.bx-fast-forward-circle:before {
  content: "\ea45"; }

.bx-female:before {
  content: "\ea46"; }

.bx-female-sign:before {
  content: "\ea47"; }

.bx-file:before {
  content: "\ea48"; }

.bx-file-blank:before {
  content: "\ea49"; }

.bx-file-find:before {
  content: "\ea4a"; }

.bx-film:before {
  content: "\ea4b"; }

.bx-filter:before {
  content: "\ea4c"; }

.bx-filter-alt:before {
  content: "\ea4d"; }

.bx-fingerprint:before {
  content: "\ea4e"; }

.bx-first-aid:before {
  content: "\ea4f"; }

.bx-first-page:before {
  content: "\ea50"; }

.bx-flag:before {
  content: "\ea51"; }

.bx-folder:before {
  content: "\ea52"; }

.bx-folder-minus:before {
  content: "\ea53"; }

.bx-folder-open:before {
  content: "\ea54"; }

.bx-folder-plus:before {
  content: "\ea55"; }

.bx-font:before {
  content: "\ea56"; }

.bx-font-color:before {
  content: "\ea57"; }

.bx-font-family:before {
  content: "\ea58"; }

.bx-font-size:before {
  content: "\ea59"; }

.bx-food-menu:before {
  content: "\ea5a"; }

.bx-food-tag:before {
  content: "\ea5b"; }

.bx-football:before {
  content: "\ea5c"; }

.bx-fridge:before {
  content: "\ea5d"; }

.bx-fullscreen:before {
  content: "\ea5e"; }

.bx-gas-pump:before {
  content: "\ea5f"; }

.bx-ghost:before {
  content: "\ea60"; }

.bx-gift:before {
  content: "\ea61"; }

.bx-git-branch:before {
  content: "\ea62"; }

.bx-git-commit:before {
  content: "\ea63"; }

.bx-git-compare:before {
  content: "\ea64"; }

.bx-git-merge:before {
  content: "\ea65"; }

.bx-git-pull-request:before {
  content: "\ea66"; }

.bx-git-repo-forked:before {
  content: "\ea67"; }

.bx-globe:before {
  content: "\ea68"; }

.bx-globe-alt:before {
  content: "\ea69"; }

.bx-grid:before {
  content: "\ea6a"; }

.bx-grid-alt:before {
  content: "\ea6b"; }

.bx-grid-horizontal:before {
  content: "\ea6c"; }

.bx-grid-small:before {
  content: "\ea6d"; }

.bx-grid-vertical:before {
  content: "\ea6e"; }

.bx-group:before {
  content: "\ea6f"; }

.bx-handicap:before {
  content: "\ea70"; }

.bx-happy:before {
  content: "\ea71"; }

.bx-happy-alt:before {
  content: "\ea72"; }

.bx-happy-beaming:before {
  content: "\ea73"; }

.bx-happy-heart-eyes:before {
  content: "\ea74"; }

.bx-hash:before {
  content: "\ea75"; }

.bx-hdd:before {
  content: "\ea76"; }

.bx-heading:before {
  content: "\ea77"; }

.bx-headphone:before {
  content: "\ea78"; }

.bx-health:before {
  content: "\ea79"; }

.bx-heart:before {
  content: "\ea7a"; }

.bx-help-circle:before {
  content: "\ea7b"; }

.bx-hide:before {
  content: "\ea7c"; }

.bx-highlight:before {
  content: "\ea7d"; }

.bx-history:before {
  content: "\ea7e"; }

.bx-hive:before {
  content: "\ea7f"; }

.bx-home:before {
  content: "\ea80"; }

.bx-home-alt:before {
  content: "\ea81"; }

.bx-home-circle:before {
  content: "\ea82"; }

.bx-horizontal-center:before {
  content: "\ea83"; }

.bx-hotel:before {
  content: "\ea84"; }

.bx-hourglass:before {
  content: "\ea85"; }

.bx-id-card:before {
  content: "\ea86"; }

.bx-image:before {
  content: "\ea87"; }

.bx-image-add:before {
  content: "\ea88"; }

.bx-image-alt:before {
  content: "\ea89"; }

.bx-images:before {
  content: "\ea8a"; }

.bx-import:before {
  content: "\ea8b"; }

.bx-infinite:before {
  content: "\ea8c"; }

.bx-info-circle:before {
  content: "\ea8d"; }

.bx-italic:before {
  content: "\ea8e"; }

.bx-joystick:before {
  content: "\ea8f"; }

.bx-joystick-alt:before {
  content: "\ea90"; }

.bx-joystick-button:before {
  content: "\ea91"; }

.bx-key:before {
  content: "\ea92"; }

.bx-label:before {
  content: "\ea93"; }

.bx-landscape:before {
  content: "\ea94"; }

.bx-laptop:before {
  content: "\ea95"; }

.bx-last-page:before {
  content: "\ea96"; }

.bx-laugh:before {
  content: "\ea97"; }

.bx-layer:before {
  content: "\ea98"; }

.bx-layout:before {
  content: "\ea99"; }

.bx-left-arrow:before {
  content: "\ea9a"; }

.bx-left-arrow-alt:before {
  content: "\ea9b"; }

.bx-left-arrow-circle:before {
  content: "\ea9c"; }

.bx-left-down-arrow-circle:before {
  content: "\ea9d"; }

.bx-left-indent:before {
  content: "\ea9e"; }

.bx-left-top-arrow-circle:before {
  content: "\ea9f"; }

.bx-like:before {
  content: "\eaa0"; }

.bx-line-chart:before {
  content: "\eaa1"; }

.bx-link:before {
  content: "\eaa2"; }

.bx-link-alt:before {
  content: "\eaa3"; }

.bx-link-external:before {
  content: "\eaa4"; }

.bx-lira:before {
  content: "\eaa5"; }

.bx-list-check:before {
  content: "\eaa6"; }

.bx-list-minus:before {
  content: "\eaa7"; }

.bx-list-ol:before {
  content: "\eaa8"; }

.bx-list-plus:before {
  content: "\eaa9"; }

.bx-list-ul:before {
  content: "\eaaa"; }

.bx-loader:before {
  content: "\eaab"; }

.bx-loader-alt:before {
  content: "\eaac"; }

.bx-loader-circle:before {
  content: "\eaad"; }

.bx-lock:before {
  content: "\eaae"; }

.bx-lock-alt:before {
  content: "\eaaf"; }

.bx-lock-open:before {
  content: "\eab0"; }

.bx-lock-open-alt:before {
  content: "\eab1"; }

.bx-log-in:before {
  content: "\eab2"; }

.bx-log-in-circle:before {
  content: "\eab3"; }

.bx-log-out:before {
  content: "\eab4"; }

.bx-log-out-circle:before {
  content: "\eab5"; }

.bx-magnet:before {
  content: "\eab6"; }

.bx-mail-send:before {
  content: "\eab7"; }

.bx-male:before {
  content: "\eab8"; }

.bx-male-sign:before {
  content: "\eab9"; }

.bx-map:before {
  content: "\eaba"; }

.bx-map-alt:before {
  content: "\eabb"; }

.bx-map-pin:before {
  content: "\eabc"; }

.bx-meh:before {
  content: "\eabd"; }

.bx-meh-alt:before {
  content: "\eabe"; }

.bx-meh-blank:before {
  content: "\eabf"; }

.bx-memory-card:before {
  content: "\eac0"; }

.bx-menu:before {
  content: "\eac1"; }

.bx-menu-alt-left:before {
  content: "\eac2"; }

.bx-menu-alt-right:before {
  content: "\eac3"; }

.bx-message:before {
  content: "\eac4"; }

.bx-message-alt:before {
  content: "\eac5"; }

.bx-message-alt-dots:before {
  content: "\eac6"; }

.bx-message-dots:before {
  content: "\eac7"; }

.bx-message-rounded:before {
  content: "\eac8"; }

.bx-message-rounded-dots:before {
  content: "\eac9"; }

.bx-message-square:before {
  content: "\eaca"; }

.bx-message-square-dots:before {
  content: "\eacb"; }

.bx-microphone:before {
  content: "\eacc"; }

.bx-microphone-off:before {
  content: "\eacd"; }

.bx-minus:before {
  content: "\eace"; }

.bx-minus-circle:before {
  content: "\eacf"; }

.bx-mobile:before {
  content: "\ead0"; }

.bx-mobile-alt:before {
  content: "\ead1"; }

.bx-mobile-landscape:before {
  content: "\ead2"; }

.bx-mobile-vibration:before {
  content: "\ead3"; }

.bx-money:before {
  content: "\ead4"; }

.bx-moon:before {
  content: "\ead5"; }

.bx-mouse:before {
  content: "\ead6"; }

.bx-mouse-alt:before {
  content: "\ead7"; }

.bx-move:before {
  content: "\ead8"; }

.bx-move-horizontal:before {
  content: "\ead9"; }

.bx-move-vertical:before {
  content: "\eada"; }

.bx-movie:before {
  content: "\eadb"; }

.bx-music:before {
  content: "\eadc"; }

.bx-navigation:before {
  content: "\eadd"; }

.bx-news:before {
  content: "\eade"; }

.bx-no-entry:before {
  content: "\eadf"; }

.bx-note:before {
  content: "\eae0"; }

.bx-notepad:before {
  content: "\eae1"; }

.bx-notification:before {
  content: "\eae2"; }

.bx-notification-off:before {
  content: "\eae3"; }

.bx-package:before {
  content: "\eae4"; }

.bx-paint:before {
  content: "\eae5"; }

.bx-paint-roll:before {
  content: "\eae6"; }

.bx-palette:before {
  content: "\eae7"; }

.bx-paperclip:before {
  content: "\eae8"; }

.bx-paper-plane:before {
  content: "\eae9"; }

.bx-paragraph:before {
  content: "\eaea"; }

.bx-paste:before {
  content: "\eaeb"; }

.bx-pause:before {
  content: "\eaec"; }

.bx-pause-circle:before {
  content: "\eaed"; }

.bx-pen:before {
  content: "\eaee"; }

.bx-pencil:before {
  content: "\eaef"; }

.bx-phone:before {
  content: "\eaf0"; }

.bx-phone-call:before {
  content: "\eaf1"; }

.bx-phone-incoming:before {
  content: "\eaf2"; }

.bx-phone-outgoing:before {
  content: "\eaf3"; }

.bx-photo-album:before {
  content: "\eaf4"; }

.bx-pie-chart:before {
  content: "\eaf5"; }

.bx-pie-chart-alt:before {
  content: "\eaf6"; }

.bx-pie-chart-alt-2:before {
  content: "\eaf7"; }

.bx-pin:before {
  content: "\eaf8"; }

.bx-planet:before {
  content: "\eaf9"; }

.bx-play:before {
  content: "\eafa"; }

.bx-play-circle:before {
  content: "\eafb"; }

.bx-plug:before {
  content: "\eafc"; }

.bx-plus:before {
  content: "\eafd"; }

.bx-plus-circle:before {
  content: "\eafe"; }

.bx-plus-medical:before {
  content: "\eaff"; }

.bx-poll:before {
  content: "\eb00"; }

.bx-polygon:before {
  content: "\eb01"; }

.bx-pound:before {
  content: "\eb02"; }

.bx-power-off:before {
  content: "\eb03"; }

.bx-printer:before {
  content: "\eb04"; }

.bx-pulse:before {
  content: "\eb05"; }

.bx-purchase-tag:before {
  content: "\eb06"; }

.bx-purchase-tag-alt:before {
  content: "\eb07"; }

.bx-pyramid:before {
  content: "\eb08"; }

.bx-question-mark:before {
  content: "\eb09"; }

.bx-radar:before {
  content: "\eb0a"; }

.bx-radio:before {
  content: "\eb0b"; }

.bx-radio-circle:before {
  content: "\eb0c"; }

.bx-radio-circle-marked:before {
  content: "\eb0d"; }

.bx-receipt:before {
  content: "\eb0e"; }

.bx-rectangle:before {
  content: "\eb0f"; }

.bx-redo:before {
  content: "\eb10"; }

.bx-rename:before {
  content: "\eb11"; }

.bx-repeat:before {
  content: "\eb12"; }

.bx-reply:before {
  content: "\eb13"; }

.bx-reply-all:before {
  content: "\eb14"; }

.bx-repost:before {
  content: "\eb15"; }

.bx-reset:before {
  content: "\eb16"; }

.bx-restaurant:before {
  content: "\eb17"; }

.bx-revision:before {
  content: "\eb18"; }

.bx-rewind:before {
  content: "\eb19"; }

.bx-rewind-circle:before {
  content: "\eb1a"; }

.bx-right-arrow:before {
  content: "\eb1b"; }

.bx-right-arrow-alt:before {
  content: "\eb1c"; }

.bx-right-arrow-circle:before {
  content: "\eb1d"; }

.bx-right-down-arrow-circle:before {
  content: "\eb1e"; }

.bx-right-indent:before {
  content: "\eb1f"; }

.bx-right-top-arrow-circle:before {
  content: "\eb20"; }

.bx-rocket:before {
  content: "\eb21"; }

.bx-rotate-left:before {
  content: "\eb22"; }

.bx-rotate-right:before {
  content: "\eb23"; }

.bx-rss:before {
  content: "\eb24"; }

.bx-ruble:before {
  content: "\eb25"; }

.bx-ruler:before {
  content: "\eb26"; }

.bx-run:before {
  content: "\eb27"; }

.bx-rupee:before {
  content: "\eb28"; }

.bx-sad:before {
  content: "\eb29"; }

.bx-save:before {
  content: "\eb2a"; }

.bx-screenshot:before {
  content: "\eb2b"; }

.bx-search:before {
  content: "\eb2c"; }

.bx-search-alt:before {
  content: "\eb2d"; }

.bx-search-alt-2:before {
  content: "\eb2e"; }

.bx-selection:before {
  content: "\eb2f"; }

.bx-select-multiple:before {
  content: "\eb30"; }

.bx-send:before {
  content: "\eb31"; }

.bx-server:before {
  content: "\eb32"; }

.bx-shape-circle:before {
  content: "\eb33"; }

.bx-shape-square:before {
  content: "\eb34"; }

.bx-shape-triangle:before {
  content: "\eb35"; }

.bx-share:before {
  content: "\eb36"; }

.bx-share-alt:before {
  content: "\eb37"; }

.bx-shekel:before {
  content: "\eb38"; }

.bx-shield:before {
  content: "\eb39"; }

.bx-shield-alt:before {
  content: "\eb3a"; }

.bx-shield-alt-2:before {
  content: "\eb3b"; }

.bx-shield-quarter:before {
  content: "\eb3c"; }

.bx-shocked:before {
  content: "\eb3d"; }

.bx-shopping-bag:before {
  content: "\eb3e"; }

.bx-show:before {
  content: "\eb3f"; }

.bx-show-alt:before {
  content: "\eb40"; }

.bx-shuffle:before {
  content: "\eb41"; }

.bx-sidebar:before {
  content: "\eb42"; }

.bx-sitemap:before {
  content: "\eb43"; }

.bx-skip-next:before {
  content: "\eb44"; }

.bx-skip-next-circle:before {
  content: "\eb45"; }

.bx-skip-previous:before {
  content: "\eb46"; }

.bx-skip-previous-circle:before {
  content: "\eb47"; }

.bx-sleepy:before {
  content: "\eb48"; }

.bx-slider:before {
  content: "\eb49"; }

.bx-slider-alt:before {
  content: "\eb4a"; }

.bx-slideshow:before {
  content: "\eb4b"; }

.bx-smile:before {
  content: "\eb4c"; }

.bx-sort:before {
  content: "\eb4d"; }

.bx-sort-a-z:before {
  content: "\eb4e"; }

.bx-sort-down:before {
  content: "\eb4f"; }

.bx-sort-up:before {
  content: "\eb50"; }

.bx-sort-z-a:before {
  content: "\eb51"; }

.bx-spa:before {
  content: "\eb52"; }

.bx-space-bar:before {
  content: "\eb53"; }

.bx-spreadsheet:before {
  content: "\eb54"; }

.bx-square:before {
  content: "\eb55"; }

.bx-square-rounded:before {
  content: "\eb56"; }

.bx-star:before {
  content: "\eb57"; }

.bx-station:before {
  content: "\eb58"; }

.bx-stats:before {
  content: "\eb59"; }

.bx-sticker:before {
  content: "\eb5a"; }

.bx-stop:before {
  content: "\eb5b"; }

.bx-stop-circle:before {
  content: "\eb5c"; }

.bx-stopwatch:before {
  content: "\eb5d"; }

.bx-store:before {
  content: "\eb5e"; }

.bx-store-alt:before {
  content: "\eb5f"; }

.bx-street-view:before {
  content: "\eb60"; }

.bx-strikethrough:before {
  content: "\eb61"; }

.bx-subdirectory-left:before {
  content: "\eb62"; }

.bx-subdirectory-right:before {
  content: "\eb63"; }

.bx-sun:before {
  content: "\eb64"; }

.bx-support:before {
  content: "\eb65"; }

.bx-swim:before {
  content: "\eb66"; }

.bx-sync:before {
  content: "\eb67"; }

.bx-tab:before {
  content: "\eb68"; }

.bx-table:before {
  content: "\eb69"; }

.bx-tag:before {
  content: "\eb6a"; }

.bx-target-lock:before {
  content: "\eb6b"; }

.bx-task:before {
  content: "\eb6c"; }

.bx-taxi:before {
  content: "\eb6d"; }

.bx-tennis-ball:before {
  content: "\eb6e"; }

.bx-terminal:before {
  content: "\eb6f"; }

.bx-test-tube:before {
  content: "\eb70"; }

.bx-text:before {
  content: "\eb71"; }

.bx-time:before {
  content: "\eb72"; }

.bx-time-five:before {
  content: "\eb73"; }

.bx-timer:before {
  content: "\eb74"; }

.bx-tired:before {
  content: "\eb75"; }

.bx-toggle-left:before {
  content: "\eb76"; }

.bx-toggle-right:before {
  content: "\eb77"; }

.bx-tone:before {
  content: "\eb78"; }

.bx-train:before {
  content: "\eb79"; }

.bx-transfer:before {
  content: "\eb7a"; }

.bx-transfer-alt:before {
  content: "\eb7b"; }

.bx-trash:before {
  content: "\eb7c"; }

.bx-trash-alt:before {
  content: "\eb7d"; }

.bx-trending-down:before {
  content: "\eb7e"; }

.bx-trending-up:before {
  content: "\eb7f"; }

.bx-trophy:before {
  content: "\eb80"; }

.bx-tv:before {
  content: "\eb81"; }

.bx-underline:before {
  content: "\eb82"; }

.bx-undo:before {
  content: "\eb83"; }

.bx-unlink:before {
  content: "\eb84"; }

.bx-up-arrow:before {
  content: "\eb85"; }

.bx-up-arrow-alt:before {
  content: "\eb86"; }

.bx-up-arrow-circle:before {
  content: "\eb87"; }

.bx-upload:before {
  content: "\eb88"; }

.bx-upside-down:before {
  content: "\eb89"; }

.bx-upvote:before {
  content: "\eb8a"; }

.bx-usb:before {
  content: "\eb8b"; }

.bx-user:before {
  content: "\eb8c"; }

.bx-user-check:before {
  content: "\eb8d"; }

.bx-user-circle:before {
  content: "\eb8e"; }

.bx-user-minus:before {
  content: "\eb8f"; }

.bx-user-pin:before {
  content: "\eb90"; }

.bx-user-plus:before {
  content: "\eb91"; }

.bx-user-voice:before {
  content: "\eb92"; }

.bx-user-x:before {
  content: "\eb93"; }

.bx-vertical-center:before {
  content: "\eb94"; }

.bx-video:before {
  content: "\eb95"; }

.bx-video-off:before {
  content: "\eb96"; }

.bx-video-plus:before {
  content: "\eb97"; }

.bx-video-recording:before {
  content: "\eb98"; }

.bx-voicemail:before {
  content: "\eb99"; }

.bx-volume:before {
  content: "\eb9a"; }

.bx-volume-full:before {
  content: "\eb9b"; }

.bx-volume-low:before {
  content: "\eb9c"; }

.bx-volume-mute:before {
  content: "\eb9d"; }

.bx-walk:before {
  content: "\eb9e"; }

.bx-wallet:before {
  content: "\eb9f"; }

.bx-wallet-alt:before {
  content: "\eba0"; }

.bx-water:before {
  content: "\eba1"; }

.bx-wifi:before {
  content: "\eba2"; }

.bx-wifi-off:before {
  content: "\eba3"; }

.bx-wind:before {
  content: "\eba4"; }

.bx-window:before {
  content: "\eba5"; }

.bx-window-close:before {
  content: "\eba6"; }

.bx-window-open:before {
  content: "\eba7"; }

.bx-windows:before {
  content: "\eba8"; }

.bx-wink-smile:before {
  content: "\eba9"; }

.bx-wink-tongue:before {
  content: "\ebaa"; }

.bx-won:before {
  content: "\ebab"; }

.bx-world:before {
  content: "\ebac"; }

.bx-wrench:before {
  content: "\ebad"; }

.bx-x:before {
  content: "\ebae"; }

.bx-x-circle:before {
  content: "\ebaf"; }

.bx-yen:before {
  content: "\ebb0"; }

.bx-zoom-in:before {
  content: "\ebb1"; }

.bx-zoom-out:before {
  content: "\ebb2"; }

.bxs-add-to-queue:before {
  content: "\ebb3"; }

.bxs-adjust:before {
  content: "\ebb4"; }

.bxs-adjust-alt:before {
  content: "\ebb5"; }

.bxs-alarm:before {
  content: "\ebb6"; }

.bxs-alarm-add:before {
  content: "\ebb7"; }

.bxs-alarm-off:before {
  content: "\ebb8"; }

.bxs-album:before {
  content: "\ebb9"; }

.bxs-ambulance:before {
  content: "\ebba"; }

.bxs-analyse:before {
  content: "\ebbb"; }

.bxs-angry:before {
  content: "\ebbc"; }

.bxs-archive:before {
  content: "\ebbd"; }

.bxs-archive-in:before {
  content: "\ebbe"; }

.bxs-archive-out:before {
  content: "\ebbf"; }

.bxs-area:before {
  content: "\ebc0"; }

.bxs-award:before {
  content: "\ebc1"; }

.bxs-baby-carriage:before {
  content: "\ebc2"; }

.bxs-badge:before {
  content: "\ebc3"; }

.bxs-badge-check:before {
  content: "\ebc4"; }

.bxs-ball:before {
  content: "\ebc5"; }

.bxs-band-aid:before {
  content: "\ebc6"; }

.bxs-bank:before {
  content: "\ebc7"; }

.bxs-bar-chart-alt-2:before {
  content: "\ebc8"; }

.bxs-bar-chart-square:before {
  content: "\ebc9"; }

.bxs-barcode:before {
  content: "\ebca"; }

.bxs-basket:before {
  content: "\ebcb"; }

.bxs-bath:before {
  content: "\ebcc"; }

.bxs-battery:before {
  content: "\ebcd"; }

.bxs-battery-charging:before {
  content: "\ebce"; }

.bxs-battery-full:before {
  content: "\ebcf"; }

.bxs-battery-low:before {
  content: "\ebd0"; }

.bxs-bed:before {
  content: "\ebd1"; }

.bxs-bell:before {
  content: "\ebd2"; }

.bxs-bell-minus:before {
  content: "\ebd3"; }

.bxs-bell-off:before {
  content: "\ebd4"; }

.bxs-bell-plus:before {
  content: "\ebd5"; }

.bxs-bell-ring:before {
  content: "\ebd6"; }

.bxs-bolt:before {
  content: "\ebd7"; }

.bxs-bolt-circle:before {
  content: "\ebd8"; }

.bxs-book:before {
  content: "\ebd9"; }

.bxs-book-bookmark:before {
  content: "\ebda"; }

.bxs-book-content:before {
  content: "\ebdb"; }

.bxs-bookmark:before {
  content: "\ebdc"; }

.bxs-bookmark-minus:before {
  content: "\ebdd"; }

.bxs-bookmark-plus:before {
  content: "\ebde"; }

.bxs-bookmarks:before {
  content: "\ebdf"; }

.bxs-bookmark-star:before {
  content: "\ebe0"; }

.bxs-book-open:before {
  content: "\ebe1"; }

.bxs-bot:before {
  content: "\ebe2"; }

.bxs-bowling-ball:before {
  content: "\ebe3"; }

.bxs-box:before {
  content: "\ebe4"; }

.bxs-briefcase:before {
  content: "\ebe5"; }

.bxs-briefcase-alt:before {
  content: "\ebe6"; }

.bxs-briefcase-alt-2:before {
  content: "\ebe7"; }

.bxs-brightness:before {
  content: "\ebe8"; }

.bxs-brightness-half:before {
  content: "\ebe9"; }

.bxs-brush:before {
  content: "\ebea"; }

.bxs-brush-alt:before {
  content: "\ebeb"; }

.bxs-bug:before {
  content: "\ebec"; }

.bxs-bug-alt:before {
  content: "\ebed"; }

.bxs-building:before {
  content: "\ebee"; }

.bxs-building-house:before {
  content: "\ebef"; }

.bxs-buildings:before {
  content: "\ebf0"; }

.bxs-bulb:before {
  content: "\ebf1"; }

.bxs-buoy:before {
  content: "\ebf2"; }

.bxs-bus:before {
  content: "\ebf3"; }

.bxs-business:before {
  content: "\ebf4"; }

.bxs-cake:before {
  content: "\ebf5"; }

.bxs-calculator:before {
  content: "\ebf6"; }

.bxs-calendar:before {
  content: "\ebf7"; }

.bxs-calendar-alt:before {
  content: "\ebf8"; }

.bxs-calendar-check:before {
  content: "\ebf9"; }

.bxs-calendar-event:before {
  content: "\ebfa"; }

.bxs-calendar-minus:before {
  content: "\ebfb"; }

.bxs-calendar-plus:before {
  content: "\ebfc"; }

.bxs-calendar-x:before {
  content: "\ebfd"; }

.bxs-camera:before {
  content: "\ebfe"; }

.bxs-camera-off:before {
  content: "\ebff"; }

.bxs-camera-plus:before {
  content: "\ec00"; }

.bxs-capsule:before {
  content: "\ec01"; }

.bxs-captions:before {
  content: "\ec02"; }

.bxs-car:before {
  content: "\ec03"; }

.bxs-card:before {
  content: "\ec04"; }

.bxs-caret-down-circle:before {
  content: "\ec05"; }

.bxs-caret-left-circle:before {
  content: "\ec06"; }

.bxs-caret-right-circle:before {
  content: "\ec07"; }

.bxs-caret-up-circle:before {
  content: "\ec08"; }

.bxs-carousel:before {
  content: "\ec09"; }

.bxs-cart:before {
  content: "\ec0a"; }

.bxs-cart-alt:before {
  content: "\ec0b"; }

.bxs-certification:before {
  content: "\ec0c"; }

.bxs-chalkboard:before {
  content: "\ec0d"; }

.bxs-chart:before {
  content: "\ec0e"; }

.bxs-chat:before {
  content: "\ec0f"; }

.bxs-checkbox:before {
  content: "\ec10"; }

.bxs-checkbox-checked:before {
  content: "\ec11"; }

.bxs-check-circle:before {
  content: "\ec12"; }

.bxs-check-shield:before {
  content: "\ec13"; }

.bxs-check-square:before {
  content: "\ec14"; }

.bxs-chip:before {
  content: "\ec15"; }

.bxs-circle:before {
  content: "\ec16"; }

.bxs-city:before {
  content: "\ec17"; }

.bxs-clinic:before {
  content: "\ec18"; }

.bxs-cloud:before {
  content: "\ec19"; }

.bxs-cloud-download:before {
  content: "\ec1a"; }

.bxs-cloud-lightning:before {
  content: "\ec1b"; }

.bxs-cloud-rain:before {
  content: "\ec1c"; }

.bxs-cloud-upload:before {
  content: "\ec1d"; }

.bxs-coffee:before {
  content: "\ec1e"; }

.bxs-coffee-alt:before {
  content: "\ec1f"; }

.bxs-cog:before {
  content: "\ec20"; }

.bxs-collection:before {
  content: "\ec21"; }

.bxs-color-fill:before {
  content: "\ec22"; }

.bxs-comment:before {
  content: "\ec23"; }

.bxs-comment-add:before {
  content: "\ec24"; }

.bxs-comment-detail:before {
  content: "\ec25"; }

.bxs-comment-dots:before {
  content: "\ec26"; }

.bxs-comment-error:before {
  content: "\ec27"; }

.bxs-compass:before {
  content: "\ec28"; }

.bxs-component:before {
  content: "\ec29"; }

.bxs-confused:before {
  content: "\ec2a"; }

.bxs-contact:before {
  content: "\ec2b"; }

.bxs-conversation:before {
  content: "\ec2c"; }

.bxs-cool:before {
  content: "\ec2d"; }

.bxs-copy:before {
  content: "\ec2e"; }

.bxs-copy-alt:before {
  content: "\ec2f"; }

.bxs-coupon:before {
  content: "\ec30"; }

.bxs-credit-card:before {
  content: "\ec31"; }

.bxs-credit-card-alt:before {
  content: "\ec32"; }

.bxs-crown:before {
  content: "\ec33"; }

.bxs-cube:before {
  content: "\ec34"; }

.bxs-cube-alt:before {
  content: "\ec35"; }

.bxs-cuboid:before {
  content: "\ec36"; }

.bxs-customize:before {
  content: "\ec37"; }

.bxs-cylinder:before {
  content: "\ec38"; }

.bxs-dashboard:before {
  content: "\ec39"; }

.bxs-data:before {
  content: "\ec3a"; }

.bxs-detail:before {
  content: "\ec3b"; }

.bxs-devices:before {
  content: "\ec3c"; }

.bxs-direction-left:before {
  content: "\ec3d"; }

.bxs-direction-right:before {
  content: "\ec3e"; }

.bxs-directions:before {
  content: "\ec3f"; }

.bxs-disc:before {
  content: "\ec40"; }

.bxs-discount:before {
  content: "\ec41"; }

.bxs-dish:before {
  content: "\ec42"; }

.bxs-dislike:before {
  content: "\ec43"; }

.bxs-dizzy:before {
  content: "\ec44"; }

.bxs-dock-bottom:before {
  content: "\ec45"; }

.bxs-dock-left:before {
  content: "\ec46"; }

.bxs-dock-right:before {
  content: "\ec47"; }

.bxs-dock-top:before {
  content: "\ec48"; }

.bxs-dollar-circle:before {
  content: "\ec49"; }

.bxs-doughnut-chart:before {
  content: "\ec4a"; }

.bxs-down-arrow:before {
  content: "\ec4b"; }

.bxs-down-arrow-circle:before {
  content: "\ec4c"; }

.bxs-down-arrow-square:before {
  content: "\ec4d"; }

.bxs-download:before {
  content: "\ec4e"; }

.bxs-downvote:before {
  content: "\ec4f"; }

.bxs-drink:before {
  content: "\ec50"; }

.bxs-droplet:before {
  content: "\ec51"; }

.bxs-droplet-half:before {
  content: "\ec52"; }

.bxs-duplicate:before {
  content: "\ec53"; }

.bxs-edit:before {
  content: "\ec54"; }

.bxs-edit-alt:before {
  content: "\ec55"; }

.bxs-eject:before {
  content: "\ec56"; }

.bxs-envelope:before {
  content: "\ec57"; }

.bxs-eraser:before {
  content: "\ec58"; }

.bxs-error:before {
  content: "\ec59"; }

.bxs-error-alt:before {
  content: "\ec5a"; }

.bxs-error-circle:before {
  content: "\ec5b"; }

.bxs-exit:before {
  content: "\ec5c"; }

.bxs-extension:before {
  content: "\ec5d"; }

.bxs-eyedropper:before {
  content: "\ec5e"; }

.bxs-face:before {
  content: "\ec5f"; }

.bxs-factory:before {
  content: "\ec60"; }

.bxs-fast-forward-circle:before {
  content: "\ec61"; }

.bxs-file:before {
  content: "\ec62"; }

.bxs-file-blank:before {
  content: "\ec63"; }

.bxs-file-css:before {
  content: "\ec64"; }

.bxs-file-doc:before {
  content: "\ec65"; }

.bxs-file-find:before {
  content: "\ec66"; }

.bxs-file-gif:before {
  content: "\ec67"; }

.bxs-file-html:before {
  content: "\ec68"; }

.bxs-file-image:before {
  content: "\ec69"; }

.bxs-file-jpg:before {
  content: "\ec6a"; }

.bxs-file-js:before {
  content: "\ec6b"; }

.bxs-file-json:before {
  content: "\ec6c"; }

.bxs-file-md:before {
  content: "\ec6d"; }

.bxs-file-pdf:before {
  content: "\ec6e"; }

.bxs-file-plus:before {
  content: "\ec6f"; }

.bxs-file-png:before {
  content: "\ec70"; }

.bxs-file-txt:before {
  content: "\ec71"; }

.bxs-film:before {
  content: "\ec72"; }

.bxs-filter-alt:before {
  content: "\ec73"; }

.bxs-first-aid:before {
  content: "\ec74"; }

.bxs-flag:before {
  content: "\ec75"; }

.bxs-flag-alt:before {
  content: "\ec76"; }

.bxs-flame:before {
  content: "\ec77"; }

.bxs-flask:before {
  content: "\ec78"; }

.bxs-folder:before {
  content: "\ec79"; }

.bxs-folder-minus:before {
  content: "\ec7a"; }

.bxs-folder-open:before {
  content: "\ec7b"; }

.bxs-folder-plus:before {
  content: "\ec7c"; }

.bxs-food-menu:before {
  content: "\ec7d"; }

.bxs-fridge:before {
  content: "\ec7e"; }

.bxs-gas-pump:before {
  content: "\ec7f"; }

.bxs-ghost:before {
  content: "\ec80"; }

.bxs-gift:before {
  content: "\ec81"; }

.bxs-graduation:before {
  content: "\ec82"; }

.bxs-grid:before {
  content: "\ec83"; }

.bxs-grid-alt:before {
  content: "\ec84"; }

.bxs-group:before {
  content: "\ec85"; }

.bxs-hand-down:before {
  content: "\ec86"; }

.bxs-hand-left:before {
  content: "\ec87"; }

.bxs-hand-right:before {
  content: "\ec88"; }

.bxs-hand-up:before {
  content: "\ec89"; }

.bxs-happy:before {
  content: "\ec8a"; }

.bxs-happy-alt:before {
  content: "\ec8b"; }

.bxs-happy-beaming:before {
  content: "\ec8c"; }

.bxs-happy-heart-eyes:before {
  content: "\ec8d"; }

.bxs-hdd:before {
  content: "\ec8e"; }

.bxs-heart:before {
  content: "\ec8f"; }

.bxs-help-circle:before {
  content: "\ec90"; }

.bxs-hide:before {
  content: "\ec91"; }

.bxs-home:before {
  content: "\ec92"; }

.bxs-home-circle:before {
  content: "\ec93"; }

.bxs-hot:before {
  content: "\ec94"; }

.bxs-hotel:before {
  content: "\ec95"; }

.bxs-hourglass:before {
  content: "\ec96"; }

.bxs-hourglass-bottom:before {
  content: "\ec97"; }

.bxs-hourglass-top:before {
  content: "\ec98"; }

.bxs-id-card:before {
  content: "\ec99"; }

.bxs-image:before {
  content: "\ec9a"; }

.bxs-image-add:before {
  content: "\ec9b"; }

.bxs-image-alt:before {
  content: "\ec9c"; }

.bxs-inbox:before {
  content: "\ec9d"; }

.bxs-info-circle:before {
  content: "\ec9e"; }

.bxs-institution:before {
  content: "\ec9f"; }

.bxs-joystick:before {
  content: "\eca0"; }

.bxs-joystick-alt:before {
  content: "\eca1"; }

.bxs-joystick-button:before {
  content: "\eca2"; }

.bxs-key:before {
  content: "\eca3"; }

.bxs-keyboard:before {
  content: "\eca4"; }

.bxs-label:before {
  content: "\eca5"; }

.bxs-landmark:before {
  content: "\eca6"; }

.bxs-landscape:before {
  content: "\eca7"; }

.bxs-laugh:before {
  content: "\eca8"; }

.bxs-layer:before {
  content: "\eca9"; }

.bxs-layout:before {
  content: "\ecaa"; }

.bxs-left-arrow:before {
  content: "\ecab"; }

.bxs-left-arrow-circle:before {
  content: "\ecac"; }

.bxs-left-arrow-square:before {
  content: "\ecad"; }

.bxs-left-down-arrow-circle:before {
  content: "\ecae"; }

.bxs-left-top-arrow-circle:before {
  content: "\ecaf"; }

.bxs-like:before {
  content: "\ecb0"; }

.bxs-lock:before {
  content: "\ecb1"; }

.bxs-lock-alt:before {
  content: "\ecb2"; }

.bxs-lock-open:before {
  content: "\ecb3"; }

.bxs-lock-open-alt:before {
  content: "\ecb4"; }

.bxs-log-in:before {
  content: "\ecb5"; }

.bxs-log-in-circle:before {
  content: "\ecb6"; }

.bxs-log-out:before {
  content: "\ecb7"; }

.bxs-log-out-circle:before {
  content: "\ecb8"; }

.bxs-magic-wand:before {
  content: "\ecb9"; }

.bxs-magnet:before {
  content: "\ecba"; }

.bxs-map:before {
  content: "\ecbb"; }

.bxs-map-alt:before {
  content: "\ecbc"; }

.bxs-map-pin:before {
  content: "\ecbd"; }

.bxs-megaphone:before {
  content: "\ecbe"; }

.bxs-meh:before {
  content: "\ecbf"; }

.bxs-meh-alt:before {
  content: "\ecc0"; }

.bxs-meh-blank:before {
  content: "\ecc1"; }

.bxs-memory-card:before {
  content: "\ecc2"; }

.bxs-message:before {
  content: "\ecc3"; }

.bxs-message-alt:before {
  content: "\ecc4"; }

.bxs-message-alt-dots:before {
  content: "\ecc5"; }

.bxs-message-dots:before {
  content: "\ecc6"; }

.bxs-message-rounded:before {
  content: "\ecc7"; }

.bxs-message-rounded-dots:before {
  content: "\ecc8"; }

.bxs-message-square:before {
  content: "\ecc9"; }

.bxs-message-square-dots:before {
  content: "\ecca"; }

.bxs-microphone:before {
  content: "\eccb"; }

.bxs-microphone-alt:before {
  content: "\eccc"; }

.bxs-microphone-off:before {
  content: "\eccd"; }

.bxs-minus-circle:before {
  content: "\ecce"; }

.bxs-minus-square:before {
  content: "\eccf"; }

.bxs-mobile:before {
  content: "\ecd0"; }

.bxs-mobile-vibration:before {
  content: "\ecd1"; }

.bxs-moon:before {
  content: "\ecd2"; }

.bxs-mouse:before {
  content: "\ecd3"; }

.bxs-mouse-alt:before {
  content: "\ecd4"; }

.bxs-movie:before {
  content: "\ecd5"; }

.bxs-music:before {
  content: "\ecd6"; }

.bxs-navigation:before {
  content: "\ecd7"; }

.bxs-news:before {
  content: "\ecd8"; }

.bxs-no-entry:before {
  content: "\ecd9"; }

.bxs-note:before {
  content: "\ecda"; }

.bxs-notepad:before {
  content: "\ecdb"; }

.bxs-notification:before {
  content: "\ecdc"; }

.bxs-notification-off:before {
  content: "\ecdd"; }

.bxs-offer:before {
  content: "\ecde"; }

.bxs-package:before {
  content: "\ecdf"; }

.bxs-paint:before {
  content: "\ece0"; }

.bxs-paint-roll:before {
  content: "\ece1"; }

.bxs-palette:before {
  content: "\ece2"; }

.bxs-paper-plane:before {
  content: "\ece3"; }

.bxs-parking:before {
  content: "\ece4"; }

.bxs-paste:before {
  content: "\ece5"; }

.bxs-pen:before {
  content: "\ece6"; }

.bxs-pencil:before {
  content: "\ece7"; }

.bxs-phone:before {
  content: "\ece8"; }

.bxs-phone-call:before {
  content: "\ece9"; }

.bxs-phone-incoming:before {
  content: "\ecea"; }

.bxs-phone-outgoing:before {
  content: "\eceb"; }

.bxs-photo-album:before {
  content: "\ecec"; }

.bxs-pie-chart:before {
  content: "\eced"; }

.bxs-pie-chart-alt:before {
  content: "\ecee"; }

.bxs-pie-chart-alt-2:before {
  content: "\ecef"; }

.bxs-pin:before {
  content: "\ecf0"; }

.bxs-plane:before {
  content: "\ecf1"; }

.bxs-plane-alt:before {
  content: "\ecf2"; }

.bxs-plane-land:before {
  content: "\ecf3"; }

.bxs-planet:before {
  content: "\ecf4"; }

.bxs-plane-take-off:before {
  content: "\ecf5"; }

.bxs-playlist:before {
  content: "\ecf6"; }

.bxs-plug:before {
  content: "\ecf7"; }

.bxs-plus-circle:before {
  content: "\ecf8"; }

.bxs-plus-square:before {
  content: "\ecf9"; }

.bxs-polygon:before {
  content: "\ecfa"; }

.bxs-printer:before {
  content: "\ecfb"; }

.bxs-purchase-tag:before {
  content: "\ecfc"; }

.bxs-purchase-tag-alt:before {
  content: "\ecfd"; }

.bxs-pyramid:before {
  content: "\ecfe"; }

.bxs-quote-alt-left:before {
  content: "\ecff"; }

.bxs-quote-alt-right:before {
  content: "\ed00"; }

.bxs-quote-left:before {
  content: "\ed01"; }

.bxs-quote-right:before {
  content: "\ed02"; }

.bxs-quote-single-left:before {
  content: "\ed03"; }

.bxs-quote-single-right:before {
  content: "\ed04"; }

.bxs-radio:before {
  content: "\ed05"; }

.bxs-receipt:before {
  content: "\ed06"; }

.bxs-rectangle:before {
  content: "\ed07"; }

.bxs-rename:before {
  content: "\ed08"; }

.bxs-report:before {
  content: "\ed09"; }

.bxs-rewind-circle:before {
  content: "\ed0a"; }

.bxs-right-arrow:before {
  content: "\ed0b"; }

.bxs-right-arrow-circle:before {
  content: "\ed0c"; }

.bxs-right-arrow-square:before {
  content: "\ed0d"; }

.bxs-right-down-arrow-circle:before {
  content: "\ed0e"; }

.bxs-right-top-arrow-circle:before {
  content: "\ed0f"; }

.bxs-rocket:before {
  content: "\ed10"; }

.bxs-ruler:before {
  content: "\ed11"; }

.bxs-sad:before {
  content: "\ed12"; }

.bxs-save:before {
  content: "\ed13"; }

.bxs-school:before {
  content: "\ed14"; }

.bxs-search:before {
  content: "\ed15"; }

.bxs-search-alt-2:before {
  content: "\ed16"; }

.bxs-select-multiple:before {
  content: "\ed17"; }

.bxs-send:before {
  content: "\ed18"; }

.bxs-server:before {
  content: "\ed19"; }

.bxs-share:before {
  content: "\ed1a"; }

.bxs-share-alt:before {
  content: "\ed1b"; }

.bxs-shield:before {
  content: "\ed1c"; }

.bxs-shield-alt-2:before {
  content: "\ed1d"; }

.bxs-ship:before {
  content: "\ed1e"; }

.bxs-shocked:before {
  content: "\ed1f"; }

.bxs-shopping-bag:before {
  content: "\ed20"; }

.bxs-shopping-bag-alt:before {
  content: "\ed21"; }

.bxs-show:before {
  content: "\ed22"; }

.bxs-skip-next-circle:before {
  content: "\ed23"; }

.bxs-skip-previous-circle:before {
  content: "\ed24"; }

.bxs-skull:before {
  content: "\ed25"; }

.bxs-sleepy:before {
  content: "\ed26"; }

.bxs-slideshow:before {
  content: "\ed27"; }

.bxs-smile:before {
  content: "\ed28"; }

.bxs-sort-alt:before {
  content: "\ed29"; }

.bxs-spa:before {
  content: "\ed2a"; }

.bxs-spreadsheet:before {
  content: "\ed2b"; }

.bxs-square:before {
  content: "\ed2c"; }

.bxs-square-rounded:before {
  content: "\ed2d"; }

.bxs-star:before {
  content: "\ed2e"; }

.bxs-star-half:before {
  content: "\ed2f"; }

.bxs-stopwatch:before {
  content: "\ed30"; }

.bxs-store:before {
  content: "\ed31"; }

.bxs-store-alt:before {
  content: "\ed32"; }

.bxs-sun:before {
  content: "\ed33"; }

.bxs-tag:before {
  content: "\ed34"; }

.bxs-tag-x:before {
  content: "\ed35"; }

.bxs-taxi:before {
  content: "\ed36"; }

.bxs-tennis-ball:before {
  content: "\ed37"; }

.bxs-terminal:before {
  content: "\ed38"; }

.bxs-time:before {
  content: "\ed39"; }

.bxs-time-five:before {
  content: "\ed3a"; }

.bxs-timer:before {
  content: "\ed3b"; }

.bxs-tired:before {
  content: "\ed3c"; }

.bxs-toggle-left:before {
  content: "\ed3d"; }

.bxs-toggle-right:before {
  content: "\ed3e"; }

.bxs-tone:before {
  content: "\ed3f"; }

.bxs-torch:before {
  content: "\ed40"; }

.bxs-to-top:before {
  content: "\ed41"; }

.bxs-traffic:before {
  content: "\ed42"; }

.bxs-traffic-barrier:before {
  content: "\ed43"; }

.bxs-train:before {
  content: "\ed44"; }

.bxs-trash:before {
  content: "\ed45"; }

.bxs-trash-alt:before {
  content: "\ed46"; }

.bxs-tree:before {
  content: "\ed47"; }

.bxs-trophy:before {
  content: "\ed48"; }

.bxs-truck:before {
  content: "\ed49"; }

.bxs-t-shirt:before {
  content: "\ed4a"; }

.bxs-up-arrow:before {
  content: "\ed4b"; }

.bxs-up-arrow-circle:before {
  content: "\ed4c"; }

.bxs-up-arrow-square:before {
  content: "\ed4d"; }

.bxs-upside-down:before {
  content: "\ed4e"; }

.bxs-upvote:before {
  content: "\ed4f"; }

.bxs-user:before {
  content: "\ed50"; }

.bxs-user-badge:before {
  content: "\ed51"; }

.bxs-user-check:before {
  content: "\ed52"; }

.bxs-user-circle:before {
  content: "\ed53"; }

.bxs-user-detail:before {
  content: "\ed54"; }

.bxs-user-minus:before {
  content: "\ed55"; }

.bxs-user-pin:before {
  content: "\ed56"; }

.bxs-user-plus:before {
  content: "\ed57"; }

.bxs-user-rectangle:before {
  content: "\ed58"; }

.bxs-user-voice:before {
  content: "\ed59"; }

.bxs-user-x:before {
  content: "\ed5a"; }

.bxs-vial:before {
  content: "\ed5b"; }

.bxs-video:before {
  content: "\ed5c"; }

.bxs-video-off:before {
  content: "\ed5d"; }

.bxs-video-plus:before {
  content: "\ed5e"; }

.bxs-video-recording:before {
  content: "\ed5f"; }

.bxs-videos:before {
  content: "\ed60"; }

.bxs-volume:before {
  content: "\ed61"; }

.bxs-volume-full:before {
  content: "\ed62"; }

.bxs-volume-low:before {
  content: "\ed63"; }

.bxs-volume-mute:before {
  content: "\ed64"; }

.bxs-wallet:before {
  content: "\ed65"; }

.bxs-wallet-alt:before {
  content: "\ed66"; }

.bxs-watch:before {
  content: "\ed67"; }

.bxs-watch-alt:before {
  content: "\ed68"; }

.bxs-widget:before {
  content: "\ed69"; }

.bxs-wine:before {
  content: "\ed6a"; }

.bxs-wink-smile:before {
  content: "\ed6b"; }

.bxs-wink-tongue:before {
  content: "\ed6c"; }

.bxs-wrench:before {
  content: "\ed6d"; }

.bxs-x-circle:before {
  content: "\ed6e"; }

.bxs-x-square:before {
  content: "\ed6f"; }

.bxs-yin-yang:before {
  content: "\ed70"; }

.bxs-zap:before {
  content: "\ed71"; }

.bxs-zoom-in:before {
  content: "\ed72"; }

.bxs-zoom-out:before {
  content: "\ed73"; }

/*!
 * Font Awesome Free 5.13.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }

.fa-ul > li {
  position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  animation: fa-spin 1s infinite steps(8); }

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

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adobe:before {
  content: "\f778"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\f95b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\f952"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-alt:before {
  content: "\f424"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\f905"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\f907"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\f95c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-sparkles:before {
  content: "\f95d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\f95e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\f95f"; }

.fa-handshake-slash:before {
  content: "\f960"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\f961"; }

.fa-head-side-cough-slash:before {
  content: "\f962"; }

.fa-head-side-mask:before {
  content: "\f963"; }

.fa-head-side-virus:before {
  content: "\f964"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\f965"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\f913"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\f955"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\f966"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\f967"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\f91a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\f956"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\f968"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\f91e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\f969"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\f96a"; }

.fa-pump-soap:before {
  content: "\f96b"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-shield-virus:before {
  content: "\f96c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\f957"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\f96e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-stopwatch-20:before {
  content: "\f96f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\f970"; }

.fa-store-slash:before {
  content: "\f971"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\f972"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\f941"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\f949"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\f974"; }

.fa-virus-slash:before {
  content: "\f975"; }

.fa-viruses:before {
  content: "\f976"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

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

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

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/fa-brands-400.eot?607a77859353c0cc1882b51e1e269d38);
  src: url(/fonts/fa-brands-400.eot?607a77859353c0cc1882b51e1e269d38) format("embedded-opentype"), url(/fonts/fa-brands-400.woff2?31015e861aeb30ff8355fab3e876a6bd) format("woff2"), url(/fonts/fa-brands-400.woff?ee26f57bc9e3619b022b2c0ea0fc4660) format("woff"), url(/fonts/fa-brands-400.ttf?5818bbd07dfd7095920a592049f5d9bd) format("truetype"), url(/fonts/fa-brands-400.svg?3c45c98f6f6c1b009c082510d0255ef4) format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/fonts/fa-regular-400.eot?0747be4cba2f8600544f4f09645d971a);
  src: url(/fonts/fa-regular-400.eot?0747be4cba2f8600544f4f09645d971a) format("embedded-opentype"), url(/fonts/fa-regular-400.woff2?c52405129ae48097815d4da606003470) format("woff2"), url(/fonts/fa-regular-400.woff?8b892b7904a39e37c53dc5a7534bb60e) format("woff"), url(/fonts/fa-regular-400.ttf?c3146b3524e97475c094343e848a7370) format("truetype"), url(/fonts/fa-regular-400.svg?ab47faeab8ddc5f809ec2a5377c1fbe4) format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/fonts/fa-solid-900.eot?7eefe04dc985dd4ad38bd7f4ec0c20a0);
  src: url(/fonts/fa-solid-900.eot?7eefe04dc985dd4ad38bd7f4ec0c20a0) format("embedded-opentype"), url(/fonts/fa-solid-900.woff2?9451d5fee89b51a20f8a44c56a4f6c1a) format("woff2"), url(/fonts/fa-solid-900.woff?a940d584750708f5435ce2c523498ddb) format("woff"), url(/fonts/fa-solid-900.ttf?32267f3b4db33a7c85ee31d9b317c9e4) format("truetype"), url(/fonts/fa-solid-900.svg?18df003f90a7f1313b98b23384ec4f1b) format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

@font-face {
  font-family: "dripicons-v2";
  src: url(/fonts/dripicons-v2.eot?7f392f1e4787b46b3e8b7a724b923151);
  src: url(/fonts/dripicons-v2.eot?7f392f1e4787b46b3e8b7a724b923151) format("embedded-opentype"), url(/fonts/dripicons-v2.woff?f19dcc0358afed69d2775da7999aa743) format("woff"), url(/fonts/dripicons-v2.ttf?09c9c870ef8f9cffcc8faf6091535231) format("truetype"), url(/fonts/dripicons-v2.svg?4cecedd188b606da855d20edfa03e154) format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "dripicons-v2" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="dripicons-"]:before,
[class*=" dripicons-"]:before {
  font-family: "dripicons-v2" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.dripicons-alarm:before {
  content: "\61"; }

.dripicons-align-center:before {
  content: "\62"; }

.dripicons-align-justify:before {
  content: "\63"; }

.dripicons-align-left:before {
  content: "\64"; }

.dripicons-align-right:before {
  content: "\65"; }

.dripicons-anchor:before {
  content: "\66"; }

.dripicons-archive:before {
  content: "\67"; }

.dripicons-arrow-down:before {
  content: "\68"; }

.dripicons-arrow-left:before {
  content: "\69"; }

.dripicons-arrow-right:before {
  content: "\6a"; }

.dripicons-arrow-thin-down:before {
  content: "\6b"; }

.dripicons-arrow-thin-left:before {
  content: "\6c"; }

.dripicons-arrow-thin-right:before {
  content: "\6d"; }

.dripicons-arrow-thin-up:before {
  content: "\6e"; }

.dripicons-arrow-up:before {
  content: "\6f"; }

.dripicons-article:before {
  content: "\70"; }

.dripicons-backspace:before {
  content: "\71"; }

.dripicons-basket:before {
  content: "\72"; }

.dripicons-basketball:before {
  content: "\73"; }

.dripicons-battery-empty:before {
  content: "\74"; }

.dripicons-battery-full:before {
  content: "\75"; }

.dripicons-battery-low:before {
  content: "\76"; }

.dripicons-battery-medium:before {
  content: "\77"; }

.dripicons-bell:before {
  content: "\78"; }

.dripicons-blog:before {
  content: "\79"; }

.dripicons-bluetooth:before {
  content: "\7a"; }

.dripicons-bold:before {
  content: "\41"; }

.dripicons-bookmark:before {
  content: "\42"; }

.dripicons-bookmarks:before {
  content: "\43"; }

.dripicons-box:before {
  content: "\44"; }

.dripicons-briefcase:before {
  content: "\45"; }

.dripicons-brightness-low:before {
  content: "\46"; }

.dripicons-brightness-max:before {
  content: "\47"; }

.dripicons-brightness-medium:before {
  content: "\48"; }

.dripicons-broadcast:before {
  content: "\49"; }

.dripicons-browser:before {
  content: "\4a"; }

.dripicons-browser-upload:before {
  content: "\4b"; }

.dripicons-brush:before {
  content: "\4c"; }

.dripicons-calendar:before {
  content: "\4d"; }

.dripicons-camcorder:before {
  content: "\4e"; }

.dripicons-camera:before {
  content: "\4f"; }

.dripicons-card:before {
  content: "\50"; }

.dripicons-cart:before {
  content: "\51"; }

.dripicons-checklist:before {
  content: "\52"; }

.dripicons-checkmark:before {
  content: "\53"; }

.dripicons-chevron-down:before {
  content: "\54"; }

.dripicons-chevron-left:before {
  content: "\55"; }

.dripicons-chevron-right:before {
  content: "\56"; }

.dripicons-chevron-up:before {
  content: "\57"; }

.dripicons-clipboard:before {
  content: "\58"; }

.dripicons-clock:before {
  content: "\59"; }

.dripicons-clockwise:before {
  content: "\5a"; }

.dripicons-cloud:before {
  content: "\30"; }

.dripicons-cloud-download:before {
  content: "\31"; }

.dripicons-cloud-upload:before {
  content: "\32"; }

.dripicons-code:before {
  content: "\33"; }

.dripicons-contract:before {
  content: "\34"; }

.dripicons-contract-2:before {
  content: "\35"; }

.dripicons-conversation:before {
  content: "\36"; }

.dripicons-copy:before {
  content: "\37"; }

.dripicons-crop:before {
  content: "\38"; }

.dripicons-cross:before {
  content: "\39"; }

.dripicons-crosshair:before {
  content: "\21"; }

.dripicons-cutlery:before {
  content: "\22"; }

.dripicons-device-desktop:before {
  content: "\23"; }

.dripicons-device-mobile:before {
  content: "\24"; }

.dripicons-device-tablet:before {
  content: "\25"; }

.dripicons-direction:before {
  content: "\26"; }

.dripicons-disc:before {
  content: "\27"; }

.dripicons-document:before {
  content: "\28"; }

.dripicons-document-delete:before {
  content: "\29"; }

.dripicons-document-edit:before {
  content: "\2a"; }

.dripicons-document-new:before {
  content: "\2b"; }

.dripicons-document-remove:before {
  content: "\2c"; }

.dripicons-dot:before {
  content: "\2d"; }

.dripicons-dots-2:before {
  content: "\2e"; }

.dripicons-dots-3:before {
  content: "\2f"; }

.dripicons-download:before {
  content: "\3a"; }

.dripicons-duplicate:before {
  content: "\3b"; }

.dripicons-enter:before {
  content: "\3c"; }

.dripicons-exit:before {
  content: "\3d"; }

.dripicons-expand:before {
  content: "\3e"; }

.dripicons-expand-2:before {
  content: "\3f"; }

.dripicons-experiment:before {
  content: "\40"; }

.dripicons-export:before {
  content: "\5b"; }

.dripicons-feed:before {
  content: "\5d"; }

.dripicons-flag:before {
  content: "\5e"; }

.dripicons-flashlight:before {
  content: "\5f"; }

.dripicons-folder:before {
  content: "\60"; }

.dripicons-folder-open:before {
  content: "\7b"; }

.dripicons-forward:before {
  content: "\7c"; }

.dripicons-gaming:before {
  content: "\7d"; }

.dripicons-gear:before {
  content: "\7e"; }

.dripicons-graduation:before {
  content: "\5c"; }

.dripicons-graph-bar:before {
  content: "\e000"; }

.dripicons-graph-line:before {
  content: "\e001"; }

.dripicons-graph-pie:before {
  content: "\e002"; }

.dripicons-headset:before {
  content: "\e003"; }

.dripicons-heart:before {
  content: "\e004"; }

.dripicons-help:before {
  content: "\e005"; }

.dripicons-home:before {
  content: "\e006"; }

.dripicons-hourglass:before {
  content: "\e007"; }

.dripicons-inbox:before {
  content: "\e008"; }

.dripicons-information:before {
  content: "\e009"; }

.dripicons-italic:before {
  content: "\e00a"; }

.dripicons-jewel:before {
  content: "\e00b"; }

.dripicons-lifting:before {
  content: "\e00c"; }

.dripicons-lightbulb:before {
  content: "\e00d"; }

.dripicons-link:before {
  content: "\e00e"; }

.dripicons-link-broken:before {
  content: "\e00f"; }

.dripicons-list:before {
  content: "\e010"; }

.dripicons-loading:before {
  content: "\e011"; }

.dripicons-location:before {
  content: "\e012"; }

.dripicons-lock:before {
  content: "\e013"; }

.dripicons-lock-open:before {
  content: "\e014"; }

.dripicons-mail:before {
  content: "\e015"; }

.dripicons-map:before {
  content: "\e016"; }

.dripicons-media-loop:before {
  content: "\e017"; }

.dripicons-media-next:before {
  content: "\e018"; }

.dripicons-media-pause:before {
  content: "\e019"; }

.dripicons-media-play:before {
  content: "\e01a"; }

.dripicons-media-previous:before {
  content: "\e01b"; }

.dripicons-media-record:before {
  content: "\e01c"; }

.dripicons-media-shuffle:before {
  content: "\e01d"; }

.dripicons-media-stop:before {
  content: "\e01e"; }

.dripicons-medical:before {
  content: "\e01f"; }

.dripicons-menu:before {
  content: "\e020"; }

.dripicons-message:before {
  content: "\e021"; }

.dripicons-meter:before {
  content: "\e022"; }

.dripicons-microphone:before {
  content: "\e023"; }

.dripicons-minus:before {
  content: "\e024"; }

.dripicons-monitor:before {
  content: "\e025"; }

.dripicons-move:before {
  content: "\e026"; }

.dripicons-music:before {
  content: "\e027"; }

.dripicons-network-1:before {
  content: "\e028"; }

.dripicons-network-2:before {
  content: "\e029"; }

.dripicons-network-3:before {
  content: "\e02a"; }

.dripicons-network-4:before {
  content: "\e02b"; }

.dripicons-network-5:before {
  content: "\e02c"; }

.dripicons-pamphlet:before {
  content: "\e02d"; }

.dripicons-paperclip:before {
  content: "\e02e"; }

.dripicons-pencil:before {
  content: "\e02f"; }

.dripicons-phone:before {
  content: "\e030"; }

.dripicons-photo:before {
  content: "\e031"; }

.dripicons-photo-group:before {
  content: "\e032"; }

.dripicons-pill:before {
  content: "\e033"; }

.dripicons-pin:before {
  content: "\e034"; }

.dripicons-plus:before {
  content: "\e035"; }

.dripicons-power:before {
  content: "\e036"; }

.dripicons-preview:before {
  content: "\e037"; }

.dripicons-print:before {
  content: "\e038"; }

.dripicons-pulse:before {
  content: "\e039"; }

.dripicons-question:before {
  content: "\e03a"; }

.dripicons-reply:before {
  content: "\e03b"; }

.dripicons-reply-all:before {
  content: "\e03c"; }

.dripicons-return:before {
  content: "\e03d"; }

.dripicons-retweet:before {
  content: "\e03e"; }

.dripicons-rocket:before {
  content: "\e03f"; }

.dripicons-scale:before {
  content: "\e040"; }

.dripicons-search:before {
  content: "\e041"; }

.dripicons-shopping-bag:before {
  content: "\e042"; }

.dripicons-skip:before {
  content: "\e043"; }

.dripicons-stack:before {
  content: "\e044"; }

.dripicons-star:before {
  content: "\e045"; }

.dripicons-stopwatch:before {
  content: "\e046"; }

.dripicons-store:before {
  content: "\e047"; }

.dripicons-suitcase:before {
  content: "\e048"; }

.dripicons-swap:before {
  content: "\e049"; }

.dripicons-tag:before {
  content: "\e04a"; }

.dripicons-tag-delete:before {
  content: "\e04b"; }

.dripicons-tags:before {
  content: "\e04c"; }

.dripicons-thumbs-down:before {
  content: "\e04d"; }

.dripicons-thumbs-up:before {
  content: "\e04e"; }

.dripicons-ticket:before {
  content: "\e04f"; }

.dripicons-time-reverse:before {
  content: "\e050"; }

.dripicons-to-do:before {
  content: "\e051"; }

.dripicons-toggles:before {
  content: "\e052"; }

.dripicons-trash:before {
  content: "\e053"; }

.dripicons-trophy:before {
  content: "\e054"; }

.dripicons-upload:before {
  content: "\e055"; }

.dripicons-user:before {
  content: "\e056"; }

.dripicons-user-group:before {
  content: "\e057"; }

.dripicons-user-id:before {
  content: "\e058"; }

.dripicons-vibrate:before {
  content: "\e059"; }

.dripicons-view-apps:before {
  content: "\e05a"; }

.dripicons-view-list:before {
  content: "\e05b"; }

.dripicons-view-list-large:before {
  content: "\e05c"; }

.dripicons-view-thumb:before {
  content: "\e05d"; }

.dripicons-volume-full:before {
  content: "\e05e"; }

.dripicons-volume-low:before {
  content: "\e05f"; }

.dripicons-volume-medium:before {
  content: "\e060"; }

.dripicons-volume-off:before {
  content: "\e061"; }

.dripicons-wallet:before {
  content: "\e062"; }

.dripicons-warning:before {
  content: "\e063"; }

.dripicons-web:before {
  content: "\e064"; }

.dripicons-weight:before {
  content: "\e065"; }

.dripicons-wifi:before {
  content: "\e066"; }

.dripicons-wrong:before {
  content: "\e067"; }

.dripicons-zoom-in:before {
  content: "\e068"; }

.dripicons-zoom-out:before {
  content: "\e069"; }

/*
Template Name: Minible - Admin & Dashboard Template
Author: Themesbrand
Version: 2.3.0
Website: https://themesbrand.com/
Contact: themesbrand@gmail.com
File: Custom Bootstrap Css File
*/
/*!
   * Bootstrap  v5.3.0 (https://getbootstrap.com/)
   * Copyright 2011-2023 The Bootstrap Authors
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
   */
:root,
[data-bs-theme="light"] {
  --bs-blue: #d51920;
  --bs-indigo: #564ab1;
  --bs-purple: #6f42c1;
  --bs-pink: #e83e8c;
  --bs-red: #f25c54;
  --bs-orange: #f1734f;
  --bs-yellow: #f1b44c;
  --bs-green: #1dd3b0;
  --bs-teal: #050505;
  --bs-cyan: #0d58c1;
  --bs-white: #fff;
  --bs-gray: #74788d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #fbfbfb;
  --bs-gray-200: #f5f6f8;
  --bs-gray-300: #f6f6f6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #74788d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #d51920;
  --bs-secondary: #fff;
  --bs-success: #1dd3b0;
  --bs-info: #0d58c1;
  --bs-warning: #f1b44c;
  --bs-danger: #f25c54;
  --bs-pink: #e83e8c;
  --bs-light: #f5f6f8;
  --bs-dark: #343a40;
  --bs-purple: #6f42c1;
  --bs-primary-rgb: 213, 25, 32;
  --bs-secondary-rgb: 255, 255, 255;
  --bs-success-rgb: 29, 211, 176;
  --bs-info-rgb: 13, 88, 193;
  --bs-warning-rgb: 241, 180, 76;
  --bs-danger-rgb: 242, 92, 84;
  --bs-pink-rgb: 232, 62, 140;
  --bs-light-rgb: 245, 246, 248;
  --bs-dark-rgb: 52, 58, 64;
  --bs-purple-rgb: 111, 66, 193;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: Open Sans;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Open Sans;
  --bs-body-font-size: 0.9rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #f3f7fc;
  --bs-body-bg-rgb: 243, 247, 252;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #d51920;
  --bs-link-color-rgb: 213, 25, 32;
  --bs-link-decoration: none;
  --bs-link-hover-color: #911116;
  --bs-link-hover-color-rgb: 144.53571, 16.96429, 21.71429;
  --bs-code-color: #e83e8c;
  --bs-highlight-bg: #fcf8e3;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #f5f6f8;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.25rem;
  --bs-border-radius-sm: 0.2rem;
  --bs-border-radius-lg: 0.4rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545; }

[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #adb5bd;
  --bs-body-color-rgb: 173, 181, 189;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(173, 181, 189, 0.75);
  --bs-secondary-color-rgb: 173, 181, 189;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(173, 181, 189, 0.5);
  --bs-tertiary-color-rgb: 173, 181, 189;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #e67579;
  --bs-secondary-text-emphasis: white;
  --bs-success-text-emphasis: #77e5d0;
  --bs-info-text-emphasis: #6e9bda;
  --bs-warning-text-emphasis: #f7d294;
  --bs-danger-text-emphasis: #f79d98;
  --bs-light-text-emphasis: #fbfbfb;
  --bs-dark-text-emphasis: #f6f6f6;
  --bs-primary-bg-subtle: #2b0506;
  --bs-secondary-bg-subtle: #333333;
  --bs-success-bg-subtle: #062a23;
  --bs-info-bg-subtle: #031227;
  --bs-warning-bg-subtle: #30240f;
  --bs-danger-bg-subtle: #301211;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #800f13;
  --bs-secondary-border-subtle: #999999;
  --bs-success-border-subtle: #117f6a;
  --bs-info-border-subtle: #083574;
  --bs-warning-border-subtle: #916c2e;
  --bs-danger-border-subtle: #913732;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #e67579;
  --bs-link-hover-color: #eb9194;
  --bs-link-color-rgb: 230, 117, 121;
  --bs-link-hover-color-rgb: 235, 145, 148;
  --bs-code-color: #f18bba;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #77e5d0;
  --bs-form-valid-border-color: #77e5d0;
  --bs-form-invalid-color: #f79d98;
  --bs-form-invalid-border-color: #f79d98; }

*,
*::before,
*::after {
  box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth; } }

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

hr {
  margin: 1rem 0;
  color: rgba(0, 0, 0, 0.1);
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.5; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color); }

h1, .h1 {
  font-size: calc(1.35rem + 1.2vw); }
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 2.25rem; } }

h2, .h2 {
  font-size: calc(1.305rem + 0.66vw); }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 1.8rem; } }

h3, .h3 {
  font-size: calc(1.2825rem + 0.39vw); }
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.575rem; } }

h4, .h4 {
  font-size: calc(1.26rem + 0.12vw); }
  @media (min-width: 1200px) {
    h4, .h4 {
      font-size: 1.35rem; } }

h5, .h5 {
  font-size: 1.125rem; }

h6, .h6 {
  font-size: 0.9rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul {
  padding-left: 2rem; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 600; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small, .small {
  font-size: 87.5%; }

mark, .mark {
  padding: 0.2em;
  background-color: var(--bs-highlight-bg); }

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none; }
  a:hover {
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb); }

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none; }

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 87.5%; }
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal; }

code {
  font-size: 87.5%;
  color: var(--bs-code-color);
  word-wrap: break-word; }
  a > code {
    color: inherit; }

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem; }
  kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 600; }

figure {
  margin: 0 0 1rem; }

img,
svg {
  vertical-align: middle; }

table {
  caption-side: bottom;
  border-collapse: collapse; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #74788d;
  text-align: left; }

th {
  text-align: inherit;
  text-align: -webkit-match-parent; }

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0; }

label {
  display: inline-block; }

button {
  border-radius: 0; }

button:focus:not(:focus-visible) {
  outline: 0; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
select {
  text-transform: none; }

[role="button"] {
  cursor: pointer; }

select {
  word-wrap: normal; }
  select:disabled {
    opacity: 1; }

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }
  button:not(:disabled),
  [type="button"]:not(:disabled),
  [type="reset"]:not(:disabled),
  [type="submit"]:not(:disabled) {
    cursor: pointer; }

::-moz-focus-inner {
  padding: 0;
  border-style: none; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit; }
  @media (min-width: 1200px) {
    legend {
      font-size: 1.5rem; } }
  legend + * {
    clear: left; }

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0; }

::-webkit-inner-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield; }

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-color-swatch-wrapper {
  padding: 0; }

::file-selector-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

iframe {
  border: 0; }

summary {
  display: list-item;
  cursor: pointer; }

progress {
  vertical-align: baseline; }

[hidden] {
  display: none !important; }

.lead {
  font-size: 1.125rem;
  font-weight: 300; }

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-1 {
      font-size: 5rem; } }

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-2 {
      font-size: 4.5rem; } }

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-3 {
      font-size: 4rem; } }

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-4 {
      font-size: 3.5rem; } }

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-5 {
      font-size: 3rem; } }

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-6 {
      font-size: 2.5rem; } }

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

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

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem; }

.initialism {
  font-size: 87.5%;
  text-transform: uppercase; }

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.125rem; }
  .blockquote > :last-child {
    margin-bottom: 0; }

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 87.5%;
  color: #74788d; }
  .blockquote-footer::before {
    content: "\2014\00A0"; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.img-thumbnail {
  padding: 0.25rem;
  background-color: #f3f7fc;
  border: 1px solid #f6f6f6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption {
  font-size: 87.5%;
  color: #74788d; }

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0.625rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto; }

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px; } }

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px; } }

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px; } }

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px; } }

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px; } }

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px; }

.row {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x)); }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y); }

.col {
  flex: 1 0 0%; }

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto; }

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%; }

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%; }

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333%; }

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%; }

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%; }

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto; }

.col-1 {
  flex: 0 0 auto;
  width: 8.33333%; }

.col-2 {
  flex: 0 0 auto;
  width: 16.66667%; }

.col-3 {
  flex: 0 0 auto;
  width: 25%; }

.col-4 {
  flex: 0 0 auto;
  width: 33.33333%; }

.col-5 {
  flex: 0 0 auto;
  width: 41.66667%; }

.col-6 {
  flex: 0 0 auto;
  width: 50%; }

.col-7 {
  flex: 0 0 auto;
  width: 58.33333%; }

.col-8 {
  flex: 0 0 auto;
  width: 66.66667%; }

.col-9 {
  flex: 0 0 auto;
  width: 75%; }

.col-10 {
  flex: 0 0 auto;
  width: 83.33333%; }

.col-11 {
  flex: 0 0 auto;
  width: 91.66667%; }

.col-12 {
  flex: 0 0 auto;
  width: 100%; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

.g-0,
.gx-0 {
  --bs-gutter-x: 0; }

.g-0,
.gy-0 {
  --bs-gutter-y: 0; }

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem; }

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem; }

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem; }

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem; }

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem; }

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem; }

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem; }

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem; }

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem; }

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem; }

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%; }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0; }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0; }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem; }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem; }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem; }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem; }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem; }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem; }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem; }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem; }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem; }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%; }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0; }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0; }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem; }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem; }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem; }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem; }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem; }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem; }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem; }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem; }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem; }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%; }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0; }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0; }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem; }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem; }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem; }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem; }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem; }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem; }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem; }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem; }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem; }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%; }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0; }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0; }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem; }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem; }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem; }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%; }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xxl-0 {
    margin-left: 0; }
  .offset-xxl-1 {
    margin-left: 8.33333%; }
  .offset-xxl-2 {
    margin-left: 16.66667%; }
  .offset-xxl-3 {
    margin-left: 25%; }
  .offset-xxl-4 {
    margin-left: 33.33333%; }
  .offset-xxl-5 {
    margin-left: 41.66667%; }
  .offset-xxl-6 {
    margin-left: 50%; }
  .offset-xxl-7 {
    margin-left: 58.33333%; }
  .offset-xxl-8 {
    margin-left: 66.66667%; }
  .offset-xxl-9 {
    margin-left: 75%; }
  .offset-xxl-10 {
    margin-left: 83.33333%; }
  .offset-xxl-11 {
    margin-left: 91.66667%; }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0; }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0; }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem; }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem; }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem; }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem; } }

.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: #212529;
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: #f5f6f8;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: #fbfbfb;
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: #fbfbfb;
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color); }
  .table > :not(caption) > * > * {
    padding: 0.75rem 0.75rem;
    color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg))); }
  .table > tbody {
    vertical-align: inherit; }
  .table > thead {
    vertical-align: bottom; }

.table-group-divider {
  border-top: calc(1px * 2) solid #f5f6f8; }

.caption-top {
  caption-side: top; }

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem; }

.table-bordered > :not(caption) > * {
  border-width: 1px 0; }
  .table-bordered > :not(caption) > * > * {
    border-width: 0 1px; }

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0; }

.table-borderless > :not(:first-child) {
  border-top-width: 0; }

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg); }

.table-striped-columns > :not(caption) > tr > :nth-child(even) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg); }

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg); }

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg); }

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #f7d1d2;
  --bs-table-border-color: #debcbd;
  --bs-table-striped-bg: #ebc7c8;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #debcbd;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e4c1c2;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color); }

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: white;
  --bs-table-border-color: #e6e6e6;
  --bs-table-striped-bg: #f2f2f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6e6e6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ececec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color); }

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d2f6ef;
  --bs-table-border-color: #bdddd7;
  --bs-table-striped-bg: #c8eae3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bdddd7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c2e4dd;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color); }

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cfdef3;
  --bs-table-border-color: #bac8db;
  --bs-table-striped-bg: #c5d3e7;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bac8db;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfcde1;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color); }

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fcf0db;
  --bs-table-border-color: #e3d8c5;
  --bs-table-striped-bg: #efe4d0;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e3d8c5;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e9decb;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color); }

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #fcdedd;
  --bs-table-border-color: #e3c8c7;
  --bs-table-striped-bg: #efd3d2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e3c8c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e9cdcc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color); }

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f5f6f8;
  --bs-table-border-color: #dddddf;
  --bs-table-striped-bg: #e9eaec;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dddddf;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e3e4e5;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color); }

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #343a40;
  --bs-table-border-color: #484e53;
  --bs-table-striped-bg: #3e444a;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #484e53;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #43494e;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color); }

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

.form-label {
  margin-bottom: 0.5rem; }

.col-form-label {
  padding-top: calc(0.47rem + 1px);
  padding-bottom: calc(0.47rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5; }

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.125rem; }

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.7875rem; }

.form-text {
  margin-top: 0.25rem;
  font-size: 87.5%;
  color: #74788d; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.47rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .form-control {
      transition: none; } }
  .form-control[type="file"] {
    overflow: hidden; }
    .form-control[type="file"]:not(:disabled):not([readonly]) {
      cursor: pointer; }
  .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #d3d8de;
    outline: 0;
    box-shadow: none; }
  .form-control::-webkit-date-and-time-value {
    min-width: 85px;
    height: 1.5em;
    margin: 0; }
  .form-control::-webkit-datetime-edit {
    display: block;
    padding: 0; }
  .form-control::placeholder {
    color: #74788d;
    opacity: 1; }
  .form-control:disabled {
    background-color: #f5f6f8;
    opacity: 1; }
  .form-control::file-selector-button {
    padding: 0.47rem 0.75rem;
    margin: -0.47rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #212529;
    background-color: #f5f6f8;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-control::file-selector-button {
        transition: none; } }
  .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #e9eaec; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.47rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext:focus {
    outline: 0; }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  border-radius: 0.2rem; }
  .form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem; }

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.4rem; }
  .form-control-lg::file-selector-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem; }

textarea.form-control {
  min-height: calc(1.5em + 0.94rem + 2px); }

textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px); }

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px); }

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.94rem + 2px);
  padding: 0.47rem; }
  .form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer; }
  .form-control-color::-moz-color-swatch {
    border: 0 !important;
    border-radius: 0.25rem; }
  .form-control-color::-webkit-color-swatch {
    border: 0 !important;
    border-radius: 0.25rem; }
  .form-control-color.form-control-sm {
    height: calc(1.5em + 0.5rem + 2px); }
  .form-control-color.form-control-lg {
    height: calc(1.5em + 1rem + 2px); }

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.47rem 1.75rem 0.47rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none; }
  @media (prefers-reduced-motion: reduce) {
    .form-select {
      transition: none; } }
  .form-select:focus {
    border-color: #d3d8de;
    outline: 0;
    box-shadow: 0 0 0 0.15rem rgba(213, 25, 32, 0.25); }
  .form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none; }
  .form-select:disabled {
    color: #74788d;
    background-color: #f5f6f8; }
  .form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529; }

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.7875rem;
  border-radius: 0.2rem; }

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.125rem;
  border-radius: 0.4rem; }

[data-bs-theme="dark"] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); }

.form-check {
  display: block;
  min-height: 1.35rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem; }
  .form-check .form-check-input {
    float: left;
    margin-left: -1.5em; }

.form-check-reverse {
  padding-right: 1.5em;
  padding-left: 0;
  text-align: right; }
  .form-check-reverse .form-check-input {
    float: right;
    margin-right: -1.5em;
    margin-left: 0; }

.form-check-input {
  --bs-form-check-bg: #fff;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #adb5bd;
  appearance: none;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .form-check-input {
      transition: none; } }
  .form-check-input[type="checkbox"] {
    border-radius: 0.25em; }
  .form-check-input[type="radio"] {
    border-radius: 50%; }
  .form-check-input:active {
    filter: brightness(90%); }
  .form-check-input:focus {
    border-color: #d3d8de;
    outline: 0;
    box-shadow: none; }
  .form-check-input:checked {
    background-color: #d51920;
    border-color: #d51920; }
    .form-check-input:checked[type="checkbox"] {
      --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); }
    .form-check-input:checked[type="radio"] {
      --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); }
  .form-check-input[type="checkbox"]:indeterminate {
    background-color: #d51920;
    border-color: #d51920;
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); }
  .form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5; }
  .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
    cursor: default;
    opacity: 0.5; }

.form-switch {
  padding-left: 2.5em; }
  .form-switch .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    width: 2em;
    margin-left: -2.5em;
    background-image: var(--bs-form-switch-bg);
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-switch .form-check-input {
        transition: none; } }
    .form-switch .form-check-input:focus {
      --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23d3d8de'/%3e%3c/svg%3e"); }
    .form-switch .form-check-input:checked {
      background-position: right center;
      --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }
  .form-switch.form-check-reverse {
    padding-right: 2.5em;
    padding-left: 0; }
    .form-switch.form-check-reverse .form-check-input {
      margin-right: -2.5em;
      margin-left: 0; }

.form-check-inline {
  display: inline-block;
  margin-right: 1rem; }

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }
  .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
    pointer-events: none;
    filter: none;
    opacity: 0.65; }

[data-bs-theme="dark"] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e"); }

.form-range {
  width: 100%;
  height: 1.3rem;
  padding: 0;
  background-color: transparent;
  appearance: none; }
  .form-range:focus {
    outline: 0; }
    .form-range:focus::-webkit-slider-thumb {
      box-shadow: 0 0 0 1px #f3f7fc, none; }
    .form-range:focus::-moz-range-thumb {
      box-shadow: 0 0 0 1px #f3f7fc, none; }
  .form-range::-moz-focus-outer {
    border: 0; }
  .form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #d51920;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none; } }
    .form-range::-webkit-slider-thumb:active {
      background-color: #f2babc; }
  .form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #f6f6f6;
    border-color: transparent;
    border-radius: 1rem; }
  .form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #d51920;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none; } }
    .form-range::-moz-range-thumb:active {
      background-color: #f2babc; }
  .form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #f6f6f6;
    border-color: transparent;
    border-radius: 1rem; }
  .form-range:disabled {
    pointer-events: none; }
    .form-range:disabled::-webkit-slider-thumb {
      background-color: #adb5bd; }
    .form-range:disabled::-moz-range-thumb {
      background-color: #adb5bd; }

.form-floating {
  position: relative; }
  .form-floating > .form-control,
  .form-floating > .form-control-plaintext,
  .form-floating > .form-select {
    height: calc(3.5rem + 2px);
    min-height: calc(3.5rem + 2px);
    line-height: 1.25; }
  .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    padding: 1rem 0.75rem;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-floating > label {
        transition: none; } }
  .form-floating > .form-control,
  .form-floating > .form-control-plaintext {
    padding: 1rem 0.75rem; }
    .form-floating > .form-control::placeholder,
    .form-floating > .form-control-plaintext::placeholder {
      color: transparent; }
    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
    .form-floating > .form-control-plaintext:focus,
    .form-floating > .form-control-plaintext:not(:placeholder-shown) {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
    .form-floating > .form-control:-webkit-autofill,
    .form-floating > .form-control-plaintext:-webkit-autofill {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
  .form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem; }
  .form-floating > .form-control:focus ~ label,
  .form-floating > .form-control:not(:placeholder-shown) ~ label,
  .form-floating > .form-control-plaintext ~ label,
  .form-floating > .form-select ~ label {
    color: rgba(var(--bs-body-color-rgb), 0.65);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
    .form-floating > .form-control:focus ~ label::after,
    .form-floating > .form-control:not(:placeholder-shown) ~ label::after,
    .form-floating > .form-control-plaintext ~ label::after,
    .form-floating > .form-select ~ label::after {
      position: absolute;
      inset: 1rem 0.375rem;
      z-index: -1;
      height: 1.5em;
      content: "";
      background-color: #fff;
      border-radius: 0.25rem; }
  .form-floating > .form-control:-webkit-autofill ~ label {
    color: rgba(var(--bs-body-color-rgb), 0.65);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
  .form-floating > .form-control-plaintext ~ label {
    border-width: 1px 0; }
  .form-floating > :disabled ~ label {
    color: #6c757d; }
    .form-floating > :disabled ~ label::after {
      background-color: #f5f6f8; }

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%; }
  .input-group > .form-control,
  .input-group > .form-select,
  .input-group > .form-floating {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0; }
  .input-group > .form-control:focus,
  .input-group > .form-select:focus,
  .input-group > .form-floating:focus-within {
    z-index: 5; }
  .input-group .btn {
    position: relative;
    z-index: 2; }
    .input-group .btn:focus {
      z-index: 5; }

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.47rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #f5f6f8;
  border: 1px solid #ced4da;
  border-radius: 0.25rem; }

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.4rem; }

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  border-radius: 0.2rem; }

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 2.5rem; }

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
.input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-control,
.input-group.has-validation > .form-floating:nth-last-child(n + 3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(1px * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-group > .form-floating:not(:first-child) > .form-control,
.input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 87.5%;
  color: #1dd3b0; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.4rem 0.7rem;
  margin-top: .1rem;
  font-size: 0.7875rem;
  color: #fff;
  background-color: rgba(29, 211, 176, 0.9);
  border-radius: 0.25rem; }

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #1dd3b0;
  padding-right: calc(1.5em + 0.94rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231dd3b0' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.235rem) center;
  background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem); }
  .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
    border-color: #1dd3b0;
    box-shadow: 0 0 0 0.15rem rgba(29, 211, 176, 0.25); }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.94rem);
  background-position: top calc(0.375em + 0.235rem) right calc(0.375em + 0.235rem); }

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #1dd3b0; }
  .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231dd3b0' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    padding-right: calc(0.75em + 3.205rem);
    background-position: right 0.75rem center, center right 2.5rem;
    background-size: 16px 12px, calc(0.75em + 0.47rem) calc(0.75em + 0.47rem); }
  .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
    border-color: #1dd3b0;
    box-shadow: 0 0 0 0.15rem rgba(29, 211, 176, 0.25); }

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(3rem + calc(1.5em + 0.94rem)); }

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #1dd3b0; }
  .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
    background-color: #1dd3b0; }
  .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
    box-shadow: 0 0 0 0.15rem rgba(29, 211, 176, 0.25); }
  .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #1dd3b0; }

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em; }

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .was-validated
.input-group > .form-select:not(:focus):valid,
.input-group > .form-select:not(:focus).is-valid, .was-validated
.input-group > .form-floating:not(:focus-within):valid,
.input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3; }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 87.5%;
  color: #f25c54; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.4rem 0.7rem;
  margin-top: .1rem;
  font-size: 0.7875rem;
  color: #fff;
  background-color: rgba(242, 92, 84, 0.9);
  border-radius: 0.25rem; }

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #f25c54;
  padding-right: calc(1.5em + 0.94rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f25c54'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f25c54' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.235rem) center;
  background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem); }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
    border-color: #f25c54;
    box-shadow: 0 0 0 0.15rem rgba(242, 92, 84, 0.25); }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.94rem);
  background-position: top calc(0.375em + 0.235rem) right calc(0.375em + 0.235rem); }

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #f25c54; }
  .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
    --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f25c54'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f25c54' stroke='none'/%3e%3c/svg%3e");
    padding-right: calc(0.75em + 3.205rem);
    background-position: right 0.75rem center, center right 2.5rem;
    background-size: 16px 12px, calc(0.75em + 0.47rem) calc(0.75em + 0.47rem); }
  .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
    border-color: #f25c54;
    box-shadow: 0 0 0 0.15rem rgba(242, 92, 84, 0.25); }

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(3rem + calc(1.5em + 0.94rem)); }

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #f25c54; }
  .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
    background-color: #f25c54; }
  .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0.15rem rgba(242, 92, 84, 0.25); }
  .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #f25c54; }

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em; }

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .was-validated
.input-group > .form-select:not(:focus):invalid,
.input-group > .form-select:not(:focus).is-invalid, .was-validated
.input-group > .form-floating:not(:focus-within):invalid,
.input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4; }

.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.47rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 0.9rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.25rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.15rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .btn {
      transition: none; } }
  .btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color); }
  .btn-check + .btn:hover {
    color: var(--bs-btn-color);
    background-color: var(--bs-btn-bg);
    border-color: var(--bs-btn-border-color); }
  .btn:focus-visible {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow); }
  .btn-check:focus-visible + .btn {
    border-color: var(--bs-btn-hover-border-color);
    outline: 0;
    box-shadow: var(--bs-btn-focus-box-shadow); }
  .btn-check:checked + .btn,
  :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color); }
    .btn-check:checked + .btn:focus-visible,
    :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
      box-shadow: var(--bs-btn-focus-box-shadow); }
  .btn:disabled, .btn.disabled,
  fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--bs-btn-disabled-bg);
    border-color: var(--bs-btn-disabled-border-color);
    opacity: var(--bs-btn-disabled-opacity); }

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #d51920;
  --bs-btn-border-color: #d51920;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #b5151b;
  --bs-btn-hover-border-color: #aa141a;
  --bs-btn-focus-shadow-rgb: 219, 60, 65;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #aa141a;
  --bs-btn-active-border-color: #a01318;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d51920;
  --bs-btn-disabled-border-color: #d51920; }

.btn-secondary {
  --bs-btn-color: #000;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: white;
  --bs-btn-hover-border-color: white;
  --bs-btn-focus-shadow-rgb: 217, 217, 217;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: white;
  --bs-btn-active-border-color: white;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #fff;
  --bs-btn-disabled-border-color: #fff; }

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1dd3b0;
  --bs-btn-border-color: #1dd3b0;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #19b396;
  --bs-btn-hover-border-color: #17a98d;
  --bs-btn-focus-shadow-rgb: 63, 218, 188;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #17a98d;
  --bs-btn-active-border-color: #169e84;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #1dd3b0;
  --bs-btn-disabled-border-color: #1dd3b0; }

.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d58c1;
  --bs-btn-border-color: #0d58c1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b4ba4;
  --bs-btn-hover-border-color: #0a469a;
  --bs-btn-focus-shadow-rgb: 49, 113, 202;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a469a;
  --bs-btn-active-border-color: #0a4291;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d58c1;
  --bs-btn-disabled-border-color: #0d58c1; }

.btn-warning {
  --bs-btn-color: #fff;
  --bs-btn-bg: #f1b44c;
  --bs-btn-border-color: #f1b44c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #cd9941;
  --bs-btn-hover-border-color: #c1903d;
  --bs-btn-focus-shadow-rgb: 243, 191, 103;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c1903d;
  --bs-btn-active-border-color: #b58739;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f1b44c;
  --bs-btn-disabled-border-color: #f1b44c; }

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #f25c54;
  --bs-btn-border-color: #f25c54;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ce4e47;
  --bs-btn-hover-border-color: #c24a43;
  --bs-btn-focus-shadow-rgb: 244, 116, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #c24a43;
  --bs-btn-active-border-color: #b6453f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f25c54;
  --bs-btn-disabled-border-color: #f25c54; }

.btn-pink {
  --bs-btn-color: #fff;
  --bs-btn-bg: #e83e8c;
  --bs-btn-border-color: #e83e8c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c53577;
  --bs-btn-hover-border-color: #ba3270;
  --bs-btn-focus-shadow-rgb: 235, 91, 157;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ba3270;
  --bs-btn-active-border-color: #ae2f69;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #e83e8c;
  --bs-btn-disabled-border-color: #e83e8c; }

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f5f6f8;
  --bs-btn-border-color: #f5f6f8;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d0d1d3;
  --bs-btn-hover-border-color: #c4c5c6;
  --bs-btn-focus-shadow-rgb: 208, 209, 211;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c4c5c6;
  --bs-btn-active-border-color: #b8b9ba;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f5f6f8;
  --bs-btn-disabled-border-color: #f5f6f8; }

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #343a40;
  --bs-btn-border-color: #343a40;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #52585d;
  --bs-btn-hover-border-color: #484e53;
  --bs-btn-focus-shadow-rgb: 82, 88, 93;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #5d6166;
  --bs-btn-active-border-color: #484e53;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #343a40;
  --bs-btn-disabled-border-color: #343a40; }

.btn-purple {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6f42c1;
  --bs-btn-border-color: #6f42c1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5e38a4;
  --bs-btn-hover-border-color: #59359a;
  --bs-btn-focus-shadow-rgb: 133, 94, 202;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #59359a;
  --bs-btn-active-border-color: #533291;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6f42c1;
  --bs-btn-disabled-border-color: #6f42c1; }

.btn-outline-primary {
  --bs-btn-color: #d51920;
  --bs-btn-border-color: #d51920;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #d51920;
  --bs-btn-hover-border-color: #d51920;
  --bs-btn-focus-shadow-rgb: 213, 25, 32;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #d51920;
  --bs-btn-active-border-color: #d51920;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #d51920;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #d51920;
  --bs-gradient: none; }

.btn-outline-secondary {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-focus-shadow-rgb: 255, 255, 255;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #fff;
  --bs-btn-active-border-color: #fff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #fff;
  --bs-gradient: none; }

.btn-outline-success {
  --bs-btn-color: #1dd3b0;
  --bs-btn-border-color: #1dd3b0;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1dd3b0;
  --bs-btn-hover-border-color: #1dd3b0;
  --bs-btn-focus-shadow-rgb: 29, 211, 176;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1dd3b0;
  --bs-btn-active-border-color: #1dd3b0;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #1dd3b0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #1dd3b0;
  --bs-gradient: none; }

.btn-outline-info {
  --bs-btn-color: #0d58c1;
  --bs-btn-border-color: #0d58c1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d58c1;
  --bs-btn-hover-border-color: #0d58c1;
  --bs-btn-focus-shadow-rgb: 13, 88, 193;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d58c1;
  --bs-btn-active-border-color: #0d58c1;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d58c1;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d58c1;
  --bs-gradient: none; }

.btn-outline-warning {
  --bs-btn-color: #f1b44c;
  --bs-btn-border-color: #f1b44c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f1b44c;
  --bs-btn-hover-border-color: #f1b44c;
  --bs-btn-focus-shadow-rgb: 241, 180, 76;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #f1b44c;
  --bs-btn-active-border-color: #f1b44c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f1b44c;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f1b44c;
  --bs-gradient: none; }

.btn-outline-danger {
  --bs-btn-color: #f25c54;
  --bs-btn-border-color: #f25c54;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #f25c54;
  --bs-btn-hover-border-color: #f25c54;
  --bs-btn-focus-shadow-rgb: 242, 92, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #f25c54;
  --bs-btn-active-border-color: #f25c54;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f25c54;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f25c54;
  --bs-gradient: none; }

.btn-outline-pink {
  --bs-btn-color: #e83e8c;
  --bs-btn-border-color: #e83e8c;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #e83e8c;
  --bs-btn-hover-border-color: #e83e8c;
  --bs-btn-focus-shadow-rgb: 232, 62, 140;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #e83e8c;
  --bs-btn-active-border-color: #e83e8c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e83e8c;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e83e8c;
  --bs-gradient: none; }

.btn-outline-light {
  --bs-btn-color: #f5f6f8;
  --bs-btn-border-color: #f5f6f8;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f5f6f8;
  --bs-btn-hover-border-color: #f5f6f8;
  --bs-btn-focus-shadow-rgb: 245, 246, 248;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f5f6f8;
  --bs-btn-active-border-color: #f5f6f8;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #f5f6f8;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f5f6f8;
  --bs-gradient: none; }

.btn-outline-dark {
  --bs-btn-color: #343a40;
  --bs-btn-border-color: #343a40;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #343a40;
  --bs-btn-hover-border-color: #343a40;
  --bs-btn-focus-shadow-rgb: 52, 58, 64;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #343a40;
  --bs-btn-active-border-color: #343a40;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #343a40;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #343a40;
  --bs-gradient: none; }

.btn-outline-purple {
  --bs-btn-color: #6f42c1;
  --bs-btn-border-color: #6f42c1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6f42c1;
  --bs-btn-hover-border-color: #6f42c1;
  --bs-btn-focus-shadow-rgb: 111, 66, 193;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6f42c1;
  --bs-btn-active-border-color: #6f42c1;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6f42c1;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6f42c1;
  --bs-gradient: none; }

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: #d51920;
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #911116;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: #911116;
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #74788d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 219, 60, 65;
  text-decoration: none; }
  .btn-link:focus-visible {
    color: var(--bs-btn-color); }
  .btn-link:hover {
    color: var(--bs-btn-hover-color); }

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.125rem;
  --bs-btn-border-radius: 0.4rem; }

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: 0.25rem;
  --bs-btn-padding-x: 0.5rem;
  --bs-btn-font-size: 0.7875rem;
  --bs-btn-border-radius: 0.2rem; }

.fade {
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }
  .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .collapsing.collapse-horizontal {
        transition: none; } }

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative; }

.dropdown-toggle {
  white-space: nowrap; }

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 0.9rem;
  --bs-dropdown-color: #212529;
  --bs-dropdown-bg: #fff;
  --bs-dropdown-border-color: rgba(0, 0, 0, 0.15);
  --bs-dropdown-border-radius: 0.25rem;
  --bs-dropdown-border-width: 0;
  --bs-dropdown-inner-border-radius: 0.25rem;
  --bs-dropdown-divider-bg: rgba(0, 0, 0, 0.15);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  --bs-dropdown-link-color: #212529;
  --bs-dropdown-link-hover-color: #2c3034;
  --bs-dropdown-link-hover-bg: #fbfbfb;
  --bs-dropdown-link-active-color: #2c3034;
  --bs-dropdown-link-active-bg: #fbfbfb;
  --bs-dropdown-link-disabled-color: #74788d;
  --bs-dropdown-item-padding-x: 1.5rem;
  --bs-dropdown-item-padding-y: 0.35rem;
  --bs-dropdown-header-color: #74788d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius); }
  .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: var(--bs-dropdown-spacer); }

.dropdown-menu-start {
  --bs-position: start; }
  .dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0; }

.dropdown-menu-end {
  --bs-position: end; }
  .dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto; }

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start; }
    .dropdown-menu-sm-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-sm-end {
    --bs-position: end; }
    .dropdown-menu-sm-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start; }
    .dropdown-menu-md-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-md-end {
    --bs-position: end; }
    .dropdown-menu-md-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start; }
    .dropdown-menu-lg-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-lg-end {
    --bs-position: end; }
    .dropdown-menu-lg-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start; }
    .dropdown-menu-xl-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-xl-end {
    --bs-position: end; }
    .dropdown-menu-xl-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start; }
    .dropdown-menu-xxl-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-xxl-end {
    --bs-position: end; }
    .dropdown-menu-xxl-end[data-bs-popper] {
      right: 0;
      left: auto; } }

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer); }

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer); }

.dropend .dropdown-toggle::after {
  vertical-align: 0; }

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer); }

.dropstart .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0); }
  .dropdown-item:hover, .dropdown-item:focus {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg); }
  .dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg); }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
    background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.7875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap; }

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color); }

.dropdown-menu-dark {
  --bs-dropdown-color: #f6f6f6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: rgba(0, 0, 0, 0.15);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #f6f6f6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #2c3034;
  --bs-dropdown-link-active-bg: #fbfbfb;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    flex: 1 1 auto; }
  .btn-group > .btn-check:checked + .btn,
  .btn-group > .btn-check:focus + .btn,
  .btn-group > .btn:hover,
  .btn-group > .btn:focus,
  .btn-group > .btn:active,
  .btn-group > .btn.active,
  .btn-group-vertical > .btn-check:checked + .btn,
  .btn-group-vertical > .btn-check:focus + .btn,
  .btn-group-vertical > .btn:hover,
  .btn-group-vertical > .btn:focus,
  .btn-group-vertical > .btn:active,
  .btn-group-vertical > .btn.active {
    z-index: 1; }

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .btn-toolbar .input-group {
    width: auto; }

.btn-group {
  border-radius: 0.25rem; }
  .btn-group > :not(.btn-check:first-child) + .btn,
  .btn-group > .btn-group:not(:first-child) {
    margin-left: calc(1px * -1); }
  .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  .btn-group > .btn.dropdown-toggle-split:first-child,
  .btn-group > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .btn-group > .btn:nth-child(n + 3),
  .btn-group > :not(.btn-check) + .btn,
  .btn-group > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem; }
  .dropdown-toggle-split::after,
  .dropup .dropdown-toggle-split::after,
  .dropend .dropdown-toggle-split::after {
    margin-left: 0; }
  .dropstart .dropdown-toggle-split::before {
    margin-right: 0; }

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem; }

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }
  .btn-group-vertical > .btn,
  .btn-group-vertical > .btn-group {
    width: 100%; }
  .btn-group-vertical > .btn:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: calc(1px * -1); }
  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  .btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .btn-group-vertical > .btn ~ .btn,
  .btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: #74788d;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .nav-link {
      transition: none; } }
  .nav-link:hover, .nav-link:focus {
    color: var(--bs-nav-link-hover-color); }
  .nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); }
  .nav-link.disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default; }

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color); }
  .nav-tabs .nav-link {
    margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
    border: var(--bs-nav-tabs-border-width) solid transparent;
    border-top-left-radius: var(--bs-nav-tabs-border-radius);
    border-top-right-radius: var(--bs-nav-tabs-border-radius); }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
      isolation: isolate;
      border-color: var(--bs-nav-tabs-link-hover-border-color); }
    .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
      color: var(--bs-nav-link-disabled-color);
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: var(--bs-nav-tabs-link-active-color);
    background-color: var(--bs-nav-tabs-link-active-bg);
    border-color: var(--bs-nav-tabs-link-active-border-color); }
  .nav-tabs .dropdown-menu {
    margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd; }
  .nav-pills .nav-link {
    border-radius: var(--bs-nav-pills-border-radius); }
    .nav-pills .nav-link:disabled {
      color: var(--bs-nav-link-disabled-color);
      background-color: transparent;
      border-color: transparent; }
  .nav-pills .nav-link.active,
  .nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: var(--bs-nav-pills-link-active-bg); }

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap); }
  .nav-underline .nav-link {
    padding-right: 0;
    padding-left: 0;
    border-bottom: var(--bs-nav-underline-border-width) solid transparent; }
    .nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
      border-bottom-color: currentcolor; }
  .nav-underline .nav-link.active,
  .nav-underline .show > .nav-link {
    font-weight: 600;
    color: var(--bs-nav-underline-link-active-color);
    border-bottom-color: currentcolor; }

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center; }

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center; }

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(0, 0, 0, 0.55);
  --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-padding-y: 0.33125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.125rem;
  --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.125rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  --bs-navbar-toggler-border-radius: 0.25rem;
  --bs-navbar-toggler-focus-width: 0.15rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x); }
  .navbar > .container,
  .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  white-space: nowrap; }
  .navbar-brand:hover, .navbar-brand:focus {
    color: var(--bs-navbar-brand-hover-color); }

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--bs-navbar-active-color); }
  .navbar-nav .dropdown-menu {
    position: static; }

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color); }
  .navbar-text a,
  .navbar-text a:hover,
  .navbar-text a:focus {
    color: var(--bs-navbar-active-color); }

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center; }

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition); }
  @media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
      transition: none; } }
  .navbar-toggler:hover {
    text-decoration: none; }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width); }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%; }

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto; }

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-sm .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; }
    .navbar-expand-sm .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-sm .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-sm .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-md .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; }
    .navbar-expand-md .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-md .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-md .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-lg .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; }
    .navbar-expand-lg .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-lg .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-lg .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-xl .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-xl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; }
    .navbar-expand-xl .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-xl .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-xl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xxl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x); }
    .navbar-expand-xxl .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-xxl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xxl .navbar-toggler {
      display: none; }
    .navbar-expand-xxl .offcanvas {
      position: static;
      z-index: auto;
      flex-grow: 1;
      width: auto !important;
      height: auto !important;
      visibility: visible !important;
      background-color: transparent !important;
      border: 0 !important;
      transform: none !important;
      transition: none; }
      .navbar-expand-xxl .offcanvas .offcanvas-header {
        display: none; }
      .navbar-expand-xxl .offcanvas .offcanvas-body {
        display: flex;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible; } }

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start; }
  .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
      position: absolute; }
    .navbar-expand .navbar-nav .nav-link {
      padding-right: var(--bs-navbar-nav-link-padding-x);
      padding-left: var(--bs-navbar-nav-link-padding-x); }
  .navbar-expand .navbar-nav-scroll {
    overflow: visible; }
  .navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
  .navbar-expand .navbar-toggler {
    display: none; }
  .navbar-expand .offcanvas {
    position: static;
    z-index: auto;
    flex-grow: 1;
    width: auto !important;
    height: auto !important;
    visibility: visible !important;
    background-color: transparent !important;
    border: 0 !important;
    transform: none !important;
    transition: none; }
    .navbar-expand .offcanvas .offcanvas-header {
      display: none; }
    .navbar-expand .offcanvas .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; }

.navbar-dark,
.navbar[data-bs-theme="dark"] {
  --bs-navbar-color: rgba(255, 255, 255, 0.55);
  --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

[data-bs-theme="dark"] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.card {
  --bs-card-spacer-y: 1.25rem;
  --bs-card-spacer-x: 1.25rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: #f6f6f6;
  --bs-card-border-radius: 0.25rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: 0.25rem;
  --bs-card-cap-padding-y: 0.75rem;
  --bs-card-cap-padding-x: 1.25rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #fff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.625rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius); }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: var(--bs-card-inner-border-radius);
      border-top-right-radius: var(--bs-card-inner-border-radius); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: var(--bs-card-inner-border-radius);
      border-bottom-left-radius: var(--bs-card-inner-border-radius); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color); }

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color); }

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0;
  color: var(--bs-card-subtitle-color); }

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

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x); }

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; }

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); }

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0; }
  .card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg); }

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x)); }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius); }

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin); }

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: transparent;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: rgba(0, 0, 0, 0.125);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.25rem;
  --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 16px;
  --bs-accordion-btn-icon-transform: rotate(180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c0171d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #d3d8de;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #c0171d;
  --bs-accordion-active-bg: #fbe8e9; }

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 0.9rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition); }
  @media (prefers-reduced-motion: reduce) {
    .accordion-button {
      transition: none; } }
  .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color); }
    .accordion-button:not(.collapsed)::after {
      background-image: var(--bs-accordion-btn-active-icon);
      transform: var(--bs-accordion-btn-icon-transform); }
  .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition); }
    @media (prefers-reduced-motion: reduce) {
      .accordion-button::after {
        transition: none; } }
  .accordion-button:hover {
    z-index: 2; }
  .accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow); }

.accordion-header {
  margin-bottom: 0; }

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color); }
  .accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius); }
    .accordion-item:first-of-type .accordion-button {
      border-top-left-radius: var(--bs-accordion-inner-border-radius);
      border-top-right-radius: var(--bs-accordion-inner-border-radius); }
  .accordion-item:not(:first-of-type) {
    border-top: 0; }
  .accordion-item:last-of-type {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius); }
    .accordion-item:last-of-type .accordion-button.collapsed {
      border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
      border-bottom-left-radius: var(--bs-accordion-inner-border-radius); }
    .accordion-item:last-of-type .accordion-collapse {
      border-bottom-right-radius: var(--bs-accordion-border-radius);
      border-bottom-left-radius: var(--bs-accordion-border-radius); }

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); }

.accordion-flush .accordion-collapse {
  border-width: 0; }

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0; }
  .accordion-flush .accordion-item:first-child {
    border-top: 0; }
  .accordion-flush .accordion-item:last-child {
    border-bottom: 0; }
  .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0; }

[data-bs-theme="dark"] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e67579'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e67579'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: #74788d;
  --bs-breadcrumb-item-padding-x: 0.5rem;
  --bs-breadcrumb-item-active-color: #74788d;
  display: flex;
  flex-wrap: wrap;
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  list-style: none;
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius); }

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x); }
  .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */; }

.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color); }

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: #74788d;
  --bs-pagination-bg: #fff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #ced4da;
  --bs-pagination-border-radius: 0.25rem;
  --bs-pagination-hover-color: #911116;
  --bs-pagination-hover-bg: #f5f6f8;
  --bs-pagination-hover-border-color: #ced4da;
  --bs-pagination-focus-color: #911116;
  --bs-pagination-focus-bg: #f5f6f8;
  --bs-pagination-focus-box-shadow: 0 0 0 0.15rem rgba(213, 25, 32, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #d51920;
  --bs-pagination-active-border-color: #d51920;
  --bs-pagination-disabled-color: #ced4da;
  --bs-pagination-disabled-bg: #fff;
  --bs-pagination-disabled-border-color: #ced4da;
  display: flex;
  padding-left: 0;
  list-style: none; }

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .page-link {
      transition: none; } }
  .page-link:hover {
    z-index: 2;
    color: var(--bs-pagination-hover-color);
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color); }
  .page-link:focus {
    z-index: 3;
    color: var(--bs-pagination-focus-color);
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: var(--bs-pagination-focus-box-shadow); }
  .page-link.active,
  .active > .page-link {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-border-color); }
  .page-link.disabled,
  .disabled > .page-link {
    color: var(--bs-pagination-disabled-color);
    pointer-events: none;
    background-color: var(--bs-pagination-disabled-bg);
    border-color: var(--bs-pagination-disabled-border-color); }

.page-item:not(:first-child) .page-link {
  margin-left: -1px; }

.page-item .page-link {
  border-radius: var(--bs-pagination-border-radius); }

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: 0.75rem;
  --bs-pagination-font-size: 1.125rem;
  --bs-pagination-border-radius: 0.4rem; }

.pagination-sm {
  --bs-pagination-padding-x: 0.5rem;
  --bs-pagination-padding-y: 0.25rem;
  --bs-pagination-font-size: 0.7875rem;
  --bs-pagination-border-radius: 0.2rem; }

.badge {
  --bs-badge-padding-x: 0.4em;
  --bs-badge-padding-y: 0.25em;
  --bs-badge-font-size: 75%;
  --bs-badge-font-weight: 500;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.25rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius); }
  .badge:empty {
    display: none; }

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

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1.25rem;
  --bs-alert-padding-y: 0.75rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: 1px solid var(--bs-alert-border-color);
  --bs-alert-border-radius: 0.25rem;
  --bs-alert-link-color: inherit;
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius); }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: 600;
  color: var(--bs-alert-link-color); }

.alert-dismissible {
  padding-right: 3.75rem; }
  .alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.9375rem 1.25rem; }

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis); }

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis); }

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis); }

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis); }

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis); }

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis); }

.alert-pink {
  --bs-alert-color: var(--bs-pink-text-emphasis);
  --bs-alert-bg: var(--bs-pink-bg-subtle);
  --bs-alert-border-color: var(--bs-pink-border-subtle);
  --bs-alert-link-color: var(--bs-pink-text-emphasis); }

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis); }

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis); }

.alert-purple {
  --bs-alert-color: var(--bs-purple-text-emphasis);
  --bs-alert-bg: var(--bs-purple-bg-subtle);
  --bs-alert-border-color: var(--bs-purple-border-subtle);
  --bs-alert-link-color: var(--bs-purple-text-emphasis); }

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 0.625rem; } }

.progress,
.progress-stacked {
  --bs-progress-height: 0.625rem;
  --bs-progress-font-size: 0.675rem;
  --bs-progress-bg: #f5f6f8;
  --bs-progress-border-radius: 0.25rem;
  --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #d51920;
  --bs-progress-bar-transition: width 0.6s ease;
  display: flex;
  height: var(--bs-progress-height);
  overflow: hidden;
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius); }

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition); }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none; } }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height); }

.progress-stacked > .progress {
  overflow: visible; }

.progress-stacked > .progress > .progress-bar {
  width: 100%; }

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
      animation: none; } }

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: #fff;
  --bs-list-group-border-color: #f5f6f8;
  --bs-list-group-border-width: 1px;
  --bs-list-group-border-radius: 0.25rem;
  --bs-list-group-item-padding-x: 1.25rem;
  --bs-list-group-item-padding-y: 0.75rem;
  --bs-list-group-action-color: #495057;
  --bs-list-group-action-hover-color: #495057;
  --bs-list-group-action-hover-bg: #fbfbfb;
  --bs-list-group-action-active-color: #212529;
  --bs-list-group-action-active-bg: #f5f6f8;
  --bs-list-group-disabled-color: #74788d;
  --bs-list-group-disabled-bg: #fff;
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #d51920;
  --bs-list-group-active-border-color: #d51920;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius); }

.list-group-numbered {
  list-style-type: none;
  counter-reset: section; }
  .list-group-numbered > .list-group-item::before {
    content: counters(section, ".") ". ";
    counter-increment: section; }

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit; }
  .list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: var(--bs-list-group-action-hover-color);
    text-decoration: none;
    background-color: var(--bs-list-group-action-hover-bg); }
  .list-group-item-action:active {
    color: var(--bs-list-group-action-active-color);
    background-color: var(--bs-list-group-action-active-bg); }

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color); }
  .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit; }
  .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: var(--bs-list-group-disabled-color);
    pointer-events: none;
    background-color: var(--bs-list-group-disabled-bg); }
  .list-group-item.active {
    z-index: 2;
    color: var(--bs-list-group-active-color);
    background-color: var(--bs-list-group-active-bg);
    border-color: var(--bs-list-group-active-border-color); }
  .list-group-item + .list-group-item {
    border-top-width: 0; }
    .list-group-item + .list-group-item.active {
      margin-top: calc(-1 * var(--bs-list-group-border-width));
      border-top-width: var(--bs-list-group-border-width); }

.list-group-horizontal {
  flex-direction: row; }
  .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0; }
  .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0; }
  .list-group-horizontal > .list-group-item.active {
    margin-top: 0; }
  .list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0; }
    .list-group-horizontal > .list-group-item + .list-group-item.active {
      margin-left: calc(-1 * var(--bs-list-group-border-width));
      border-left-width: var(--bs-list-group-border-width); }

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row; }
    .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
      border-bottom-left-radius: var(--bs-list-group-border-radius);
      border-top-right-radius: 0; }
    .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
      border-top-right-radius: var(--bs-list-group-border-radius);
      border-bottom-left-radius: 0; }
    .list-group-horizontal-sm > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-sm > .list-group-item + .list-group-item {
      border-top-width: var(--bs-list-group-border-width);
      border-left-width: 0; }
      .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width); } }

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row; }
    .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
      border-bottom-left-radius: var(--bs-list-group-border-radius);
      border-top-right-radius: 0; }
    .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
      border-top-right-radius: var(--bs-list-group-border-radius);
      border-bottom-left-radius: 0; }
    .list-group-horizontal-md > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-md > .list-group-item + .list-group-item {
      border-top-width: var(--bs-list-group-border-width);
      border-left-width: 0; }
      .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width); } }

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row; }
    .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
      border-bottom-left-radius: var(--bs-list-group-border-radius);
      border-top-right-radius: 0; }
    .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
      border-top-right-radius: var(--bs-list-group-border-radius);
      border-bottom-left-radius: 0; }
    .list-group-horizontal-lg > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-lg > .list-group-item + .list-group-item {
      border-top-width: var(--bs-list-group-border-width);
      border-left-width: 0; }
      .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width); } }

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row; }
    .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
      border-bottom-left-radius: var(--bs-list-group-border-radius);
      border-top-right-radius: 0; }
    .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
      border-top-right-radius: var(--bs-list-group-border-radius);
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xl > .list-group-item + .list-group-item {
      border-top-width: var(--bs-list-group-border-width);
      border-left-width: 0; }
      .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width); } }

@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row; }
    .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
      border-bottom-left-radius: var(--bs-list-group-border-radius);
      border-top-right-radius: 0; }
    .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
      border-top-right-radius: var(--bs-list-group-border-radius);
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xxl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xxl > .list-group-item + .list-group-item {
      border-top-width: var(--bs-list-group-border-width);
      border-left-width: 0; }
      .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
        margin-left: calc(-1 * var(--bs-list-group-border-width));
        border-left-width: var(--bs-list-group-border-width); } }

.list-group-flush {
  border-radius: 0; }
  .list-group-flush > .list-group-item {
    border-width: 0 0 var(--bs-list-group-border-width); }
    .list-group-flush > .list-group-item:last-child {
      border-bottom-width: 0; }

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis); }

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis); }

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis); }

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis); }

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis); }

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis); }

.list-group-item-pink {
  --bs-list-group-color: var(--bs-pink-text-emphasis);
  --bs-list-group-bg: var(--bs-pink-bg-subtle);
  --bs-list-group-border-color: var(--bs-pink-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-pink-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-pink-border-subtle);
  --bs-list-group-active-color: var(--bs-pink-bg-subtle);
  --bs-list-group-active-bg: var(--bs-pink-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-pink-text-emphasis); }

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis); }

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis); }

.list-group-item-purple {
  --bs-list-group-color: var(--bs-purple-text-emphasis);
  --bs-list-group-bg: var(--bs-purple-bg-subtle);
  --bs-list-group-border-color: var(--bs-purple-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-purple-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-purple-border-subtle);
  --bs-list-group-active-color: var(--bs-purple-bg-subtle);
  --bs-list-group-active-bg: var(--bs-purple-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-purple-text-emphasis); }

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: 0.5;
  --bs-btn-close-hover-opacity: 0.75;
  --bs-btn-close-focus-shadow: none;
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: 0.25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: var(--bs-btn-close-opacity); }
  .btn-close:hover {
    color: var(--bs-btn-close-color);
    text-decoration: none;
    opacity: var(--bs-btn-close-hover-opacity); }
  .btn-close:focus {
    outline: 0;
    box-shadow: var(--bs-btn-close-focus-shadow);
    opacity: var(--bs-btn-close-focus-opacity); }
  .btn-close:disabled, .btn-close.disabled {
    pointer-events: none;
    -webkit-user-select: none;
            user-select: none;
    opacity: var(--bs-btn-close-disabled-opacity); }

.btn-close-white {
  filter: var(--bs-btn-close-white-filter); }

[data-bs-theme="dark"] .btn-close {
  filter: var(--bs-btn-close-white-filter); }

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: 0.75rem;
  --bs-toast-padding-y: 0.5rem;
  --bs-toast-spacing: 0.625rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: 0.875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-border-width: 1px;
  --bs-toast-border-color: rgba(0, 0, 0, 0.1);
  --bs-toast-border-radius: 0.25rem;
  --bs-toast-box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  --bs-toast-header-color: #74788d;
  --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  background-clip: padding-box;
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius); }
  .toast.showing {
    opacity: 0; }
  .toast:not(.show) {
    display: none; }

.toast-container {
  --bs-toast-zindex: 1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none; }
  .toast-container > :not(:last-child) {
    margin-bottom: var(--bs-toast-spacing); }

.toast-header {
  display: flex;
  align-items: center;
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  background-clip: padding-box;
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width)); }
  .toast-header .btn-close {
    margin-right: calc(-.5 * var(--bs-toast-padding-x));
    margin-left: var(--bs-toast-padding-x); }

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word; }

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: #f6f6f6;
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.4rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.4rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: #f5f6f8;
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: #f5f6f8;
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -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 {
  height: calc(100% - var(--bs-modal-margin) * 2); }
  .modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2); }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0; }

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg); }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity); }

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius); }
  .modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto; }

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height); }

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding); }

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius); }
  .modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * .5); }

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto; }
  .modal-sm {
    --bs-modal-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px; } }

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

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0; }
  .modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0; }
  .modal-fullscreen .modal-header,
  .modal-fullscreen .modal-footer {
    border-radius: 0; }
  .modal-fullscreen .modal-body {
    overflow-y: auto; }

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-header,
    .modal-fullscreen-sm-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto; } }

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-header,
    .modal-fullscreen-md-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-body {
      overflow-y: auto; } }

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-header,
    .modal-fullscreen-lg-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto; } }

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-header,
    .modal-fullscreen-xl-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-body {
      overflow-y: auto; } }

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xxl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-header,
    .modal-fullscreen-xxl-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-body {
      overflow-y: auto; } }

.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 0.7rem;
  --bs-tooltip-padding-y: 0.4rem;
  --bs-tooltip-margin: 0;
  --bs-tooltip-font-size: 0.7875rem;
  --bs-tooltip-color: #fff;
  --bs-tooltip-bg: #000;
  --bs-tooltip-border-radius: 0.25rem;
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  margin: var(--bs-tooltip-margin);
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: var(--bs-tooltip-opacity); }
  .tooltip .tooltip-arrow {
    display: block;
    width: var(--bs-tooltip-arrow-width);
    height: var(--bs-tooltip-arrow-height); }
    .tooltip .tooltip-arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height)); }
  .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
    top: -1px;
    border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
    border-top-color: var(--bs-tooltip-bg); }

/* rtl:begin:ignore */
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width); }
  .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
    right: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
    border-right-color: var(--bs-tooltip-bg); }

/* rtl:end:ignore */
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height)); }
  .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
    border-bottom-color: var(--bs-tooltip-bg); }

/* rtl:begin:ignore */
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width); }
  .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
    left: -1px;
    border-width: calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
    border-left-color: var(--bs-tooltip-bg); }

/* rtl:end:ignore */
.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius); }

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: 0.7875rem;
  --bs-popover-bg: #fff;
  --bs-popover-border-width: 1px;
  --bs-popover-border-color: rgba(0, 0, 0, 0.1);
  --bs-popover-border-radius: 0.4rem;
  --bs-popover-inner-border-radius: calc(0.4rem - 1px);
  --bs-popover-box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  --bs-popover-header-padding-x: 0.75rem;
  --bs-popover-header-padding-y: 0.5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: #f0f0f0;
  --bs-popover-body-padding-x: 0.75rem;
  --bs-popover-body-padding-y: 0.5rem;
  --bs-popover-body-color: #212529;
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: 0.5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  display: block;
  max-width: var(--bs-popover-max-width);
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  background-clip: padding-box;
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius); }
  .popover .popover-arrow {
    display: block;
    width: var(--bs-popover-arrow-width);
    height: var(--bs-popover-arrow-height); }
    .popover .popover-arrow::before, .popover .popover-arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid;
      border-width: 0; }

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); }
  .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
    border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0; }
  .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
    bottom: 0;
    border-top-color: var(--bs-popover-arrow-border); }
  .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
    bottom: var(--bs-popover-border-width);
    border-top-color: var(--bs-popover-bg); }

/* rtl:begin:ignore */
.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width); }
  .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
    border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0; }
  .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
    left: 0;
    border-right-color: var(--bs-popover-arrow-border); }
  .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
    left: var(--bs-popover-border-width);
    border-right-color: var(--bs-popover-bg); }

/* rtl:end:ignore */
.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width)); }
  .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
    border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height); }
  .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
    top: 0;
    border-bottom-color: var(--bs-popover-arrow-border); }
  .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
    top: var(--bs-popover-border-width);
    border-bottom-color: var(--bs-popover-bg); }

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg); }

/* rtl:begin:ignore */
.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width); }
  .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
    border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height); }
  .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
    right: 0;
    border-left-color: var(--bs-popover-arrow-border); }
  .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
    right: var(--bs-popover-border-width);
    border-left-color: var(--bs-popover-bg); }

/* rtl:end:ignore */
.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color); }

.carousel {
  position: relative; }

.carousel.pointer-event {
  touch-action: pan-y; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner::after {
    display: block;
    clear: both;
    content: ""; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-item {
      transition: none; } }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%); }

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%); }

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none; }

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1; }

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
      transition: none; } }

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
      transition: none; } }
  .carousel-control-prev:hover, .carousel-control-prev:focus,
  .carousel-control-next:hover,
  .carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%; }

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%; }
  .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
      .carousel-indicators [data-bs-target] {
        transition: none; } }
  .carousel-indicators .active {
    opacity: 1; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center; }

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100); }

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000; }

.carousel-dark .carousel-caption {
  color: #000; }

[data-bs-theme="dark"] .carousel .carousel-control-prev-icon,
[data-bs-theme="dark"] .carousel .carousel-control-next-icon, [data-bs-theme="dark"].carousel .carousel-control-prev-icon,
[data-bs-theme="dark"].carousel .carousel-control-next-icon {
  filter: invert(1) grayscale(100); }

[data-bs-theme="dark"] .carousel .carousel-indicators [data-bs-target], [data-bs-theme="dark"].carousel .carousel-indicators [data-bs-target] {
  background-color: #000; }

[data-bs-theme="dark"] .carousel .carousel-caption, [data-bs-theme="dark"].carousel .carousel-caption {
  color: #000; }

.spinner-grow,
.spinner-border {
  display: inline-block;
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  border-radius: 50%;
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name); }

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */; } }

.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 0.25em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent; }

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: 0.2em; }

@keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1;
    transform: none; } }

.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-grow;
  background-color: currentcolor;
  opacity: 0; }

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem; }

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    --bs-spinner-animation-speed: 1.5s; } }

.offcanvas-sm, .offcanvas-md, .offcanvas-lg, .offcanvas-xl, .offcanvas-xxl, .offcanvas {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-width: 1px;
  --bs-offcanvas-border-color: #f6f6f6;
  --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-offcanvas-transition: transform 0.3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5; }

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition); } }
  @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-sm {
      transition: none; } }

@media (max-width: 575.98px) {
    .offcanvas-sm.offcanvas-start {
      top: 0;
      left: 0;
      width: var(--bs-offcanvas-width);
      border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(-100%); }
    .offcanvas-sm.offcanvas-end {
      top: 0;
      right: 0;
      width: var(--bs-offcanvas-width);
      border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(100%); }
    .offcanvas-sm.offcanvas-top {
      top: 0;
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(-100%); }
    .offcanvas-sm.offcanvas-bottom {
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(100%); }
    .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
      transform: none; }
    .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
      visibility: visible; } }

@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important; }
    .offcanvas-sm .offcanvas-header {
      display: none; }
    .offcanvas-sm .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible;
      background-color: transparent !important; } }

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition); } }
  @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-md {
      transition: none; } }

@media (max-width: 767.98px) {
    .offcanvas-md.offcanvas-start {
      top: 0;
      left: 0;
      width: var(--bs-offcanvas-width);
      border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(-100%); }
    .offcanvas-md.offcanvas-end {
      top: 0;
      right: 0;
      width: var(--bs-offcanvas-width);
      border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(100%); }
    .offcanvas-md.offcanvas-top {
      top: 0;
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(-100%); }
    .offcanvas-md.offcanvas-bottom {
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(100%); }
    .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
      transform: none; }
    .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
      visibility: visible; } }

@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important; }
    .offcanvas-md .offcanvas-header {
      display: none; }
    .offcanvas-md .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible;
      background-color: transparent !important; } }

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition); } }
  @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-lg {
      transition: none; } }

@media (max-width: 991.98px) {
    .offcanvas-lg.offcanvas-start {
      top: 0;
      left: 0;
      width: var(--bs-offcanvas-width);
      border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(-100%); }
    .offcanvas-lg.offcanvas-end {
      top: 0;
      right: 0;
      width: var(--bs-offcanvas-width);
      border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(100%); }
    .offcanvas-lg.offcanvas-top {
      top: 0;
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(-100%); }
    .offcanvas-lg.offcanvas-bottom {
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(100%); }
    .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
      transform: none; }
    .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
      visibility: visible; } }

@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important; }
    .offcanvas-lg .offcanvas-header {
      display: none; }
    .offcanvas-lg .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible;
      background-color: transparent !important; } }

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition); } }
  @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-xl {
      transition: none; } }

@media (max-width: 1199.98px) {
    .offcanvas-xl.offcanvas-start {
      top: 0;
      left: 0;
      width: var(--bs-offcanvas-width);
      border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(-100%); }
    .offcanvas-xl.offcanvas-end {
      top: 0;
      right: 0;
      width: var(--bs-offcanvas-width);
      border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(100%); }
    .offcanvas-xl.offcanvas-top {
      top: 0;
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(-100%); }
    .offcanvas-xl.offcanvas-bottom {
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(100%); }
    .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
      transform: none; }
    .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
      visibility: visible; } }

@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important; }
    .offcanvas-xl .offcanvas-header {
      display: none; }
    .offcanvas-xl .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible;
      background-color: transparent !important; } }

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition); } }
  @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
    .offcanvas-xxl {
      transition: none; } }

@media (max-width: 1399.98px) {
    .offcanvas-xxl.offcanvas-start {
      top: 0;
      left: 0;
      width: var(--bs-offcanvas-width);
      border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(-100%); }
    .offcanvas-xxl.offcanvas-end {
      top: 0;
      right: 0;
      width: var(--bs-offcanvas-width);
      border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateX(100%); }
    .offcanvas-xxl.offcanvas-top {
      top: 0;
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(-100%); }
    .offcanvas-xxl.offcanvas-bottom {
      right: 0;
      left: 0;
      height: var(--bs-offcanvas-height);
      max-height: 100%;
      border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
      transform: translateY(100%); }
    .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
      transform: none; }
    .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
      visibility: visible; } }

@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important; }
    .offcanvas-xxl .offcanvas-header {
      display: none; }
    .offcanvas-xxl .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible;
      background-color: transparent !important; } }

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: var(--bs-offcanvas-zindex);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  background-clip: padding-box;
  outline: 0;
  transition: var(--bs-offcanvas-transition); }
  @media (prefers-reduced-motion: reduce) {
    .offcanvas {
      transition: none; } }
  .offcanvas.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%); }
  .offcanvas.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%); }
  .offcanvas.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%); }
  .offcanvas.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%); }
  .offcanvas.showing, .offcanvas.show:not(.hiding) {
    transform: none; }
  .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
    visibility: visible; }

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .offcanvas-backdrop.fade {
    opacity: 0; }
  .offcanvas-backdrop.show {
    opacity: 0.5; }

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); }
  .offcanvas-header .btn-close {
    padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
    margin-top: calc(-.5 * var(--bs-offcanvas-padding-y));
    margin-right: calc(-.5 * var(--bs-offcanvas-padding-x));
    margin-bottom: calc(-.5 * var(--bs-offcanvas-padding-y)); }

.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height); }

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto; }

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentcolor;
  opacity: 0.5; }
  .placeholder.btn::before {
    display: inline-block;
    content: ""; }

.placeholder-xs {
  min-height: .6em; }

.placeholder-sm {
  min-height: .8em; }

.placeholder-lg {
  min-height: 1.2em; }

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite; }

@keyframes placeholder-glow {
  50% {
    opacity: 0.2; } }

.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite; }

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%; } }

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

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(213, 25, 32, var(--bs-bg-opacity, 1)) !important; }

.text-bg-secondary {
  color: #000 !important;
  background-color: RGBA(255, 255, 255, var(--bs-bg-opacity, 1)) !important; }

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(29, 211, 176, var(--bs-bg-opacity, 1)) !important; }

.text-bg-info {
  color: #fff !important;
  background-color: RGBA(13, 88, 193, var(--bs-bg-opacity, 1)) !important; }

.text-bg-warning {
  color: #fff !important;
  background-color: RGBA(241, 180, 76, var(--bs-bg-opacity, 1)) !important; }

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(242, 92, 84, var(--bs-bg-opacity, 1)) !important; }

.text-bg-pink {
  color: #fff !important;
  background-color: RGBA(232, 62, 140, var(--bs-bg-opacity, 1)) !important; }

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(245, 246, 248, var(--bs-bg-opacity, 1)) !important; }

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(52, 58, 64, var(--bs-bg-opacity, 1)) !important; }

.text-bg-purple {
  color: #fff !important;
  background-color: RGBA(111, 66, 193, var(--bs-bg-opacity, 1)) !important; }

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-primary:hover, .link-primary:focus {
    color: RGBA(170, 20, 26, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(170, 20, 26, var(--bs-link-underline-opacity, 1)) !important; }

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-secondary:hover, .link-secondary:focus {
    color: RGBA(255, 255, 255, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(255, 255, 255, var(--bs-link-underline-opacity, 1)) !important; }

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-success:hover, .link-success:focus {
    color: RGBA(23, 169, 141, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(23, 169, 141, var(--bs-link-underline-opacity, 1)) !important; }

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-info:hover, .link-info:focus {
    color: RGBA(10, 70, 154, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(10, 70, 154, var(--bs-link-underline-opacity, 1)) !important; }

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-warning:hover, .link-warning:focus {
    color: RGBA(193, 144, 61, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(193, 144, 61, var(--bs-link-underline-opacity, 1)) !important; }

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-danger:hover, .link-danger:focus {
    color: RGBA(194, 74, 67, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(194, 74, 67, var(--bs-link-underline-opacity, 1)) !important; }

.link-pink {
  color: RGBA(var(--bs-pink-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-pink-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-pink:hover, .link-pink:focus {
    color: RGBA(186, 50, 112, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(186, 50, 112, var(--bs-link-underline-opacity, 1)) !important; }

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-light:hover, .link-light:focus {
    color: RGBA(247, 248, 249, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(247, 248, 249, var(--bs-link-underline-opacity, 1)) !important; }

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-dark:hover, .link-dark:focus {
    color: RGBA(42, 46, 51, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(42, 46, 51, var(--bs-link-underline-opacity, 1)) !important; }

.link-purple {
  color: RGBA(var(--bs-purple-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-purple-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-purple:hover, .link-purple:focus {
    color: RGBA(89, 53, 154, var(--bs-link-opacity, 1)) !important;
    text-decoration-color: RGBA(89, 53, 154, var(--bs-link-underline-opacity, 1)) !important; }

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important; }
  .link-body-emphasis:hover, .link-body-emphasis:focus {
    color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
    text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important; }

.focus-ring:focus {
  outline: 0;
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color); }

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  backface-visibility: hidden; }
  .icon-link > .bi {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    fill: currentcolor;
    transition: 0.2s ease-in-out transform; }
    @media (prefers-reduced-motion: reduce) {
      .icon-link > .bi {
        transition: none; } }

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0)); }

.ratio {
  position: relative;
  width: 100%; }
  .ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""; }
  .ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.ratio-1x1 {
  --bs-aspect-ratio: 100%; }

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%); }

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%); }

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%); }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020; }

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020; }

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020; }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020; } }

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch; }

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch; }

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important; }
  .visually-hidden:not(caption),
  .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
    position: absolute !important; }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: ""; }

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

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.5; }

.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.float-start {
  float: left !important; }

.float-end {
  float: right !important; }

.float-none {
  float: none !important; }

.object-fit-contain {
  object-fit: contain !important; }

.object-fit-cover {
  object-fit: cover !important; }

.object-fit-fill {
  object-fit: fill !important; }

.object-fit-scale {
  object-fit: scale-down !important; }

.object-fit-none {
  object-fit: none !important; }

.opacity-0 {
  opacity: 0 !important; }

.opacity-25 {
  opacity: 0.25 !important; }

.opacity-50 {
  opacity: 0.5 !important; }

.opacity-75 {
  opacity: 0.75 !important; }

.opacity-100 {
  opacity: 1 !important; }

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

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

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

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

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

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

.overflow-x-visible {
  overflow-x: visible !important; }

.overflow-x-scroll {
  overflow-x: scroll !important; }

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

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

.overflow-y-visible {
  overflow-y: visible !important; }

.overflow-y-scroll {
  overflow-y: scroll !important; }

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

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

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

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

.d-inline-grid {
  display: inline-grid !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; }

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

.shadow {
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12) !important; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-pink {
  --bs-focus-ring-color: rgba(var(--bs-pink-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity)); }

.focus-ring-purple {
  --bs-focus-ring-color: rgba(var(--bs-purple-rgb), var(--bs-focus-ring-opacity)); }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

.top-0 {
  top: 0 !important; }

.top-50 {
  top: 50% !important; }

.top-100 {
  top: 100% !important; }

.bottom-0 {
  bottom: 0 !important; }

.bottom-50 {
  bottom: 50% !important; }

.bottom-100 {
  bottom: 100% !important; }

.start-0 {
  left: 0 !important; }

.start-50 {
  left: 50% !important; }

.start-100 {
  left: 100% !important; }

.end-0 {
  right: 0 !important; }

.end-50 {
  right: 50% !important; }

.end-100 {
  right: 100% !important; }

.translate-middle {
  transform: translate(-50%, -50%) !important; }

.translate-middle-x {
  transform: translateX(-50%) !important; }

.translate-middle-y {
  transform: translateY(-50%) !important; }

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; }

.border-0 {
  border: 0 !important; }

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; }

.border-end-0 {
  border-right: 0 !important; }

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important; }

.border-start-0 {
  border-left: 0 !important; }

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important; }

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important; }

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important; }

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important; }

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important; }

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important; }

.border-pink {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-pink-rgb), var(--bs-border-opacity)) !important; }

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important; }

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important; }

.border-purple {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-purple-rgb), var(--bs-border-opacity)) !important; }

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important; }

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important; }

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important; }

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important; }

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important; }

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important; }

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important; }

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important; }

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important; }

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important; }

.border-0 {
  border-width: 0 !important; }

.border-1 {
  border-width: 1px !important; }

.border-2 {
  border-width: 2px !important; }

.border-3 {
  border-width: 3px !important; }

.border-4 {
  border-width: 4px !important; }

.border-5 {
  border-width: 5px !important; }

.border-opacity-10 {
  --bs-border-opacity: 0.1; }

.border-opacity-25 {
  --bs-border-opacity: 0.25; }

.border-opacity-50 {
  --bs-border-opacity: 0.5; }

.border-opacity-75 {
  --bs-border-opacity: 0.75; }

.border-opacity-100 {
  --bs-border-opacity: 1; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

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

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

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

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

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

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

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

.flex-fill {
  flex: 1 1 auto !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-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; }

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

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

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

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

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

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

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

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

.justify-content-evenly {
  justify-content: space-evenly !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

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

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

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

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

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

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

.order-first {
  order: -1 !important; }

.order-0 {
  order: 0 !important; }

.order-1 {
  order: 1 !important; }

.order-2 {
  order: 2 !important; }

.order-3 {
  order: 3 !important; }

.order-4 {
  order: 4 !important; }

.order-5 {
  order: 5 !important; }

.order-last {
  order: 6 !important; }

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

.m-1 {
  margin: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

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

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

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important; }

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important; }

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

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

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

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

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

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

.mt-1 {
  margin-top: 0.25rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mt-4 {
  margin-top: 1.5rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

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

.me-0 {
  margin-right: 0 !important; }

.me-1 {
  margin-right: 0.25rem !important; }

.me-2 {
  margin-right: 0.5rem !important; }

.me-3 {
  margin-right: 1rem !important; }

.me-4 {
  margin-right: 1.5rem !important; }

.me-5 {
  margin-right: 3rem !important; }

.me-auto {
  margin-right: auto !important; }

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

.mb-1 {
  margin-bottom: 0.25rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.mb-5 {
  margin-bottom: 3rem !important; }

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

.ms-0 {
  margin-left: 0 !important; }

.ms-1 {
  margin-left: 0.25rem !important; }

.ms-2 {
  margin-left: 0.5rem !important; }

.ms-3 {
  margin-left: 1rem !important; }

.ms-4 {
  margin-left: 1.5rem !important; }

.ms-5 {
  margin-left: 3rem !important; }

.ms-auto {
  margin-left: auto !important; }

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

.p-1 {
  padding: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

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

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important; }

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important; }

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

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

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

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

.pt-1 {
  padding-top: 0.25rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pt-3 {
  padding-top: 1rem !important; }

.pt-4 {
  padding-top: 1.5rem !important; }

.pt-5 {
  padding-top: 3rem !important; }

.pe-0 {
  padding-right: 0 !important; }

.pe-1 {
  padding-right: 0.25rem !important; }

.pe-2 {
  padding-right: 0.5rem !important; }

.pe-3 {
  padding-right: 1rem !important; }

.pe-4 {
  padding-right: 1.5rem !important; }

.pe-5 {
  padding-right: 3rem !important; }

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

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pb-3 {
  padding-bottom: 1rem !important; }

.pb-4 {
  padding-bottom: 1.5rem !important; }

.pb-5 {
  padding-bottom: 3rem !important; }

.ps-0 {
  padding-left: 0 !important; }

.ps-1 {
  padding-left: 0.25rem !important; }

.ps-2 {
  padding-left: 0.5rem !important; }

.ps-3 {
  padding-left: 1rem !important; }

.ps-4 {
  padding-left: 1.5rem !important; }

.ps-5 {
  padding-left: 3rem !important; }

.gap-0 {
  gap: 0 !important; }

.gap-1 {
  gap: 0.25rem !important; }

.gap-2 {
  gap: 0.5rem !important; }

.gap-3 {
  gap: 1rem !important; }

.gap-4 {
  gap: 1.5rem !important; }

.gap-5 {
  gap: 3rem !important; }

.row-gap-0 {
  row-gap: 0 !important; }

.row-gap-1 {
  row-gap: 0.25rem !important; }

.row-gap-2 {
  row-gap: 0.5rem !important; }

.row-gap-3 {
  row-gap: 1rem !important; }

.row-gap-4 {
  row-gap: 1.5rem !important; }

.row-gap-5 {
  row-gap: 3rem !important; }

.column-gap-0 {
  column-gap: 0 !important; }

.column-gap-1 {
  column-gap: 0.25rem !important; }

.column-gap-2 {
  column-gap: 0.5rem !important; }

.column-gap-3 {
  column-gap: 1rem !important; }

.column-gap-4 {
  column-gap: 1.5rem !important; }

.column-gap-5 {
  column-gap: 3rem !important; }

.font-monospace {
  font-family: var(--bs-font-monospace) !important; }

.fs-1 {
  font-size: calc(1.35rem + 1.2vw) !important; }

.fs-2 {
  font-size: calc(1.305rem + 0.66vw) !important; }

.fs-3 {
  font-size: calc(1.2825rem + 0.39vw) !important; }

.fs-4 {
  font-size: calc(1.26rem + 0.12vw) !important; }

.fs-5 {
  font-size: 1.125rem !important; }

.fs-6 {
  font-size: 0.9rem !important; }

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

.fst-normal {
  font-style: normal !important; }

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

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

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

.fw-medium {
  font-weight: 500 !important; }

.fw-semibold {
  font-weight: 600 !important; }

.fw-bold {
  font-weight: 600 !important; }

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

.lh-1 {
  line-height: 1 !important; }

.lh-sm {
  line-height: 1.25 !important; }

.lh-base {
  line-height: 1.5 !important; }

.lh-lg {
  line-height: 2 !important; }

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

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

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

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

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

.text-decoration-line-through {
  text-decoration: line-through !important; }

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

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

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

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

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

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important; }

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; }

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; }

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; }

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; }

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; }

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; }

.text-pink {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-pink-rgb), var(--bs-text-opacity)) !important; }

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; }

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; }

.text-purple {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-purple-rgb), var(--bs-text-opacity)) !important; }

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; }

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; }

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; }

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important; }

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important; }

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important; }

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important; }

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important; }

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

.text-opacity-25 {
  --bs-text-opacity: 0.25; }

.text-opacity-50 {
  --bs-text-opacity: 0.5; }

.text-opacity-75 {
  --bs-text-opacity: 0.75; }

.text-opacity-100 {
  --bs-text-opacity: 1; }

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important; }

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important; }

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important; }

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important; }

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important; }

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important; }

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important; }

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important; }

.link-opacity-10 {
  --bs-link-opacity: 0.1; }

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1; }

.link-opacity-25 {
  --bs-link-opacity: 0.25; }

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25; }

.link-opacity-50 {
  --bs-link-opacity: 0.5; }

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5; }

.link-opacity-75 {
  --bs-link-opacity: 0.75; }

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75; }

.link-opacity-100 {
  --bs-link-opacity: 1; }

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1; }

.link-offset-1 {
  text-underline-offset: 0.125em !important; }

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important; }

.link-offset-2 {
  text-underline-offset: 0.25em !important; }

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important; }

.link-offset-3 {
  text-underline-offset: 0.375em !important; }

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important; }

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-pink {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-pink-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline-purple {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-purple-rgb), var(--bs-link-underline-opacity)) !important; }

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important; }

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0; }

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0; }

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1; }

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1; }

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25; }

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25; }

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5; }

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5; }

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75; }

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75; }

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1; }

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1; }

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; }

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; }

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; }

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; }

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; }

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; }

.bg-pink {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-pink-rgb), var(--bs-bg-opacity)) !important; }

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; }

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; }

.bg-purple {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-purple-rgb), var(--bs-bg-opacity)) !important; }

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; }

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; }

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; }

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important; }

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important; }

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important; }

.bg-opacity-10 {
  --bs-bg-opacity: 0.1; }

.bg-opacity-25 {
  --bs-bg-opacity: 0.25; }

.bg-opacity-50 {
  --bs-bg-opacity: 0.5; }

.bg-opacity-75 {
  --bs-bg-opacity: 0.75; }

.bg-opacity-100 {
  --bs-bg-opacity: 1; }

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important; }

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important; }

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important; }

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important; }

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important; }

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important; }

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important; }

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important; }

.bg-gradient {
  background-image: var(--bs-gradient) !important; }

.user-select-all {
  -webkit-user-select: all !important;
          user-select: all !important; }

.user-select-auto {
  -webkit-user-select: auto !important;
          user-select: auto !important; }

.user-select-none {
  -webkit-user-select: none !important;
          user-select: none !important; }

.pe-none {
  pointer-events: none !important; }

.pe-auto {
  pointer-events: auto !important; }

.rounded {
  border-radius: var(--bs-border-radius) !important; }

.rounded-0 {
  border-radius: 0 !important; }

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important; }

.rounded-2 {
  border-radius: var(--bs-border-radius) !important; }

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important; }

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important; }

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important; }

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important; }

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important; }

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important; }

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important; }

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important; }

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important; }

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important; }

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important; }

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important; }

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important; }

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important; }

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important; }

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important; }

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important; }

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important; }

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important; }

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important; }

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important; }

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important; }

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important; }

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important; }

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important; }

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important; }

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important; }

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important; }

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important; }

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important; }

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important; }

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important; }

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important; }

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important; }

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important; }

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important; }

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important; }

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important; }

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

.z-n1 {
  z-index: -1 !important; }

.z-0 {
  z-index: 0 !important; }

.z-1 {
  z-index: 1 !important; }

.z-2 {
  z-index: 2 !important; }

.z-3 {
  z-index: 3 !important; }

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important; }
  .float-sm-end {
    float: right !important; }
  .float-sm-none {
    float: none !important; }
  .object-fit-sm-contain {
    object-fit: contain !important; }
  .object-fit-sm-cover {
    object-fit: cover !important; }
  .object-fit-sm-fill {
    object-fit: fill !important; }
  .object-fit-sm-scale {
    object-fit: scale-down !important; }
  .object-fit-sm-none {
    object-fit: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-grid {
    display: grid !important; }
  .d-sm-inline-grid {
    display: inline-grid !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; }
  .d-sm-none {
    display: none !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .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-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; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !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; }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; }
  .order-sm-first {
    order: -1 !important; }
  .order-sm-0 {
    order: 0 !important; }
  .order-sm-1 {
    order: 1 !important; }
  .order-sm-2 {
    order: 2 !important; }
  .order-sm-3 {
    order: 3 !important; }
  .order-sm-4 {
    order: 4 !important; }
  .order-sm-5 {
    order: 5 !important; }
  .order-sm-last {
    order: 6 !important; }
  .m-sm-0 {
    margin: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-sm-0 {
    margin-top: 0 !important; }
  .mt-sm-1 {
    margin-top: 0.25rem !important; }
  .mt-sm-2 {
    margin-top: 0.5rem !important; }
  .mt-sm-3 {
    margin-top: 1rem !important; }
  .mt-sm-4 {
    margin-top: 1.5rem !important; }
  .mt-sm-5 {
    margin-top: 3rem !important; }
  .mt-sm-auto {
    margin-top: auto !important; }
  .me-sm-0 {
    margin-right: 0 !important; }
  .me-sm-1 {
    margin-right: 0.25rem !important; }
  .me-sm-2 {
    margin-right: 0.5rem !important; }
  .me-sm-3 {
    margin-right: 1rem !important; }
  .me-sm-4 {
    margin-right: 1.5rem !important; }
  .me-sm-5 {
    margin-right: 3rem !important; }
  .me-sm-auto {
    margin-right: auto !important; }
  .mb-sm-0 {
    margin-bottom: 0 !important; }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important; }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important; }
  .mb-sm-3 {
    margin-bottom: 1rem !important; }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important; }
  .mb-sm-5 {
    margin-bottom: 3rem !important; }
  .mb-sm-auto {
    margin-bottom: auto !important; }
  .ms-sm-0 {
    margin-left: 0 !important; }
  .ms-sm-1 {
    margin-left: 0.25rem !important; }
  .ms-sm-2 {
    margin-left: 0.5rem !important; }
  .ms-sm-3 {
    margin-left: 1rem !important; }
  .ms-sm-4 {
    margin-left: 1.5rem !important; }
  .ms-sm-5 {
    margin-left: 3rem !important; }
  .ms-sm-auto {
    margin-left: auto !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-sm-0 {
    padding-top: 0 !important; }
  .pt-sm-1 {
    padding-top: 0.25rem !important; }
  .pt-sm-2 {
    padding-top: 0.5rem !important; }
  .pt-sm-3 {
    padding-top: 1rem !important; }
  .pt-sm-4 {
    padding-top: 1.5rem !important; }
  .pt-sm-5 {
    padding-top: 3rem !important; }
  .pe-sm-0 {
    padding-right: 0 !important; }
  .pe-sm-1 {
    padding-right: 0.25rem !important; }
  .pe-sm-2 {
    padding-right: 0.5rem !important; }
  .pe-sm-3 {
    padding-right: 1rem !important; }
  .pe-sm-4 {
    padding-right: 1.5rem !important; }
  .pe-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-0 {
    padding-bottom: 0 !important; }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pb-sm-3 {
    padding-bottom: 1rem !important; }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pb-sm-5 {
    padding-bottom: 3rem !important; }
  .ps-sm-0 {
    padding-left: 0 !important; }
  .ps-sm-1 {
    padding-left: 0.25rem !important; }
  .ps-sm-2 {
    padding-left: 0.5rem !important; }
  .ps-sm-3 {
    padding-left: 1rem !important; }
  .ps-sm-4 {
    padding-left: 1.5rem !important; }
  .ps-sm-5 {
    padding-left: 3rem !important; }
  .gap-sm-0 {
    gap: 0 !important; }
  .gap-sm-1 {
    gap: 0.25rem !important; }
  .gap-sm-2 {
    gap: 0.5rem !important; }
  .gap-sm-3 {
    gap: 1rem !important; }
  .gap-sm-4 {
    gap: 1.5rem !important; }
  .gap-sm-5 {
    gap: 3rem !important; }
  .row-gap-sm-0 {
    row-gap: 0 !important; }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important; }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important; }
  .row-gap-sm-3 {
    row-gap: 1rem !important; }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important; }
  .row-gap-sm-5 {
    row-gap: 3rem !important; }
  .column-gap-sm-0 {
    column-gap: 0 !important; }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important; }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important; }
  .column-gap-sm-3 {
    column-gap: 1rem !important; }
  .column-gap-sm-4 {
    column-gap: 1.5rem !important; }
  .column-gap-sm-5 {
    column-gap: 3rem !important; }
  .text-sm-start {
    text-align: left !important; }
  .text-sm-end {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .float-md-start {
    float: left !important; }
  .float-md-end {
    float: right !important; }
  .float-md-none {
    float: none !important; }
  .object-fit-md-contain {
    object-fit: contain !important; }
  .object-fit-md-cover {
    object-fit: cover !important; }
  .object-fit-md-fill {
    object-fit: fill !important; }
  .object-fit-md-scale {
    object-fit: scale-down !important; }
  .object-fit-md-none {
    object-fit: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-grid {
    display: grid !important; }
  .d-md-inline-grid {
    display: inline-grid !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; }
  .d-md-none {
    display: none !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .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-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; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !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; }
  .justify-content-md-evenly {
    justify-content: space-evenly !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; }
  .order-md-first {
    order: -1 !important; }
  .order-md-0 {
    order: 0 !important; }
  .order-md-1 {
    order: 1 !important; }
  .order-md-2 {
    order: 2 !important; }
  .order-md-3 {
    order: 3 !important; }
  .order-md-4 {
    order: 4 !important; }
  .order-md-5 {
    order: 5 !important; }
  .order-md-last {
    order: 6 !important; }
  .m-md-0 {
    margin: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-md-0 {
    margin-top: 0 !important; }
  .mt-md-1 {
    margin-top: 0.25rem !important; }
  .mt-md-2 {
    margin-top: 0.5rem !important; }
  .mt-md-3 {
    margin-top: 1rem !important; }
  .mt-md-4 {
    margin-top: 1.5rem !important; }
  .mt-md-5 {
    margin-top: 3rem !important; }
  .mt-md-auto {
    margin-top: auto !important; }
  .me-md-0 {
    margin-right: 0 !important; }
  .me-md-1 {
    margin-right: 0.25rem !important; }
  .me-md-2 {
    margin-right: 0.5rem !important; }
  .me-md-3 {
    margin-right: 1rem !important; }
  .me-md-4 {
    margin-right: 1.5rem !important; }
  .me-md-5 {
    margin-right: 3rem !important; }
  .me-md-auto {
    margin-right: auto !important; }
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .mb-md-1 {
    margin-bottom: 0.25rem !important; }
  .mb-md-2 {
    margin-bottom: 0.5rem !important; }
  .mb-md-3 {
    margin-bottom: 1rem !important; }
  .mb-md-4 {
    margin-bottom: 1.5rem !important; }
  .mb-md-5 {
    margin-bottom: 3rem !important; }
  .mb-md-auto {
    margin-bottom: auto !important; }
  .ms-md-0 {
    margin-left: 0 !important; }
  .ms-md-1 {
    margin-left: 0.25rem !important; }
  .ms-md-2 {
    margin-left: 0.5rem !important; }
  .ms-md-3 {
    margin-left: 1rem !important; }
  .ms-md-4 {
    margin-left: 1.5rem !important; }
  .ms-md-5 {
    margin-left: 3rem !important; }
  .ms-md-auto {
    margin-left: auto !important; }
  .p-md-0 {
    padding: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-md-0 {
    padding-top: 0 !important; }
  .pt-md-1 {
    padding-top: 0.25rem !important; }
  .pt-md-2 {
    padding-top: 0.5rem !important; }
  .pt-md-3 {
    padding-top: 1rem !important; }
  .pt-md-4 {
    padding-top: 1.5rem !important; }
  .pt-md-5 {
    padding-top: 3rem !important; }
  .pe-md-0 {
    padding-right: 0 !important; }
  .pe-md-1 {
    padding-right: 0.25rem !important; }
  .pe-md-2 {
    padding-right: 0.5rem !important; }
  .pe-md-3 {
    padding-right: 1rem !important; }
  .pe-md-4 {
    padding-right: 1.5rem !important; }
  .pe-md-5 {
    padding-right: 3rem !important; }
  .pb-md-0 {
    padding-bottom: 0 !important; }
  .pb-md-1 {
    padding-bottom: 0.25rem !important; }
  .pb-md-2 {
    padding-bottom: 0.5rem !important; }
  .pb-md-3 {
    padding-bottom: 1rem !important; }
  .pb-md-4 {
    padding-bottom: 1.5rem !important; }
  .pb-md-5 {
    padding-bottom: 3rem !important; }
  .ps-md-0 {
    padding-left: 0 !important; }
  .ps-md-1 {
    padding-left: 0.25rem !important; }
  .ps-md-2 {
    padding-left: 0.5rem !important; }
  .ps-md-3 {
    padding-left: 1rem !important; }
  .ps-md-4 {
    padding-left: 1.5rem !important; }
  .ps-md-5 {
    padding-left: 3rem !important; }
  .gap-md-0 {
    gap: 0 !important; }
  .gap-md-1 {
    gap: 0.25rem !important; }
  .gap-md-2 {
    gap: 0.5rem !important; }
  .gap-md-3 {
    gap: 1rem !important; }
  .gap-md-4 {
    gap: 1.5rem !important; }
  .gap-md-5 {
    gap: 3rem !important; }
  .row-gap-md-0 {
    row-gap: 0 !important; }
  .row-gap-md-1 {
    row-gap: 0.25rem !important; }
  .row-gap-md-2 {
    row-gap: 0.5rem !important; }
  .row-gap-md-3 {
    row-gap: 1rem !important; }
  .row-gap-md-4 {
    row-gap: 1.5rem !important; }
  .row-gap-md-5 {
    row-gap: 3rem !important; }
  .column-gap-md-0 {
    column-gap: 0 !important; }
  .column-gap-md-1 {
    column-gap: 0.25rem !important; }
  .column-gap-md-2 {
    column-gap: 0.5rem !important; }
  .column-gap-md-3 {
    column-gap: 1rem !important; }
  .column-gap-md-4 {
    column-gap: 1.5rem !important; }
  .column-gap-md-5 {
    column-gap: 3rem !important; }
  .text-md-start {
    text-align: left !important; }
  .text-md-end {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important; }
  .float-lg-end {
    float: right !important; }
  .float-lg-none {
    float: none !important; }
  .object-fit-lg-contain {
    object-fit: contain !important; }
  .object-fit-lg-cover {
    object-fit: cover !important; }
  .object-fit-lg-fill {
    object-fit: fill !important; }
  .object-fit-lg-scale {
    object-fit: scale-down !important; }
  .object-fit-lg-none {
    object-fit: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-grid {
    display: grid !important; }
  .d-lg-inline-grid {
    display: inline-grid !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; }
  .d-lg-none {
    display: none !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .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-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; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !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; }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; }
  .order-lg-first {
    order: -1 !important; }
  .order-lg-0 {
    order: 0 !important; }
  .order-lg-1 {
    order: 1 !important; }
  .order-lg-2 {
    order: 2 !important; }
  .order-lg-3 {
    order: 3 !important; }
  .order-lg-4 {
    order: 4 !important; }
  .order-lg-5 {
    order: 5 !important; }
  .order-lg-last {
    order: 6 !important; }
  .m-lg-0 {
    margin: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-lg-0 {
    margin-top: 0 !important; }
  .mt-lg-1 {
    margin-top: 0.25rem !important; }
  .mt-lg-2 {
    margin-top: 0.5rem !important; }
  .mt-lg-3 {
    margin-top: 1rem !important; }
  .mt-lg-4 {
    margin-top: 1.5rem !important; }
  .mt-lg-5 {
    margin-top: 3rem !important; }
  .mt-lg-auto {
    margin-top: auto !important; }
  .me-lg-0 {
    margin-right: 0 !important; }
  .me-lg-1 {
    margin-right: 0.25rem !important; }
  .me-lg-2 {
    margin-right: 0.5rem !important; }
  .me-lg-3 {
    margin-right: 1rem !important; }
  .me-lg-4 {
    margin-right: 1.5rem !important; }
  .me-lg-5 {
    margin-right: 3rem !important; }
  .me-lg-auto {
    margin-right: auto !important; }
  .mb-lg-0 {
    margin-bottom: 0 !important; }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important; }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important; }
  .mb-lg-3 {
    margin-bottom: 1rem !important; }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important; }
  .mb-lg-5 {
    margin-bottom: 3rem !important; }
  .mb-lg-auto {
    margin-bottom: auto !important; }
  .ms-lg-0 {
    margin-left: 0 !important; }
  .ms-lg-1 {
    margin-left: 0.25rem !important; }
  .ms-lg-2 {
    margin-left: 0.5rem !important; }
  .ms-lg-3 {
    margin-left: 1rem !important; }
  .ms-lg-4 {
    margin-left: 1.5rem !important; }
  .ms-lg-5 {
    margin-left: 3rem !important; }
  .ms-lg-auto {
    margin-left: auto !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-lg-0 {
    padding-top: 0 !important; }
  .pt-lg-1 {
    padding-top: 0.25rem !important; }
  .pt-lg-2 {
    padding-top: 0.5rem !important; }
  .pt-lg-3 {
    padding-top: 1rem !important; }
  .pt-lg-4 {
    padding-top: 1.5rem !important; }
  .pt-lg-5 {
    padding-top: 3rem !important; }
  .pe-lg-0 {
    padding-right: 0 !important; }
  .pe-lg-1 {
    padding-right: 0.25rem !important; }
  .pe-lg-2 {
    padding-right: 0.5rem !important; }
  .pe-lg-3 {
    padding-right: 1rem !important; }
  .pe-lg-4 {
    padding-right: 1.5rem !important; }
  .pe-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-0 {
    padding-bottom: 0 !important; }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pb-lg-3 {
    padding-bottom: 1rem !important; }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pb-lg-5 {
    padding-bottom: 3rem !important; }
  .ps-lg-0 {
    padding-left: 0 !important; }
  .ps-lg-1 {
    padding-left: 0.25rem !important; }
  .ps-lg-2 {
    padding-left: 0.5rem !important; }
  .ps-lg-3 {
    padding-left: 1rem !important; }
  .ps-lg-4 {
    padding-left: 1.5rem !important; }
  .ps-lg-5 {
    padding-left: 3rem !important; }
  .gap-lg-0 {
    gap: 0 !important; }
  .gap-lg-1 {
    gap: 0.25rem !important; }
  .gap-lg-2 {
    gap: 0.5rem !important; }
  .gap-lg-3 {
    gap: 1rem !important; }
  .gap-lg-4 {
    gap: 1.5rem !important; }
  .gap-lg-5 {
    gap: 3rem !important; }
  .row-gap-lg-0 {
    row-gap: 0 !important; }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important; }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important; }
  .row-gap-lg-3 {
    row-gap: 1rem !important; }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important; }
  .row-gap-lg-5 {
    row-gap: 3rem !important; }
  .column-gap-lg-0 {
    column-gap: 0 !important; }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important; }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important; }
  .column-gap-lg-3 {
    column-gap: 1rem !important; }
  .column-gap-lg-4 {
    column-gap: 1.5rem !important; }
  .column-gap-lg-5 {
    column-gap: 3rem !important; }
  .text-lg-start {
    text-align: left !important; }
  .text-lg-end {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important; }
  .float-xl-end {
    float: right !important; }
  .float-xl-none {
    float: none !important; }
  .object-fit-xl-contain {
    object-fit: contain !important; }
  .object-fit-xl-cover {
    object-fit: cover !important; }
  .object-fit-xl-fill {
    object-fit: fill !important; }
  .object-fit-xl-scale {
    object-fit: scale-down !important; }
  .object-fit-xl-none {
    object-fit: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-grid {
    display: grid !important; }
  .d-xl-inline-grid {
    display: inline-grid !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; }
  .d-xl-none {
    display: none !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .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-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; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; }
  .order-xl-first {
    order: -1 !important; }
  .order-xl-0 {
    order: 0 !important; }
  .order-xl-1 {
    order: 1 !important; }
  .order-xl-2 {
    order: 2 !important; }
  .order-xl-3 {
    order: 3 !important; }
  .order-xl-4 {
    order: 4 !important; }
  .order-xl-5 {
    order: 5 !important; }
  .order-xl-last {
    order: 6 !important; }
  .m-xl-0 {
    margin: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xl-0 {
    margin-top: 0 !important; }
  .mt-xl-1 {
    margin-top: 0.25rem !important; }
  .mt-xl-2 {
    margin-top: 0.5rem !important; }
  .mt-xl-3 {
    margin-top: 1rem !important; }
  .mt-xl-4 {
    margin-top: 1.5rem !important; }
  .mt-xl-5 {
    margin-top: 3rem !important; }
  .mt-xl-auto {
    margin-top: auto !important; }
  .me-xl-0 {
    margin-right: 0 !important; }
  .me-xl-1 {
    margin-right: 0.25rem !important; }
  .me-xl-2 {
    margin-right: 0.5rem !important; }
  .me-xl-3 {
    margin-right: 1rem !important; }
  .me-xl-4 {
    margin-right: 1.5rem !important; }
  .me-xl-5 {
    margin-right: 3rem !important; }
  .me-xl-auto {
    margin-right: auto !important; }
  .mb-xl-0 {
    margin-bottom: 0 !important; }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xl-3 {
    margin-bottom: 1rem !important; }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important; }
  .mb-xl-5 {
    margin-bottom: 3rem !important; }
  .mb-xl-auto {
    margin-bottom: auto !important; }
  .ms-xl-0 {
    margin-left: 0 !important; }
  .ms-xl-1 {
    margin-left: 0.25rem !important; }
  .ms-xl-2 {
    margin-left: 0.5rem !important; }
  .ms-xl-3 {
    margin-left: 1rem !important; }
  .ms-xl-4 {
    margin-left: 1.5rem !important; }
  .ms-xl-5 {
    margin-left: 3rem !important; }
  .ms-xl-auto {
    margin-left: auto !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-xl-0 {
    padding-top: 0 !important; }
  .pt-xl-1 {
    padding-top: 0.25rem !important; }
  .pt-xl-2 {
    padding-top: 0.5rem !important; }
  .pt-xl-3 {
    padding-top: 1rem !important; }
  .pt-xl-4 {
    padding-top: 1.5rem !important; }
  .pt-xl-5 {
    padding-top: 3rem !important; }
  .pe-xl-0 {
    padding-right: 0 !important; }
  .pe-xl-1 {
    padding-right: 0.25rem !important; }
  .pe-xl-2 {
    padding-right: 0.5rem !important; }
  .pe-xl-3 {
    padding-right: 1rem !important; }
  .pe-xl-4 {
    padding-right: 1.5rem !important; }
  .pe-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-0 {
    padding-bottom: 0 !important; }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xl-3 {
    padding-bottom: 1rem !important; }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pb-xl-5 {
    padding-bottom: 3rem !important; }
  .ps-xl-0 {
    padding-left: 0 !important; }
  .ps-xl-1 {
    padding-left: 0.25rem !important; }
  .ps-xl-2 {
    padding-left: 0.5rem !important; }
  .ps-xl-3 {
    padding-left: 1rem !important; }
  .ps-xl-4 {
    padding-left: 1.5rem !important; }
  .ps-xl-5 {
    padding-left: 3rem !important; }
  .gap-xl-0 {
    gap: 0 !important; }
  .gap-xl-1 {
    gap: 0.25rem !important; }
  .gap-xl-2 {
    gap: 0.5rem !important; }
  .gap-xl-3 {
    gap: 1rem !important; }
  .gap-xl-4 {
    gap: 1.5rem !important; }
  .gap-xl-5 {
    gap: 3rem !important; }
  .row-gap-xl-0 {
    row-gap: 0 !important; }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important; }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important; }
  .row-gap-xl-3 {
    row-gap: 1rem !important; }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important; }
  .row-gap-xl-5 {
    row-gap: 3rem !important; }
  .column-gap-xl-0 {
    column-gap: 0 !important; }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important; }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important; }
  .column-gap-xl-3 {
    column-gap: 1rem !important; }
  .column-gap-xl-4 {
    column-gap: 1.5rem !important; }
  .column-gap-xl-5 {
    column-gap: 3rem !important; }
  .text-xl-start {
    text-align: left !important; }
  .text-xl-end {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important; }
  .float-xxl-end {
    float: right !important; }
  .float-xxl-none {
    float: none !important; }
  .object-fit-xxl-contain {
    object-fit: contain !important; }
  .object-fit-xxl-cover {
    object-fit: cover !important; }
  .object-fit-xxl-fill {
    object-fit: fill !important; }
  .object-fit-xxl-scale {
    object-fit: scale-down !important; }
  .object-fit-xxl-none {
    object-fit: none !important; }
  .d-xxl-inline {
    display: inline !important; }
  .d-xxl-inline-block {
    display: inline-block !important; }
  .d-xxl-block {
    display: block !important; }
  .d-xxl-grid {
    display: grid !important; }
  .d-xxl-inline-grid {
    display: inline-grid !important; }
  .d-xxl-table {
    display: table !important; }
  .d-xxl-table-row {
    display: table-row !important; }
  .d-xxl-table-cell {
    display: table-cell !important; }
  .d-xxl-flex {
    display: flex !important; }
  .d-xxl-inline-flex {
    display: inline-flex !important; }
  .d-xxl-none {
    display: none !important; }
  .flex-xxl-fill {
    flex: 1 1 auto !important; }
  .flex-xxl-row {
    flex-direction: row !important; }
  .flex-xxl-column {
    flex-direction: column !important; }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xxl-wrap {
    flex-wrap: wrap !important; }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .justify-content-xxl-start {
    justify-content: flex-start !important; }
  .justify-content-xxl-end {
    justify-content: flex-end !important; }
  .justify-content-xxl-center {
    justify-content: center !important; }
  .justify-content-xxl-between {
    justify-content: space-between !important; }
  .justify-content-xxl-around {
    justify-content: space-around !important; }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xxl-start {
    align-items: flex-start !important; }
  .align-items-xxl-end {
    align-items: flex-end !important; }
  .align-items-xxl-center {
    align-items: center !important; }
  .align-items-xxl-baseline {
    align-items: baseline !important; }
  .align-items-xxl-stretch {
    align-items: stretch !important; }
  .align-content-xxl-start {
    align-content: flex-start !important; }
  .align-content-xxl-end {
    align-content: flex-end !important; }
  .align-content-xxl-center {
    align-content: center !important; }
  .align-content-xxl-between {
    align-content: space-between !important; }
  .align-content-xxl-around {
    align-content: space-around !important; }
  .align-content-xxl-stretch {
    align-content: stretch !important; }
  .align-self-xxl-auto {
    align-self: auto !important; }
  .align-self-xxl-start {
    align-self: flex-start !important; }
  .align-self-xxl-end {
    align-self: flex-end !important; }
  .align-self-xxl-center {
    align-self: center !important; }
  .align-self-xxl-baseline {
    align-self: baseline !important; }
  .align-self-xxl-stretch {
    align-self: stretch !important; }
  .order-xxl-first {
    order: -1 !important; }
  .order-xxl-0 {
    order: 0 !important; }
  .order-xxl-1 {
    order: 1 !important; }
  .order-xxl-2 {
    order: 2 !important; }
  .order-xxl-3 {
    order: 3 !important; }
  .order-xxl-4 {
    order: 4 !important; }
  .order-xxl-5 {
    order: 5 !important; }
  .order-xxl-last {
    order: 6 !important; }
  .m-xxl-0 {
    margin: 0 !important; }
  .m-xxl-1 {
    margin: 0.25rem !important; }
  .m-xxl-2 {
    margin: 0.5rem !important; }
  .m-xxl-3 {
    margin: 1rem !important; }
  .m-xxl-4 {
    margin: 1.5rem !important; }
  .m-xxl-5 {
    margin: 3rem !important; }
  .m-xxl-auto {
    margin: auto !important; }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xxl-0 {
    margin-top: 0 !important; }
  .mt-xxl-1 {
    margin-top: 0.25rem !important; }
  .mt-xxl-2 {
    margin-top: 0.5rem !important; }
  .mt-xxl-3 {
    margin-top: 1rem !important; }
  .mt-xxl-4 {
    margin-top: 1.5rem !important; }
  .mt-xxl-5 {
    margin-top: 3rem !important; }
  .mt-xxl-auto {
    margin-top: auto !important; }
  .me-xxl-0 {
    margin-right: 0 !important; }
  .me-xxl-1 {
    margin-right: 0.25rem !important; }
  .me-xxl-2 {
    margin-right: 0.5rem !important; }
  .me-xxl-3 {
    margin-right: 1rem !important; }
  .me-xxl-4 {
    margin-right: 1.5rem !important; }
  .me-xxl-5 {
    margin-right: 3rem !important; }
  .me-xxl-auto {
    margin-right: auto !important; }
  .mb-xxl-0 {
    margin-bottom: 0 !important; }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xxl-3 {
    margin-bottom: 1rem !important; }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important; }
  .mb-xxl-5 {
    margin-bottom: 3rem !important; }
  .mb-xxl-auto {
    margin-bottom: auto !important; }
  .ms-xxl-0 {
    margin-left: 0 !important; }
  .ms-xxl-1 {
    margin-left: 0.25rem !important; }
  .ms-xxl-2 {
    margin-left: 0.5rem !important; }
  .ms-xxl-3 {
    margin-left: 1rem !important; }
  .ms-xxl-4 {
    margin-left: 1.5rem !important; }
  .ms-xxl-5 {
    margin-left: 3rem !important; }
  .ms-xxl-auto {
    margin-left: auto !important; }
  .p-xxl-0 {
    padding: 0 !important; }
  .p-xxl-1 {
    padding: 0.25rem !important; }
  .p-xxl-2 {
    padding: 0.5rem !important; }
  .p-xxl-3 {
    padding: 1rem !important; }
  .p-xxl-4 {
    padding: 1.5rem !important; }
  .p-xxl-5 {
    padding: 3rem !important; }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-xxl-0 {
    padding-top: 0 !important; }
  .pt-xxl-1 {
    padding-top: 0.25rem !important; }
  .pt-xxl-2 {
    padding-top: 0.5rem !important; }
  .pt-xxl-3 {
    padding-top: 1rem !important; }
  .pt-xxl-4 {
    padding-top: 1.5rem !important; }
  .pt-xxl-5 {
    padding-top: 3rem !important; }
  .pe-xxl-0 {
    padding-right: 0 !important; }
  .pe-xxl-1 {
    padding-right: 0.25rem !important; }
  .pe-xxl-2 {
    padding-right: 0.5rem !important; }
  .pe-xxl-3 {
    padding-right: 1rem !important; }
  .pe-xxl-4 {
    padding-right: 1.5rem !important; }
  .pe-xxl-5 {
    padding-right: 3rem !important; }
  .pb-xxl-0 {
    padding-bottom: 0 !important; }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xxl-3 {
    padding-bottom: 1rem !important; }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important; }
  .pb-xxl-5 {
    padding-bottom: 3rem !important; }
  .ps-xxl-0 {
    padding-left: 0 !important; }
  .ps-xxl-1 {
    padding-left: 0.25rem !important; }
  .ps-xxl-2 {
    padding-left: 0.5rem !important; }
  .ps-xxl-3 {
    padding-left: 1rem !important; }
  .ps-xxl-4 {
    padding-left: 1.5rem !important; }
  .ps-xxl-5 {
    padding-left: 3rem !important; }
  .gap-xxl-0 {
    gap: 0 !important; }
  .gap-xxl-1 {
    gap: 0.25rem !important; }
  .gap-xxl-2 {
    gap: 0.5rem !important; }
  .gap-xxl-3 {
    gap: 1rem !important; }
  .gap-xxl-4 {
    gap: 1.5rem !important; }
  .gap-xxl-5 {
    gap: 3rem !important; }
  .row-gap-xxl-0 {
    row-gap: 0 !important; }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important; }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important; }
  .row-gap-xxl-3 {
    row-gap: 1rem !important; }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important; }
  .row-gap-xxl-5 {
    row-gap: 3rem !important; }
  .column-gap-xxl-0 {
    column-gap: 0 !important; }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important; }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important; }
  .column-gap-xxl-3 {
    column-gap: 1rem !important; }
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important; }
  .column-gap-xxl-5 {
    column-gap: 3rem !important; }
  .text-xxl-start {
    text-align: left !important; }
  .text-xxl-end {
    text-align: right !important; }
  .text-xxl-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.25rem !important; }
  .fs-2 {
    font-size: 1.8rem !important; }
  .fs-3 {
    font-size: 1.575rem !important; }
  .fs-4 {
    font-size: 1.35rem !important; } }

@media print {
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-grid {
    display: grid !important; }
  .d-print-inline-grid {
    display: inline-grid !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; }
  .d-print-none {
    display: none !important; } }

/* =============
   General
============= */
html {
  position: relative;
  min-height: 100%; }

.h1,
.h2,
.h3,
.h4,
.h5,
.h6, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: var(--bs-gray-700); }

.h1, h1, .h1 {
  font-size: 2.25rem; }

.h2, h2, .h2 {
  font-size: 1.8rem; }

.h3, h3, .h3 {
  font-size: 1.575rem; }

.h4, h4, .h4 {
  font-size: 1.35rem; }

.h5, h5, .h5 {
  font-size: 1.125rem; }

.h6, h6, .h6 {
  font-size: 0.9rem; }

a {
  text-decoration: none !important; }

label {
  font-weight: 500; }

.blockquote {
  padding: 10px 20px;
  border-left: 4px solid #f6f6f6; }

.blockquote-reverse {
  border-left: 0;
  border-right: 4px solid #f6f6f6;
  text-align: right; }

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px; } }

.row > * {
  position: relative; }

label {
  margin-bottom: 0.5rem; }

.bg-soft-primary {
  background-color: rgba(213, 25, 32, 0.25) !important; }

.bg-soft-secondary {
  background-color: rgba(255, 255, 255, 0.25) !important; }

.bg-soft-success {
  background-color: rgba(29, 211, 176, 0.25) !important; }

.bg-soft-info {
  background-color: rgba(13, 88, 193, 0.25) !important; }

.bg-soft-warning {
  background-color: rgba(241, 180, 76, 0.25) !important; }

.bg-soft-danger {
  background-color: rgba(242, 92, 84, 0.25) !important; }

.bg-soft-pink {
  background-color: rgba(232, 62, 140, 0.25) !important; }

.bg-soft-light {
  background-color: rgba(245, 246, 248, 0.25) !important; }

.bg-soft-dark {
  background-color: rgba(52, 58, 64, 0.25) !important; }

.bg-soft-purple {
  background-color: rgba(111, 66, 193, 0.25) !important; }

.bg-gradient-primary {
  background: linear-gradient(to bottom, #d51920, rgba(213, 25, 32, 0.5)) !important; }

.bg-gradient-secondary {
  background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.5)) !important; }

.bg-gradient-success {
  background: linear-gradient(to bottom, #1dd3b0, rgba(29, 211, 176, 0.5)) !important; }

.bg-gradient-info {
  background: linear-gradient(to bottom, #0d58c1, rgba(13, 88, 193, 0.5)) !important; }

.bg-gradient-warning {
  background: linear-gradient(to bottom, #f1b44c, rgba(241, 180, 76, 0.5)) !important; }

.bg-gradient-danger {
  background: linear-gradient(to bottom, #f25c54, rgba(242, 92, 84, 0.5)) !important; }

.bg-gradient-pink {
  background: linear-gradient(to bottom, #e83e8c, rgba(232, 62, 140, 0.5)) !important; }

.bg-gradient-light {
  background: linear-gradient(to bottom, #f5f6f8, rgba(245, 246, 248, 0.5)) !important; }

.bg-gradient-dark {
  background: linear-gradient(to bottom, #343a40, rgba(52, 58, 64, 0.5)) !important; }

.bg-gradient-purple {
  background: linear-gradient(to bottom, #6f42c1, rgba(111, 66, 193, 0.5)) !important; }

.rounded-pill {
  padding-right: .6em;
  padding-left: .6em; }

.badge.bg-primary[href]:hover, .badge.bg-primary[href]:focus {
  background-color: #c3171d !important; }

.bg-soft-primary {
  color: #d51920;
  background-color: rgba(213, 25, 32, 0.18); }
  .bg-soft-primary[href] {
    color: #d51920;
    text-decoration: none;
    background-color: rgba(213, 25, 32, 0.4); }
    .bg-soft-primary[href]:hover, .bg-soft-primary[href]:focus {
      color: #d51920;
      text-decoration: none;
      background-color: rgba(213, 25, 32, 0.4); }

.badge.bg-secondary[href]:hover, .badge.bg-secondary[href]:focus {
  background-color: whitesmoke !important; }

.bg-soft-secondary {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.18); }
  .bg-soft-secondary[href] {
    color: #fff;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.4); }
    .bg-soft-secondary[href]:hover, .bg-soft-secondary[href]:focus {
      color: #fff;
      text-decoration: none;
      background-color: rgba(255, 255, 255, 0.4); }

.badge.bg-success[href]:hover, .badge.bg-success[href]:focus {
  background-color: #1bc1a1 !important; }

.bg-soft-success {
  color: #1dd3b0;
  background-color: rgba(29, 211, 176, 0.18); }
  .bg-soft-success[href] {
    color: #1dd3b0;
    text-decoration: none;
    background-color: rgba(29, 211, 176, 0.4); }
    .bg-soft-success[href]:hover, .bg-soft-success[href]:focus {
      color: #1dd3b0;
      text-decoration: none;
      background-color: rgba(29, 211, 176, 0.4); }

.badge.bg-info[href]:hover, .badge.bg-info[href]:focus {
  background-color: #0c4fae !important; }

.bg-soft-info {
  color: #0d58c1;
  background-color: rgba(13, 88, 193, 0.18); }
  .bg-soft-info[href] {
    color: #0d58c1;
    text-decoration: none;
    background-color: rgba(13, 88, 193, 0.4); }
    .bg-soft-info[href]:hover, .bg-soft-info[href]:focus {
      color: #0d58c1;
      text-decoration: none;
      background-color: rgba(13, 88, 193, 0.4); }

.badge.bg-warning[href]:hover, .badge.bg-warning[href]:focus {
  background-color: #f0ac39 !important; }

.bg-soft-warning {
  color: #f1b44c;
  background-color: rgba(241, 180, 76, 0.18); }
  .bg-soft-warning[href] {
    color: #f1b44c;
    text-decoration: none;
    background-color: rgba(241, 180, 76, 0.4); }
    .bg-soft-warning[href]:hover, .bg-soft-warning[href]:focus {
      color: #f1b44c;
      text-decoration: none;
      background-color: rgba(241, 180, 76, 0.4); }

.badge.bg-danger[href]:hover, .badge.bg-danger[href]:focus {
  background-color: #f14a41 !important; }

.bg-soft-danger {
  color: #f25c54;
  background-color: rgba(242, 92, 84, 0.18); }
  .bg-soft-danger[href] {
    color: #f25c54;
    text-decoration: none;
    background-color: rgba(242, 92, 84, 0.4); }
    .bg-soft-danger[href]:hover, .bg-soft-danger[href]:focus {
      color: #f25c54;
      text-decoration: none;
      background-color: rgba(242, 92, 84, 0.4); }

.badge.bg-pink[href]:hover, .badge.bg-pink[href]:focus {
  background-color: #e62c81 !important; }

.bg-soft-pink {
  color: #e83e8c;
  background-color: rgba(232, 62, 140, 0.18); }
  .bg-soft-pink[href] {
    color: #e83e8c;
    text-decoration: none;
    background-color: rgba(232, 62, 140, 0.4); }
    .bg-soft-pink[href]:hover, .bg-soft-pink[href]:focus {
      color: #e83e8c;
      text-decoration: none;
      background-color: rgba(232, 62, 140, 0.4); }

.badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  background-color: #e9ebf0 !important; }

.bg-soft-light {
  color: #f5f6f8;
  background-color: rgba(245, 246, 248, 0.18); }
  .bg-soft-light[href] {
    color: #f5f6f8;
    text-decoration: none;
    background-color: rgba(245, 246, 248, 0.4); }
    .bg-soft-light[href]:hover, .bg-soft-light[href]:focus {
      color: #f5f6f8;
      text-decoration: none;
      background-color: rgba(245, 246, 248, 0.4); }

.badge.bg-dark[href]:hover, .badge.bg-dark[href]:focus {
  background-color: #2b3035 !important; }

.bg-soft-dark {
  color: #343a40;
  background-color: rgba(52, 58, 64, 0.18); }
  .bg-soft-dark[href] {
    color: #343a40;
    text-decoration: none;
    background-color: rgba(52, 58, 64, 0.4); }
    .bg-soft-dark[href]:hover, .bg-soft-dark[href]:focus {
      color: #343a40;
      text-decoration: none;
      background-color: rgba(52, 58, 64, 0.4); }

.badge.bg-purple[href]:hover, .badge.bg-purple[href]:focus {
  background-color: #663bb4 !important; }

.bg-soft-purple {
  color: #6f42c1;
  background-color: rgba(111, 66, 193, 0.18); }
  .bg-soft-purple[href] {
    color: #6f42c1;
    text-decoration: none;
    background-color: rgba(111, 66, 193, 0.4); }
    .bg-soft-purple[href]:hover, .bg-soft-purple[href]:focus {
      color: #6f42c1;
      text-decoration: none;
      background-color: rgba(111, 66, 193, 0.4); }

.badge.bg-light {
  color: #212529; }
  .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
    color: #212529; }

.badge.bg-dark {
  color: #f5f6f8; }

button,
a {
  outline: none !important; }

.btn-rounded {
  border-radius: 30px; }

.btn-dark,
.btn-secondary {
  color: #f5f6f8; }

.btn-outline-light {
  color: #212529; }

.btn-soft-primary {
  background-color: rgba(213, 25, 32, 0.25);
  border-color: rgba(213, 25, 32, 0.25);
  color: #d51920; }

.btn-soft-secondary {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff; }

.btn-soft-success {
  background-color: rgba(29, 211, 176, 0.25);
  border-color: rgba(29, 211, 176, 0.25);
  color: #1dd3b0; }

.btn-soft-info {
  background-color: rgba(13, 88, 193, 0.25);
  border-color: rgba(13, 88, 193, 0.25);
  color: #0d58c1; }

.btn-soft-warning {
  background-color: rgba(241, 180, 76, 0.25);
  border-color: rgba(241, 180, 76, 0.25);
  color: #f1b44c; }

.btn-soft-danger {
  background-color: rgba(242, 92, 84, 0.25);
  border-color: rgba(242, 92, 84, 0.25);
  color: #f25c54; }

.btn-soft-pink {
  background-color: rgba(232, 62, 140, 0.25);
  border-color: rgba(232, 62, 140, 0.25);
  color: #e83e8c; }

.btn-soft-light {
  background-color: rgba(245, 246, 248, 0.25);
  border-color: rgba(245, 246, 248, 0.25);
  color: #f5f6f8; }

.btn-soft-dark {
  background-color: rgba(52, 58, 64, 0.25);
  border-color: rgba(52, 58, 64, 0.25);
  color: #343a40; }

.btn-soft-purple {
  background-color: rgba(111, 66, 193, 0.25);
  border-color: rgba(111, 66, 193, 0.25);
  color: #6f42c1; }

.btn-group-vertical label {
  margin-bottom: 0; }

[data-layout-mode="dark"] .btn-light {
  color: var(--bs-dark);
  background-color: var(--bs-light);
  border-color: var(--bs-light); }

[data-layout-mode="dark"] .btn-check:focus + .btn-light,
[data-layout-mode="dark"] .btn-check:focus + .btn-outline-light,
[data-layout-mode="dark"] .btn-check:focus + .btn-soft-light,
[data-layout-mode="dark"] .btn-light:focus,
[data-layout-mode="dark"] .btn-outline-light:focus,
[data-layout-mode="dark"] .btn-soft-light:focus {
  color: var(--bs-dark);
  background-color: rgba(var(--bs-light-rgb), 0.75);
  border-color: rgba(var(--bs-light-rgb), 0.75); }

[data-layout-mode="dark"] .btn-check:active + .btn-light,
[data-layout-mode="dark"] .btn-check:active + .btn-outline-light,
[data-layout-mode="dark"] .btn-check:active + .btn-soft-light,
[data-layout-mode="dark"] .btn-check:checked + .btn-light,
[data-layout-mode="dark"] .btn-check:checked + .btn-outline-light,
[data-layout-mode="dark"] .btn-check:checked + .btn-soft-light,
[data-layout-mode="dark"] .btn-light.active, [data-layout-mode="dark"] .btn-light:active,
[data-layout-mode="dark"] .btn-outline-light.active, [data-layout-mode="dark"] .btn-outline-light:active,
[data-layout-mode="dark"] .btn-soft-light.active, [data-layout-mode="dark"] .btn-soft-light:active,
[data-layout-mode="dark"] .show > .btn-light.dropdown-toggle,
[data-layout-mode="dark"] .show > .btn-outline-light.dropdown-toggle,
[data-layout-mode="dark"] .show > .btn-soft-light.dropdown-toggle {
  color: var(--bs-dark);
  background-color: rgba(var(--bs-light-rgb), 0.75);
  border-color: rgba(var(--bs-light-rgb), 0.75); }

[data-layout-mode="dark"] .btn-dark {
  color: var(--bs-light);
  background-color: var(--bs-dark);
  border-color: var(--bs-dark); }
  [data-layout-mode="dark"] .btn-dark:hover {
    color: var(--bs-light);
    background-color: rgba(var(--bs-dark-rgb), 0.75);
    border-color: rgba(var(--bs-dark-rgb), 0.75); }

[data-layout-mode="dark"] .btn-check:focus + .btn-dark,
[data-layout-mode="dark"] .btn-check:focus + .btn-outline-dark,
[data-layout-mode="dark"] .btn-check:focus + .btn-soft-dark,
[data-layout-mode="dark"] .btn-dark:focus,
[data-layout-mode="dark"] .btn-outline-dark:focus,
[data-layout-mode="dark"] .btn-soft-dark:focus {
  color: var(--bs-light);
  background-color: rgba(var(--bs-dark-rgb), 0.75);
  border-color: rgba(var(--bs-dark-rgb), 0.75); }

[data-layout-mode="dark"] .btn-check:active + .btn-dark,
[data-layout-mode="dark"] .btn-check:active + .btn-outline-dark,
[data-layout-mode="dark"] .btn-check:active + .btn-soft-dark,
[data-layout-mode="dark"] .btn-check:checked + .btn-dark,
[data-layout-mode="dark"] .btn-check:checked + .btn-outline-dark,
[data-layout-mode="dark"] .btn-check:checked + .btn-soft-dark,
[data-layout-mode="dark"] .btn-dark.active, [data-layout-mode="dark"] .btn-dark:active,
[data-layout-mode="dark"] .btn-outline-dark.active, [data-layout-mode="dark"] .btn-outline-dark:active,
[data-layout-mode="dark"] .btn-soft-dark.active, [data-layout-mode="dark"] .btn-soft-dark:active,
[data-layout-mode="dark"] .show > .btn-dark.dropdown-toggle,
[data-layout-mode="dark"] .show > .btn-outline-dark.dropdown-toggle,
[data-layout-mode="dark"] .show > .btn-soft-dark.dropdown-toggle {
  color: var(--bs-light);
  background-color: rgba(var(--bs-dark-rgb), 0.75);
  border-color: rgba(var(--bs-dark-rgb), 0.75); }

[data-layout-mode="dark"] .btn-outline-light {
  color: var(--bs-dark);
  border-color: var(--bs-light); }

[data-layout-mode="dark"] .btn-outline-dark {
  color: var(--bs-dark);
  border-color: var(--bs-dark); }

[data-layout-mode="dark"] .btn-soft-light {
  color: var(--bs-dark);
  background-color: rgba(var(--bs-light-rgb), 0.1); }

[data-layout-mode="dark"] .btn-soft-dark {
  color: var(--bs-dark);
  background-color: rgba(var(--bs-dark-rgb), 0.1); }

.breadcrumb-item > a {
  color: var(--bs-gray-700); }

.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Material Design Icons"; }

.card {
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }

.card-drop {
  color: #212529; }

.card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.2px; }

.card-title-desc {
  color: #74788d;
  margin-bottom: 24px; }

.dropdown-menu {
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  animation-name: DropDownSlide;
  animation-duration: 0.3s;
  animation-fill-mode: both;
  margin: 0;
  position: absolute;
  z-index: 1000; }
  .dropdown-menu.show {
    top: 100% !important; }

.dropdown-menu-end[style] {
  left: auto !important;
  right: 0 !important; }

.dropdown-menu[data-popper-placement^="right"],
.dropdown-menu[data-popper-placement^="top"],
.dropdown-menu[data-popper-placement^="left"] {
  top: auto !important;
  animation: none !important; }

@keyframes DropDownSlide {
  100% {
    transform: translateY(0); }
  0% {
    transform: translateY(10px); } }

@media (min-width: 600px) {
  .dropdown-menu-lg {
    width: 320px; }
  .dropdown-menu-md {
    width: 240px; } }

.dropdown-divider {
  border-top-color: #f5f6f8; }

.dropdown-mega-menu-xl {
  width: 40rem; }

.dropdown-mega-menu-lg {
  width: 26rem; }

.nav-tabs > li > a, .nav-pills > li > a {
  color: var(--bs-gray-700);
  font-weight: 500; }

.nav-pills > a {
  color: var(--bs-gray-700);
  font-weight: 500; }

.nav-tabs-custom {
  border-bottom: 2px solid var(--bs-gray-300); }
  .nav-tabs-custom .nav-item {
    position: relative;
    color: #343a40; }
    .nav-tabs-custom .nav-item .nav-link {
      border: none; }
      .nav-tabs-custom .nav-item .nav-link::after {
        content: "";
        background: #d51920;
        height: 2px;
        position: absolute;
        width: 100%;
        left: 0;
        bottom: -2px;
        transition: all 250ms ease 0s;
        transform: scale(0); }
      .nav-tabs-custom .nav-item .nav-link.active {
        color: #d51920; }
        .nav-tabs-custom .nav-item .nav-link.active:after {
          transform: scale(1); }

.vertical-nav .nav .nav-link {
  padding: 24px 16px;
  text-align: center;
  margin-bottom: 8px; }
  .vertical-nav .nav .nav-link .nav-icon {
    font-size: 24px; }

.table th {
  font-weight: 600; }

.table .table-light {
  color: #212529;
  border-color: #f5f6f8;
  background-color: #f8f9fa; }

.table > :not(caption) > * > * {
  border-bottom-width: 0px;
  border-top-width: 1px; }

.table > :not(:last-child) > :last-child > * {
  border-bottom-color: #f5f6f8; }

.table-dark > :not(:last-child) > :last-child > * {
  border-bottom-color: #43494e; }

.table-nowrap th,
.table-nowrap td {
  white-space: nowrap; }

.border-primary.table > :not(:first-child) {
  border-color: #d51920 !important; }

.border-secondary.table > :not(:first-child) {
  border-color: #fff !important; }

.border-success.table > :not(:first-child) {
  border-color: #1dd3b0 !important; }

.border-info.table > :not(:first-child) {
  border-color: #0d58c1 !important; }

.border-warning.table > :not(:first-child) {
  border-color: #f1b44c !important; }

.border-danger.table > :not(:first-child) {
  border-color: #f25c54 !important; }

.border-pink.table > :not(:first-child) {
  border-color: #e83e8c !important; }

.border-light.table > :not(:first-child) {
  border-color: #f5f6f8 !important; }

.border-dark.table > :not(:first-child) {
  border-color: #343a40 !important; }

.border-purple.table > :not(:first-child) {
  border-color: #6f42c1 !important; }

.table-centered td,
.table-centered th {
  vertical-align: middle !important; }

.table-card-list {
  border-collapse: separate;
  border-spacing: 0 12px; }
  .table-card-list tr {
    background-color: #fff; }

[data-layout-mode="dark"] .table-light {
  background-color: var(--bs-light);
  color: var(--bs-gray-400); }
  [data-layout-mode="dark"] .table-light th, [data-layout-mode="dark"] .table-light td {
    background-color: var(--bs-light); }

.pagination-rounded .page-link {
  border-radius: 30px !important;
  margin: 0 3px !important;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  text-align: center;
  line-height: 32px; }

.progress-sm {
  height: 5px; }

.progress-md {
  height: 8px; }

.progress-lg {
  height: 12px; }

.progress-xl {
  height: 16px; }

.animated-progess {
  position: relative; }
  .animated-progess .progress-bar {
    position: relative;
    border-radius: 6px;
    animation: animate-positive 2s; }

@keyframes animate-positive {
  0% {
    width: 0; } }

/*
Template Name: Minible - Admin & Dashboard Template
Author: Themesbrand
Version: 2.3.0
Website: https://themesbrand.com/
Contact: themesbrand@gmail.com
File: Main Css File
*/
.mandatory {
  color: red;
  font-size: 18px; }

.flex-show {
  display: flex; }

.customHeading {
  font-weight: bold;
  font-size: 18px; }

.display-join {
  justify-content: space-between; }

.invalid-feedback {
  display: block !important; }

.purchase-badge {
  background-color: #007bff !important; }

.term-condition {
  background: white;
  padding: 20px; }

.custom-tabs .nav-tabs .nav-link.active {
  border-color: none;
  color: #000 !important; }

.custom-tabs .nav-tabs .nav-link {
  border-color: none;
  color: #000 !important; }

.custom-tabs .nav-tabs .nav-link:hover {
  border-color: none;
  color: #000 !important; }

.view-minheight {
  min-height: 420px; }

.p-7 {
  padding: 9px; }

.active-supply {
  border-radius: 20px;
  background-color: #1dd3b0;
  padding: 5px 25px; }

.inactive-supply {
  border-radius: 20px !important;
  background-color: #f25c54;
  padding: 5px 25px; }

.primary-Supply {
  font-weight: 300;
  font-size: 8px;
  color: #0d58c1;
  background: #e9f5ff;
  border-radius: 20px;
  padding: 2px 10px;
  font-style: italic; }

.subrole {
  background-color: #fff;
  display: flex;
  height: 70px; }

.subRoleSection {
  padding: 25px; }

#page-topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 238px;
  z-index: 1002;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }

.navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 110px;
  padding: 0 calc(1.25rem / 2) 0 0;
  border-bottom: 1px solid #f4f0f1;
  border-left: 1px solid #f4f0f1; }
  .navbar-header .dropdown .show.header-item {
    background-color: var(--bs-gray-100); }
  .navbar-header .navbar-brand-box {
    display: none; }

body[data-sidebar-size="sm"] #page-topbar {
  left: 70px; }
  @media (max-width: 991.98px) {
    body[data-sidebar-size="sm"] #page-topbar {
      left: 0; } }

body[data-sidebar-size="sm"] .navbar-header .vertical-menu-btn {
  display: block; }

.navbar-header .vertical-menu-btn {
  display: none; }

.app-search {
  margin-left: 10px; }

.navbar-brand-box {
  padding: 0.5rem 2.5rem;
  width: 250px;
  position: fixed;
  z-index: 1;
  background-color: #fff;
  border-right: 1px solid #f4f0f1; }

.border-container {
  padding-bottom: 3%;
  padding: 0.9rem 0.5rem;
  width: 157px;
  text-align: center;
  border-bottom: 1px solid #f4f0f1; }

.logo {
  line-height: 70px; }
  .logo .logo-sm {
    display: none; }

.logo-dark {
  display: block; }

.logo-light {
  display: none; }

/* Search */
.app-search {
  padding: calc(72px / 2) 0; }
  .app-search .form-control {
    border: none;
    height: 38px;
    padding-left: 40px;
    padding-right: 20px;
    background-color: transparent;
    box-shadow: none;
    border-radius: 5px; }
  .app-search span {
    position: absolute;
    z-index: 10;
    font-size: 16px;
    line-height: 38px;
    left: 13px;
    top: 0;
    color: #74788d; }

.megamenu-list li {
  position: relative;
  padding: 5px 0px; }
  .megamenu-list li a {
    color: #212529; }

@media (max-width: 991.98px) {
  .navbar-brand-box {
    width: auto; }
  #page-topbar {
    left: 0; }
    #page-topbar .navbar-header .navbar-brand-box {
      display: inline-block;
      position: relative; }
    #page-topbar .navbar-header .vertical-menu-btn {
      display: inline-block; }
  .logo span.logo-lg {
    display: none; }
  .logo span.logo-sm {
    display: inline-block; } }

.page-content {
  padding: calc(110px + 1.25rem) calc(1.25rem / 2) 60px calc(1.25rem / 2);
  padding-left: 2rem;
  padding-bottom: 1px; }

.header-item {
  height: 110px;
  box-shadow: none !important;
  color: #555b6d;
  border: 0;
  border-radius: 0px; }
  .header-item:hover {
    color: #555b6d; }

.header-profile-user {
  height: 30px;
  width: 30px;
  padding: 3px; }

.noti-icon i {
  font-size: 22px;
  color: #555b6d; }

.noti-icon .badge {
  position: absolute;
  top: 12px;
  right: 5px; }

.notification-item .d-flex {
  padding: 0.75rem 1rem;
  display: flex; }
  .notification-item .d-flex:hover {
    background-color: #fbfbfb; }

.dropdown-icon-item {
  display: block;
  border-radius: 3px;
  line-height: 34px;
  text-align: center;
  padding: 15px 0 9px;
  display: block;
  border: 1px solid transparent;
  color: #74788d; }
  .dropdown-icon-item img {
    height: 24px; }
  .dropdown-icon-item span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dropdown-icon-item:hover {
    border-color: var(--bs-gray-200); }

.fullscreen-enable [data-bs-toggle="fullscreen"] .uil-minus-path::before {
  content: "\eb8d"; }

body[data-layout="horizontal"][data-topbar="dark"] .logo-dark {
  display: none; }

body[data-layout="horizontal"][data-topbar="dark"] .logo-light {
  display: block; }

body[data-topbar="dark"] #page-topbar {
  background-color: #2f374e; }

body[data-topbar="dark"] .navbar-header .dropdown .show.header-item {
  background-color: rgba(255, 255, 255, 0.05); }

body[data-topbar="dark"] .navbar-header .waves-effect .waves-ripple {
  background: rgba(255, 255, 255, 0.4); }

body[data-topbar="dark"] .header-item {
  color: #e9ecef; }
  body[data-topbar="dark"] .header-item:hover {
    color: #e9ecef; }
  body[data-topbar="dark"] .header-item.vertical-menu-btn {
    color: #d51920 !important; }

body[data-topbar="dark"] .header-profile-user {
  background-color: rgba(255, 255, 255, 0.25); }

body[data-topbar="dark"] .noti-icon i {
  color: #e9ecef; }

body[data-topbar="dark"] .logo-dark {
  display: block; }

body[data-topbar="dark"] .logo-light {
  display: none; }

body[data-topbar="dark"] .app-search .form-control {
  background-color: var(--bs-header-dark-bg);
  color: #fff; }

body[data-topbar="dark"] .app-search span,
body[data-topbar="dark"] .app-search input.form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5); }

body[data-sidebar="dark"] .navbar-brand-box {
  background: #1c2742; }
  body[data-sidebar="dark"] .navbar-brand-box .logo-dark {
    display: none; }
  body[data-sidebar="dark"] .navbar-brand-box .logo-light {
    display: block; }

body[data-sidebar="construction"] .navbar-brand-box {
  background: #1c2742; }
  body[data-sidebar="construction"] .navbar-brand-box .logo-dark {
    display: block; }

body[data-sidebar="rightdeal"] .navbar-brand-box {
  background: #1c2742; }
  body[data-sidebar="rightdeal"] .navbar-brand-box .logo-dark {
    display: none; }
  body[data-sidebar="rightdeal"] .navbar-brand-box .logo-light {
    display: block; }

body[data-sidebar="igate"] .navbar-brand-box {
  background: #1c2742; }
  body[data-sidebar="igate"] .navbar-brand-box .logo-dark {
    display: none; }
  body[data-sidebar="igate"] .navbar-brand-box .logo-light {
    display: block; }

@media (max-width: 600px) {
  .navbar-header .dropdown {
    position: static; }
    .navbar-header .dropdown .dropdown-menu {
      left: 10px !important;
      right: 10px !important; } }

@media (max-width: 380px) {
  .navbar-brand-box {
    display: none;
    background-color: #fff; } }

body[data-layout="horizontal"] .page-content {
  margin-top: 110px;
  padding: calc(80px + 1.25rem) calc(1.25rem / 2) 60px calc(1.25rem / 2);
  padding-left: 2rem;
  padding-bottom: 1px; }
  @media (max-width: 991.98px) {
    body[data-layout="horizontal"] .page-content {
      margin-top: 0px; } }

@media (max-width: 374.99px) {
  .navbar-brand-box {
    padding: 0 1rem;
    text-align: center;
    background-color: #fff; }
  .language-switch {
    display: none !important; } }

.page-title-box {
  padding-bottom: 1.25rem;
  padding-left: 2rem; }
  .page-title-box .breadcrumb {
    background-color: transparent;
    padding: 0; }
  .page-title-box h4, .page-title-box .h4 {
    font-weight: 600;
    font-size: 18px !important; }
  @media (max-width: 575.98px) {
    .page-title-box .page-title-right {
      display: none; } }

.footer {
  bottom: 0;
  padding: 20px calc(1.25rem / 2);
  position: absolute;
  right: 0;
  color: #74788d;
  left: 250px;
  height: 60px;
  box-shadow: 0 0px 4px rgba(15, 34, 58, 0.12); }

@media (max-width: 992px) {
  .footer {
    left: 0; } }

body[data-sidebar-size="sm"] .footer {
  left: 70px; }

body[data-layout="horizontal"] .footer {
  left: 0 !important; }

.right-bar {
  background-color: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
  display: block;
  position: fixed;
  transition: all 200ms ease-out;
  width: 280px;
  float: right !important;
  right: -290px;
  top: 0;
  bottom: 0; }
  .right-bar .right-bar-toggle {
    background-color: #444c54;
    height: 24px;
    width: 24px;
    line-height: 24px;
    color: #f5f6f8;
    text-align: center;
    border-radius: 50%; }
    .right-bar .right-bar-toggle:hover {
      background-color: #4b545c; }

.right-bar-notification {
  background-color: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
  display: block;
  position: fixed;
  transition: all 200ms ease-out;
  width: 420px;
  float: right !important;
  right: 0px;
  top: 0;
  bottom: 0; }

.rightbar-overlay {
  background-color: rgba(52, 58, 64, 0.55);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 9998;
  transition: all .2s ease-out; }

.right-bar-enabled .right-bar {
  right: 0; }

.right-bar-enabled .rightbar-overlay {
  display: block; }

@media (max-width: 575.98px) {
  .right-bar {
    overflow: auto; }
    .right-bar .slimscroll-menu {
      height: auto !important; } }

.metismenu {
  margin: 0; }
  .metismenu li {
    display: block;
    width: 100%; }
  .metismenu .mm-collapse {
    display: none; }
    .metismenu .mm-collapse:not(.mm-show) {
      display: none; }
    .metismenu .mm-collapse.mm-show {
      display: block; }
  .metismenu .mm-collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-timing-function: ease;
    transition-duration: 0.35s;
    transition-property: height, visibility; }

.main-content {
  margin-left: 238px;
  overflow: hidden; }
  .main-content .content {
    padding: 0 15px 10px 15px;
    margin-top: 110px; }

.sidebar-menu-scroll {
  height: calc(100% - 110px);
  margin-top: 110px;
  background: #fff;
  border-right: 1px solid #f4f0f1;
  width: 250px !important; }

#sidebar-menu {
  padding: 20px 0 30px 0; }
  #sidebar-menu .mm-active > .has-arrow:after {
    transform: rotate(-180deg); }
  #sidebar-menu .has-arrow:after {
    content: "\F0140";
    font-family: "Material Design Icons";
    display: block;
    float: right;
    transition: transform 0.2s;
    font-size: 1rem; }
  #sidebar-menu ul li a {
    display: block;
    color: #d51920;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    transition: all 0.4s;
    margin: 0px;
    padding-left: 30px !important;
    border-radius: 3px; }
    #sidebar-menu ul li a i {
      display: inline-block;
      min-width: 1.5rem;
      padding-bottom: 0.125em;
      font-size: 1.05rem;
      line-height: 1.40625rem;
      vertical-align: middle;
      color: #7b8190;
      transition: all 0.4s; }
  #sidebar-menu ul li .badge {
    margin-top: 4px; }
  #sidebar-menu ul li ul.sub-menu {
    padding: 0; }
    #sidebar-menu ul li ul.sub-menu li a {
      padding: 0.4rem 1.5rem 0.4rem 1.7rem;
      font-weight: 400;
      color: #7b8190;
      margin: 0;
      background-color: transparent;
      font-size: 14.4px;
      opacity: 0.7; }
    #sidebar-menu ul li ul.sub-menu li ul.sub-menu {
      padding: 0; }
      #sidebar-menu ul li ul.sub-menu li ul.sub-menu li a {
        padding: 0.4rem 1.5rem 0.4rem 1.7rem;
        font-size: 13.5px; }
    #sidebar-menu ul li ul.sub-menu li.mm-active a.active {
      background-color: unset !important;
      color: #d51920 !important;
      opacity: 1;
      border-right: none; }
      #sidebar-menu ul li ul.sub-menu li.mm-active a.active .roundIcon {
        background: #d51920 !important; }

.menu-title {
  padding: 12px 20px !important;
  letter-spacing: 0.05em;
  pointer-events: none;
  cursor: default;
  font-size: 11px;
  text-transform: uppercase;
  color: #7b8190;
  font-weight: 600; }

.mm-active {
  color: #5b73e8 !important; }
  .mm-active > a {
    background-color: #f3f8fb;
    color: #5b73e8 !important; }
    .mm-active > a > i {
      color: #5b73e8 !important; }
  .mm-active .active {
    color: #5b73e8 !important; }
    .mm-active .active i {
      color: #5b73e8 !important; }
  .mm-active > i {
    color: #5b73e8 !important; }

@media (max-width: 992px) {
  .vertical-menu {
    display: none;
    top: 110px; }
    .vertical-menu .sidebar-menu-scroll {
      height: 100%;
      margin-top: 0; }
    .vertical-menu .navbar-brand-box,
    .vertical-menu .vertical-menu-btn {
      display: none; }
  .main-content {
    margin-left: 0 !important; }
  body.sidebar-enable .vertical-menu {
    display: block; } }

@media (min-width: 769px) {
  body[data-sidebar-size="sm"] {
    min-height: 1450px; } }

body[data-sidebar-size="sm"] .main-content {
  margin-left: 70px; }

body[data-sidebar-size="sm"] .navbar-brand-box {
  width: 70px !important;
  background-color: #fff; }

body[data-sidebar-size="sm"] .logo span.logo-lg {
  display: none; }

body[data-sidebar-size="sm"] .logo span.logo-sm {
  display: block; }

body[data-sidebar-size="sm"] .vertical-menu {
  position: absolute;
  width: 70px !important;
  z-index: 1001; }
  body[data-sidebar-size="sm"] .vertical-menu .simplebar-mask,
  body[data-sidebar-size="sm"] .vertical-menu .simplebar-content-wrapper {
    overflow: visible !important; }
  body[data-sidebar-size="sm"] .vertical-menu .simplebar-scrollbar,
  body[data-sidebar-size="sm"] .vertical-menu .vertical-menu-btn {
    display: none !important; }
  body[data-sidebar-size="sm"] .vertical-menu .simplebar-offset {
    bottom: 0 !important; }
  body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu .menu-title,
  body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu .badge,
  body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu .collapse.in {
    display: none !important; }
  body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu .nav.collapse {
    height: inherit !important; }
  body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu .has-arrow:after {
    display: none; }
  body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li {
    position: relative;
    white-space: nowrap; }
    body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li > a {
      padding: 15px 0;
      transition: none; }
      body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li > a:hover, body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li > a:active, body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li > a:focus {
        color: white; }
      body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li > a i {
        font-size: 1.3rem;
        text-align: center;
        min-width: 50px;
        padding-bottom: 0; }
      body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li > a span {
        display: none;
        padding-left: 25px; }
    body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a {
      position: relative;
      width: calc(180px + 70px);
      color: #d51920;
      background-color: #f3f8fb;
      transition: none;
      box-shadow: inset 0 3px 10px 0 rgba(154, 161, 171, 0.2); }
      body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a i {
        color: #d51920; }
      body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a span {
        display: inline; }
    body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > ul {
      display: block;
      left: 70px;
      position: absolute;
      width: 190px;
      height: auto !important;
      box-shadow: 3px 5px 10px 0 rgba(54, 61, 71, 0.1); }
      body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > ul ul {
        box-shadow: 3px 5px 10px 0 rgba(54, 61, 71, 0.1); }
      body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > ul a {
        box-shadow: none;
        padding: 8px 20px;
        position: relative;
        width: 190px;
        z-index: 6;
        color: #7b8190; }
        body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > ul a:hover {
          color: white; }
  body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul ul {
    padding: 5px 0;
    z-index: 9999;
    display: none;
    background-color: #fff; }
    body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul ul li:hover > ul {
      display: block;
      left: 190px;
      height: auto !important;
      margin-top: -36px;
      position: absolute;
      width: 190px; }
    body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul ul li > a span.pull-right {
      position: absolute;
      right: 20px;
      top: 12px;
      transform: rotate(270deg); }
    body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul ul li.active a {
      color: #fbfbfb; }

body[data-sidebar="construction"] {
  background-color: #383838; }
  body[data-sidebar="construction"] .main-content {
    margin-left: 250px;
    overflow: hidden;
    background-color: #383838; }
  body[data-sidebar="construction"] #layout-wrapper .vertical-menu .navbar-brand-box {
    box-shadow: none !important; }
  body[data-sidebar="construction"] #layout-wrapper .vertical-menu {
    box-shadow: none !important; }
  body[data-sidebar="construction"] .vertical-menu {
    background: #0e4d86;
    box-shadow: none; }
    body[data-sidebar="construction"] .vertical-menu .vertical-menu-btn {
      color: #383838; }
  body[data-sidebar="construction"] .sidebar-menu-scroll {
    background-color: #0e4d86;
    color: #383838; }
  body[data-sidebar="construction"] #sidebar-menu ul li a {
    display: block;
    color: #383838;
    position: relative;
    font-size: 16px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 20px;
    transition: all 0.4s;
    margin: 0px;
    border-radius: 3px;
    padding-left: 30px !important;
    letter-spacing: 0.07px; }
  body[data-sidebar="construction"] .sidebar-menu-scroll .simplebar-wrapper .mm-active > a,
  body[data-sidebar="construction"] .sidebar-menu-scroll .simplebar-wrapper .mm-active > a i,
  body[data-sidebar="construction"] .sidebar-menu-scroll .simplebar-wrapper #side-menu > ul > li:hover > a,
  body[data-sidebar="construction"] .sidebar-menu-scroll .simplebar-wrapper #side-menu > ul > li:hover > a i {
    color: #d51920 !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    border-right: 5px solid #d51920 !important; }
  body[data-sidebar="construction"] #sidebar-menu ul li ul.sub-menu {
    background: #326898;
    margin: 0px 10px;
    padding: 5px 0px !important;
    border-radius: 0px 0px 5px 5px;
    font-size: 13px; }
  body[data-sidebar="construction"] #sidebar-menu ul li ul.sub-menu li.mm-active a.active {
    background-color: unset !important;
    color: #d51920 !important;
    opacity: 1;
    font-size: 13px;
    border-right: none; }
  body[data-sidebar="construction"] #sidebar-menu ul li ul.sub-menu li a {
    padding: 0.4rem 1.5rem 0.4rem 1.7rem;
    font-weight: 400;
    color: #d51920;
    margin: 0;
    background-color: transparent;
    font-size: 13px;
    opacity: 0.7; }
  body[data-sidebar="construction"] .sidebar-menu-scroll .simplebar-wrapper #side-menu ul li a {
    background-color: unset !important;
    color: #383838 !important;
    opacity: 1;
    border-right: none; }
  body[data-sidebar="construction"] .sidebar-menu-scroll .simplebar-wrapper .roundIcon {
    height: 6px;
    background: #383838;
    border-radius: 50%;
    width: 6px;
    padding: 0px;
    margin: 0px;
    top: 15px;
    position: absolute; }
  body[data-sidebar="construction"] #sidebar-menu ul li ul.sub-menu li.mm-active a.active .roundIcon {
    background: #383838 !important; }
  body[data-sidebar="construction"] .btn-blue,
  body[data-sidebar="construction"] .btn-blue:active {
    background: #326898 !important; }
  body[data-sidebar="construction"] .edit-tax-head .tax-cancel-button {
    margin-left: 20px;
    background: #326898;
    border-radius: 5px; }
  body[data-sidebar="construction"] .cat-header .cat-close-button {
    background: #326898;
    border-radius: 5px;
    margin-left: 5%; }
  body[data-sidebar="construction"] .product-header .product-cancel-button {
    background: #326898;
    border-radius: 5px;
    margin-left: 2%; }
  body[data-sidebar="construction"] .edit-department-header-page .settings-department-close-button {
    margin-left: 1%;
    background: #326898;
    border-radius: 5px; }
  body[data-sidebar="construction"] .edit-credit-head .credit-period-footer-cancel {
    background: #326898;
    border-radius: 5px; }
  body[data-sidebar="construction"] .edit-credit-head .credit-save-button {
    background: #326898;
    border-radius: 5px; }
  body[data-sidebar="construction"] .edit-payment-head .edit-payment-cancel-button {
    background: #326898;
    border-radius: 5px; }
  body[data-sidebar="construction"] .edit-supplier-page .supplier-cancel-button {
    margin-left: 24px;
    width: 100px;
    background: #326898;
    border-radius: 5px; }
  body[data-sidebar="construction"] .filter-buttons .btn-secondary {
    background: #fff !important;
    color: #d51920;
    border: 1px solid #d51920;
    width: 95px;
    height: 36px;
    font-family: "Uber Move";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; }
  body[data-sidebar="construction"] .filter-buttons .btn-primary {
    background: #fff !important;
    color: #d51920;
    width: 95px;
    height: 36px;
    font-family: "Uber Move";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-color: #d51920 !important;
    border-radius: 3px !important; }
  body[data-sidebar="construction"] .page-content .dropzone {
    min-height: unset;
    border-radius: 5px;
    border: 0.5px solid rgba(14, 77, 134, 0.75);
    background: #ffffff; }
  body[data-sidebar="construction"] .page-content .form-control {
    color: #212529;
    border-radius: 5px;
    border: 0.5px solid rgba(14, 77, 134, 0.75);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 10px;
    background-color: #ffffff; }
  body[data-sidebar="construction"] .mico-table .mico-row {
    background: #f3f6f9; }
  body[data-sidebar="construction"] .edit-countery-head .country-cancel-button {
    border: 1px solid #326898;
    background: #383838;
    color: #326898;
    border-radius: 5px;
    margin-left: 5%; }
  body[data-sidebar="construction"] .cancelbtn {
    border: 1px solid #d51920 !important;
    background: #fff !important;
    color: #d51920 !important; }
  body[data-sidebar="construction"] .filterbtn {
    background: #0e4d86;
    color: white; }
  body[data-sidebar="construction"] .elevate-dropdown .react-select__control {
    border-radius: 5px;
    border: 0.5px solid rgba(14, 77, 134, 0.75); }
  body[data-sidebar="construction"] .elevate-dropdown .react-select__indicator-separator {
    background-color: #fff; }
  body[data-sidebar="construction"] .elevate-dropdown .react-select__placeholder {
    color: #adb5bd;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 12px; }
  body[data-sidebar="construction"] .elevate-dropdown .react-select__value-container {
    font-size: 12px; }
  body[data-sidebar="construction"] .elevate-dropdown .react-select__indicator {
    color: #adb5bd; }
  body[data-sidebar="construction"] .elevate-dropdownMonth .react-select__control {
    border: 0.5px solid rgba(14, 77, 134, 0.75);
    border-radius: 25px;
    height: 10px;
    width: 130px; }
  body[data-sidebar="construction"] .elevate-dropdownMonth .react-select__indicator-separator {
    background-color: #fff; }
  body[data-sidebar="construction"] .elevate-dropdownMonth .react-select__placeholder {
    color: #adb5bd;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 12px; }
  body[data-sidebar="construction"] .elevate-dropdownMonth .react-select__value-container {
    font-size: 12px; }
  body[data-sidebar="construction"] .searchbutton,
  body[data-sidebar="construction"] .searchbutton:hover,
  body[data-sidebar="construction"] .searchbutton:active {
    background: #32b175 !important;
    color: #ffffff;
    border-radius: 5px;
    margin-left: 5%;
    height: 40px;
    width: 100%;
    font-size: 14px; }
  body[data-sidebar="construction"] .payrolldangerbg {
    display: inline-block;
    padding: 1em 1em;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #a32100 !important;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    background: #e7d6d4 !important; }
  body[data-sidebar="construction"] .payrollsuccessbg {
    display: inline-block;
    padding: 1em 1em;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #32b175 !important;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    background: #d6ece5 !important; }
  body[data-sidebar="construction"] .generatepayrollbtn {
    background: #ffb500;
    color: #ffffff;
    border-radius: 5px; }
  body[data-sidebar="construction"] .payrollcancel {
    background: #f25c54;
    color: #ffffff;
    border-radius: 5px;
    margin-left: 3%; }
  body[data-sidebar="construction"] .bluetext {
    color: #0e4d86; }
  body[data-sidebar="construction"] .bluebg {
    background: #0e4d86;
    border-radius: 5px;
    height: 50px;
    padding: 10px 10px;
    color: white; }
  body[data-sidebar="construction"] .alignright {
    text-align: right; }
  body[data-sidebar="construction"] .whitebgcard {
    background-color: #ffffff; }
  body[data-sidebar="construction"] .edit-quotation-total-details {
    color: #212529;
    border-radius: 5px;
    border: 0.5px solid rgba(14, 77, 134, 0.75);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ffffff; }
  body[data-sidebar="construction"] .right-bar.task-filter {
    z-index: 1009;
    background: #fff !important; }
    body[data-sidebar="construction"] .right-bar.task-filter .react-select__placeholder {
      font-size: 12px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    body[data-sidebar="construction"] .right-bar.task-filter .react-select__control {
      border-color: #0e4d86bf;
      background: #fff; }
    body[data-sidebar="construction"] .right-bar.task-filter .react-select__single-value {
      color: #0d3aa1; }
    body[data-sidebar="construction"] .right-bar.task-filter .react-select__indicator-separator {
      background-color: #ffffff; }
    body[data-sidebar="construction"] .right-bar.task-filter .react-select__placeholder,
    body[data-sidebar="construction"] .right-bar.task-filter .react-select__indicator {
      color: #dee2e6; }
    body[data-sidebar="construction"] .right-bar.task-filter .form-control {
      background: #ffffff;
      border-color: #0e4d86;
      color: #0d3aa1; }
      body[data-sidebar="construction"] .right-bar.task-filter .form-control::placeholder {
        font-size: 12px;
        color: #dee2e6; }
      body[data-sidebar="construction"] .right-bar.task-filter .form-control:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        font-size: 12px;
        color: #dee2e6; }
      body[data-sidebar="construction"] .right-bar.task-filter .form-control::-ms-input-placeholder {
        /* Microsoft Edge */
        font-size: 12px;
        color: #dee2e6; }
  body[data-sidebar="construction"] .rdw-editor-wrapper {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 5px;
    border: 0.5px solid rgba(14, 77, 134, 0.75); }

body[data-sidebar="rightdeal"] .vertical-menu {
  background: #1c2742; }
  body[data-sidebar="rightdeal"] .vertical-menu .vertical-menu-btn {
    color: #8c98bb; }

body[data-sidebar="rightdeal"] #sidebar-menu ul li a {
  color: #8c98bb; }
  body[data-sidebar="rightdeal"] #sidebar-menu ul li a i {
    color: #6d7794; }

body[data-sidebar="rightdeal"] #sidebar-menu ul li ul.sub-menu li a {
  color: #7b85a2; }
  body[data-sidebar="rightdeal"] #sidebar-menu ul li ul.sub-menu li a:hover {
    color: #ffffff; }

body[data-sidebar="rightdeal"] body[data-sidebar-size="sm"] {
  min-height: 1300px; }
  body[data-sidebar="rightdeal"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a {
    background: #1c2742;
    color: #ffffff; }
    body[data-sidebar="rightdeal"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a i {
      color: #ffffff; }
  body[data-sidebar="rightdeal"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > ul a {
    color: #7b85a2; }
    body[data-sidebar="rightdeal"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > ul a:hover {
      color: #ffffff; }
  body[data-sidebar="rightdeal"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul ul {
    background-color: #1c2742; }
  body[data-sidebar="rightdeal"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu ul li.mm-active .active {
    color: #5b73e8 !important; }
    body[data-sidebar="rightdeal"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu ul li.mm-active .active i {
      color: #5b73e8 !important; }

body[data-sidebar="rightdeal"] .mm-active {
  color: #ffffff !important; }
  body[data-sidebar="rightdeal"] .mm-active > i {
    color: #ffffff !important; }
  body[data-sidebar="rightdeal"] .mm-active > a {
    background-color: #293552;
    color: #ffffff !important; }
    body[data-sidebar="rightdeal"] .mm-active > a > i {
      color: #ffffff !important; }
  body[data-sidebar="rightdeal"] .mm-active .active {
    color: #ffffff !important; }
    body[data-sidebar="rightdeal"] .mm-active .active i {
      color: #ffffff !important; }

body[data-sidebar="rightdeal"] .menu-title {
  color: #6d7794; }

body[data-sidebar="igate"] .vertical-menu {
  background: #1c2742; }
  body[data-sidebar="igate"] .vertical-menu .vertical-menu-btn {
    color: #8c98bb; }

body[data-sidebar="igate"] #sidebar-menu ul li a {
  color: #8c98bb; }
  body[data-sidebar="igate"] #sidebar-menu ul li a i {
    color: #6d7794; }
  body[data-sidebar="igate"] #sidebar-menu ul li a:hover {
    color: #ffffff; }
    body[data-sidebar="igate"] #sidebar-menu ul li a:hover i {
      color: #ffffff; }

body[data-sidebar="igate"] #sidebar-menu ul li ul.sub-menu li a {
  color: #7b85a2; }
  body[data-sidebar="igate"] #sidebar-menu ul li ul.sub-menu li a:hover {
    color: #ffffff; }

body[data-sidebar="igate"] body[data-sidebar-size="sm"] {
  min-height: 1300px; }
  body[data-sidebar="igate"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a {
    background: #1c2742;
    color: #ffffff; }
    body[data-sidebar="igate"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a i {
      color: #ffffff; }
  body[data-sidebar="igate"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > ul a {
    color: #7b85a2; }
    body[data-sidebar="igate"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > ul a:hover {
      color: #ffffff; }
  body[data-sidebar="igate"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul ul {
    background-color: #1c2742; }
  body[data-sidebar="igate"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu ul li.mm-active .active {
    color: #5b73e8 !important; }
    body[data-sidebar="igate"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu ul li.mm-active .active i {
      color: #5b73e8 !important; }

body[data-sidebar="igate"] .mm-active {
  color: #ffffff !important; }
  body[data-sidebar="igate"] .mm-active > i {
    color: #ffffff !important; }
  body[data-sidebar="igate"] .mm-active > a {
    background-color: #293552;
    color: #ffffff !important; }
    body[data-sidebar="igate"] .mm-active > a > i {
      color: #ffffff !important; }
  body[data-sidebar="igate"] .mm-active .active {
    color: #ffffff !important; }
    body[data-sidebar="igate"] .mm-active .active i {
      color: #ffffff !important; }

body[data-sidebar="igate"] .menu-title {
  color: #6d7794; }

body[data-layout="horizontal"] .main-content {
  margin-left: 0 !important; }

body[data-sidebar-size="small"] .navbar-brand-box {
  width: 160px; }
  @media (max-width: 991.98px) {
    body[data-sidebar-size="small"] .navbar-brand-box {
      width: auto; } }

body[data-sidebar-size="small"] .vertical-menu {
  width: 160px;
  text-align: center; }
  body[data-sidebar-size="small"] .vertical-menu .has-arrow:after,
  body[data-sidebar-size="small"] .vertical-menu .badge {
    display: none !important; }
  body[data-sidebar-size="small"] .vertical-menu .vertical-menu-btn {
    display: none; }

body[data-sidebar-size="small"] .main-content {
  margin-left: 160px; }

body[data-sidebar-size="small"] #page-topbar,
body[data-sidebar-size="small"] .footer {
  left: 160px; }
  @media (max-width: 991.98px) {
    body[data-sidebar-size="small"] #page-topbar,
    body[data-sidebar-size="small"] .footer {
      left: 0; } }

body[data-sidebar-size="small"] #sidebar-menu ul li.menu-title {
  background-color: #fff; }

body[data-sidebar-size="small"] #sidebar-menu ul li a i {
  display: block; }

body[data-sidebar-size="small"] #sidebar-menu ul li ul.sub-menu li a {
  padding-left: 1.5rem; }

body[data-sidebar-size="small"] #sidebar-menu ul li ul.sub-menu li ul.sub-menu li a {
  padding-left: 1.5rem; }

body[data-sidebar-size="small"][data-sidebar="dark"] #sidebar-menu ul li.menu-title {
  background-color: #1c2742; }

body[data-sidebar-size="small"] .navbar-header .vertical-menu-btn {
  display: block; }

body[data-sidebar-size="small"] body[data-sidebar-size="sm"] .navbar-header .vertical-menu-btn {
  display: none; }

body[data-sidebar-size="small"] body[data-sidebar-size="sm"] .main-content {
  margin-left: 70px; }

body[data-sidebar-size="small"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu {
  text-align: left; }
  body[data-sidebar-size="small"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li > a i {
    display: inline-block; }

body[data-sidebar-size="small"] body[data-sidebar-size="sm"] #page-topbar,
body[data-sidebar-size="small"] body[data-sidebar-size="sm"] .footer {
  left: 70px; }

body[data-sidebar="colored"] .vertical-menu {
  background-color: #d51920; }
  body[data-sidebar="colored"] .vertical-menu .vertical-menu-btn {
    color: rgba(255, 255, 255, 0.8); }

body[data-sidebar="colored"] .navbar-brand-box {
  background-color: #fff; }
  body[data-sidebar="colored"] .navbar-brand-box .logo-dark {
    display: none; }
  body[data-sidebar="colored"] .navbar-brand-box .logo-light {
    display: block; }

body[data-sidebar="colored"] .mm-active {
  color: #fff !important; }
  body[data-sidebar="colored"] .mm-active > a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important; }
    body[data-sidebar="colored"] .mm-active > a > i {
      color: #fff !important; }
  body[data-sidebar="colored"] .mm-active > i,
  body[data-sidebar="colored"] .mm-active .active {
    color: #fff !important; }

body[data-sidebar="colored"] #sidebar-menu ul li.menu-title {
  color: rgba(255, 255, 255, 0.7); }

body[data-sidebar="colored"] #sidebar-menu ul li a {
  color: rgba(255, 255, 255, 0.7); }
  body[data-sidebar="colored"] #sidebar-menu ul li a i {
    color: rgba(255, 255, 255, 0.7); }
  body[data-sidebar="colored"] #sidebar-menu ul li a.waves-effect .waves-ripple {
    background: rgba(255, 255, 255, 0.1); }

body[data-sidebar="colored"] #sidebar-menu ul li ul.sub-menu li a {
  color: rgba(255, 255, 255, 0.6); }

body[data-sidebar="colored"] #sidebar-menu ul li .badge.badge-primary {
  background-color: #fff;
  color: #d51920; }

body[data-sidebar="colored"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a {
  background-color: #de1a21;
  color: #fff; }
  body[data-sidebar="colored"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a i {
    color: #fff; }

body[data-sidebar="colored"] body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu ul li.mm-active .active {
  color: #5b73e8 !important; }

.pro-status-halt {
  background-color: #f5dbd9 !important;
  color: #a32100 !important; }

.pro-status-process {
  background-color: #fff2cb !important;
  color: #6b5719 !important; }

.pro-status-success {
  background-color: #d7ebe1 !important;
  color: #32b175 !important; }

.mt-open {
  background-color: #d1dde8 !important;
  color: #0e4d86 !important; }

.mt-proccess {
  background-color: #f5ecd4 !important;
  color: #f15914 !important; }

.mt-cancel {
  background-color: #e3cbc7 !important;
  color: #a32100 !important; }

.mt-dispatch {
  background-color: #cfd1d4 !important;
  color: #343435 !important; }

.notification-header {
  border-bottom: 1px solid #f4f0f1;
  padding-right: 15px;
  padding-left: 42px; }

.read-button {
  background-color: #d51920;
  color: white;
  border-radius: 6px;
  border: none;
  padding: 3px 7px; }

.margin-notification {
  margin-left: 5px; }

.image-profile {
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important; }

.notification-button {
  width: 24px;
  height: 24px; }

.notification-padding {
  width: 17px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #d51920;
  color: white;
  right: -5px;
  /* top: -21px; */
  position: absolute;
  top: -5px; }

.close-img {
  width: 24px;
  height: 24px; }

.muted-text {
  color: #717171; }

.created-text {
  font-size: 13px; }

.topnav {
  background: #fff;
  padding: 0 calc(1.25rem / 2);
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  left: 0;
  right: 0;
  z-index: 100; }
  .topnav .topnav-menu {
    margin: 0;
    padding: 0; }
  .topnav .navbar-nav .nav-link {
    font-size: 14.5px;
    position: relative;
    padding: 1rem 1.3rem;
    color: #383838; }
    .topnav .navbar-nav .nav-link i {
      font-size: 15px; }
    .topnav .navbar-nav .nav-link:focus, .topnav .navbar-nav .nav-link:hover {
      color: #d51920;
      background-color: transparent; }
  .topnav .navbar-nav .dropdown-item {
    color: #383838; }
    .topnav .navbar-nav .dropdown-item.active, .topnav .navbar-nav .dropdown-item:hover {
      color: #d51920;
      background-color: transparent; }
  .topnav .navbar-nav .nav-item .nav-link.active {
    color: #d51920; }
  .topnav .navbar-nav .dropdown.active > a {
    color: #d51920;
    background-color: transparent; }

body[data-layout="horizontal"] #page-topbar {
  left: 0; }
  @media (min-width: 992px) {
    body[data-layout="horizontal"] #page-topbar {
      padding: 0 calc(1.25rem / 2); } }

body[data-layout="horizontal"] .navbar-brand-box {
  position: relative;
  width: auto;
  display: block;
  background-color: transparent; }
  @media (min-width: 992px) {
    body[data-layout="horizontal"] .navbar-brand-box {
      padding-left: 0; } }

@media (min-width: 992px) {
  body[data-layout="horizontal"] .topnav {
    margin-top: 24px;
    margin-bottom: -16px;
    border-radius: 4px; }
  body[data-layout="horizontal"] .navbar-header {
    padding: 0 calc(1.25rem / 2); } }

@media (min-width: 1200px) {
  body[data-layout="horizontal"] .container-fluid, body[data-layout="horizontal"] .container-sm, body[data-layout="horizontal"] .container-md, body[data-layout="horizontal"] .container-lg, body[data-layout="horizontal"] .container-xl, body[data-layout="horizontal"] .container-xxl,
  body[data-layout="horizontal"] .navbar-header {
    max-width: 85%; } }

@media (min-width: 992px) {
  .topnav .dropdown-item {
    padding: .5rem 1.5rem;
    min-width: 180px; }
  .topnav .dropdown.mega-dropdown .mega-dropdown-menu {
    left: 0px;
    right: auto; }
  .topnav .dropdown .dropdown-menu {
    margin-top: 0;
    border-radius: 0 0 0.25rem 0.25rem; }
    .topnav .dropdown .dropdown-menu .arrow-down::after {
      right: 15px;
      transform: rotate(-135deg) translateY(-50%);
      position: absolute; }
    .topnav .dropdown .dropdown-menu .dropdown .dropdown-menu {
      position: absolute;
      top: 0 !important;
      left: 100%;
      display: none; }
  .topnav .dropdown:hover > .dropdown-menu {
    display: block; }
  .topnav .dropdown:hover > .dropdown-menu > .dropdown:hover > .dropdown-menu {
    display: block; }
  .navbar-toggle {
    display: none; } }

.arrow-down {
  display: inline-block; }
  .arrow-down:after {
    border-color: initial;
    border-style: solid;
    border-width: 0 0 1px 1px;
    content: "";
    height: .4em;
    display: inline-block;
    right: 5px;
    top: 50%;
    margin-left: 10px;
    transform: rotate(-45deg) translateY(-50%);
    transform-origin: top;
    transition: all .3s ease-out;
    width: .4em; }

@media (max-width: 991.98px) {
  .topnav-menu .navbar-nav li:last-of-type .dropdown .dropdown-menu {
    right: 100%;
    left: auto; } }

@media (max-width: 991.98px) {
  body[data-layout="horizontal"] .navbar-brand-box .logo-dark {
    display: block; }
    body[data-layout="horizontal"] .navbar-brand-box .logo-dark span.logo-sm {
      display: block; }
  body[data-layout="horizontal"] .navbar-brand-box .logo-light {
    display: none; }
  .topnav {
    position: fixed;
    max-height: 360px;
    overflow-y: auto;
    padding: 0; }
    .topnav .navbar-nav .nav-link {
      padding: 0.75rem 1.1rem; }
    .topnav .dropdown .dropdown-menu {
      background-color: transparent;
      border: none;
      box-shadow: none;
      padding-left: 15px; }
      .topnav .dropdown .dropdown-menu.dropdown-mega-menu-xl {
        width: auto; }
        .topnav .dropdown .dropdown-menu.dropdown-mega-menu-xl .row {
          margin: 0px; }
    .topnav .dropdown .dropdown-item {
      position: relative;
      background-color: transparent; }
      .topnav .dropdown .dropdown-item.active, .topnav .dropdown .dropdown-item:active {
        color: #d51920; }
    .topnav .arrow-down::after {
      right: 15px;
      position: absolute; } }

@media (min-width: 992px) {
  body[data-layout="horizontal"][data-topbar="light"] .navbar-brand-box .logo-dark {
    display: block; }
  body[data-layout="horizontal"][data-topbar="light"] .navbar-brand-box .logo-light {
    display: none; }
  body[data-layout="horizontal"][data-topbar="light"] .topnav {
    background-color: #d51920; }
    body[data-layout="horizontal"][data-topbar="light"] .topnav .navbar-nav .nav-link {
      color: rgba(255, 255, 255, 0.6); }
      body[data-layout="horizontal"][data-topbar="light"] .topnav .navbar-nav .nav-link:focus, body[data-layout="horizontal"][data-topbar="light"] .topnav .navbar-nav .nav-link:hover {
        color: rgba(255, 255, 255, 0.9); }
    body[data-layout="horizontal"][data-topbar="light"] .topnav .navbar-nav > .dropdown.active > a {
      color: rgba(255, 255, 255, 0.9) !important; } }

body[data-layout="horizontal"][data-topbar="colored"] #page-topbar {
  background-color: #d51920;
  box-shadow: none; }

body[data-layout="horizontal"][data-topbar="colored"] .logo-dark {
  display: none; }

body[data-layout="horizontal"][data-topbar="colored"] .logo-light {
  display: block; }

body[data-layout="horizontal"][data-topbar="colored"] .app-search .form-control {
  background-color: rgba(0, 0, 0, 0.07);
  color: #fff; }

body[data-layout="horizontal"][data-topbar="colored"] .app-search span,
body[data-layout="horizontal"][data-topbar="colored"] .app-search input.form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5); }

body[data-layout="horizontal"][data-topbar="colored"] .header-item {
  color: #e9ecef; }
  body[data-layout="horizontal"][data-topbar="colored"] .header-item:hover {
    color: #e9ecef; }

body[data-layout="horizontal"][data-topbar="colored"] .navbar-header .dropdown .show.header-item {
  background-color: rgba(255, 255, 255, 0.1); }

body[data-layout="horizontal"][data-topbar="colored"] .navbar-header .waves-effect .waves-ripple {
  background: rgba(255, 255, 255, 0.4); }

body[data-layout="horizontal"][data-topbar="colored"] .noti-icon i {
  color: #e9ecef; }

body[data-layout-size="boxed"] {
  background-color: #e9ebf0; }
  body[data-layout-size="boxed"] #layout-wrapper {
    background-color: var(--bs-body-bg);
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
  body[data-layout-size="boxed"] #page-topbar {
    max-width: calc(1300px - 238px);
    margin: 0 auto; }
  body[data-layout-size="boxed"] .footer {
    margin: 0 auto;
    max-width: calc(1300px - 238px); }
  body[data-layout-size="boxed"].vertical-collpsed #page-topbar {
    max-width: calc(1300px - 70px); }
  body[data-layout-size="boxed"].vertical-collpsed .footer {
    max-width: calc(1300px - 70px); }

body[data-layout="horizontal"][data-layout-size="boxed"] #page-topbar, body[data-layout="horizontal"][data-layout-size="boxed"] #layout-wrapper, body[data-layout="horizontal"][data-layout-size="boxed"] .footer {
  max-width: 100%; }

body[data-layout="horizontal"][data-layout-size="boxed"] .container-fluid, body[data-layout="horizontal"][data-layout-size="boxed"] .container-sm, body[data-layout="horizontal"][data-layout-size="boxed"] .container-md, body[data-layout="horizontal"][data-layout-size="boxed"] .container-lg, body[data-layout="horizontal"][data-layout-size="boxed"] .container-xl, body[data-layout="horizontal"][data-layout-size="boxed"] .container-xxl, body[data-layout="horizontal"][data-layout-size="boxed"] .navbar-header {
  max-width: 1300px; }

/*!
 * Waves v0.7.6
 * http://fian.my.id/Waves 
 * 
 * Copyright 2014-2018 Alfiana E. Sibuea and other contributors 
 * Released under the MIT license 
 * https://github.com/fians/Waves/blob/master/LICENSE */
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

.waves-effect .waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  background: radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
  transition: all 0.5s ease-out;
  transition-property: transform, opacity;
  transform: scale(0) translate(0, 0);
  pointer-events: none; }

.waves-effect.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.4);
  background: radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }

.waves-effect.waves-classic .waves-ripple {
  background: rgba(0, 0, 0, 0.2); }

.waves-effect.waves-classic.waves-light .waves-ripple {
  background: rgba(255, 255, 255, 0.4); }

.waves-notransition {
  transition: none !important; }

.waves-button,
.waves-circle {
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }

.waves-button,
.waves-button:hover,
.waves-button:visited,
.waves-button-input {
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  outline: none;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1em;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  z-index: 1; }

.waves-button {
  padding: 0.85em 1.1em;
  border-radius: 0.2em; }

.waves-button-input {
  margin: 0;
  padding: 0.85em 1.1em; }

.waves-input-wrapper {
  border-radius: 0.2em;
  vertical-align: bottom; }

.waves-input-wrapper.waves-button {
  padding: 0; }

.waves-input-wrapper .waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1; }

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%; }

.waves-float {
  -webkit-mask-image: none;
  box-shadow: 0px 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  transition: all 300ms; }

.waves-float:active {
  box-shadow: 0px 8px 20px 1px rgba(0, 0, 0, 0.3); }

.waves-block {
  display: block; }

.waves-effect.waves-light .waves-ripple {
  background-color: rgba(255, 255, 255, 0.4); }

.waves-effect.waves-primary .waves-ripple {
  background-color: rgba(213, 25, 32, 0.4); }

.waves-effect.waves-success .waves-ripple {
  background-color: rgba(29, 211, 176, 0.4); }

.waves-effect.waves-info .waves-ripple {
  background-color: rgba(13, 88, 193, 0.4); }

.waves-effect.waves-warning .waves-ripple {
  background-color: rgba(241, 180, 76, 0.4); }

.waves-effect.waves-danger .waves-ripple {
  background-color: rgba(242, 92, 84, 0.4); }

.avatar-xs {
  height: 2rem;
  width: 2rem; }

.avatar-sm {
  height: 3rem;
  width: 3rem; }

.avatar-md {
  height: 4.5rem;
  width: 4.5rem; }

.avatar-lg {
  height: 6rem;
  width: 6rem; }

.avatar-xl {
  height: 7.5rem;
  width: 7.5rem; }

.avatar-title {
  align-items: center;
  background-color: #d51920;
  color: #fff;
  display: flex;
  font-weight: 500;
  height: 100%;
  justify-content: center;
  width: 100%; }

.alert-border {
  background-color: #fff;
  border-color: var(--bs-light);
  border-top: 2px solid var(--bs-light); }

.alert-dismissible .btn-close {
  font-size: 10px;
  padding: 1.05rem 1.25rem;
  box-shadow: none;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat; }

.alert-border .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat; }

.alert-border-primary {
  border-top-color: #d51920; }

.alert-border-secondary {
  border-top-color: #fff; }

.alert-border-success {
  border-top-color: #1dd3b0; }

.alert-border-info {
  border-top-color: #0d58c1; }

.alert-border-warning {
  border-top-color: #f1b44c; }

.alert-border-danger {
  border-top-color: #f25c54; }

.alert-border-pink {
  border-top-color: #e83e8c; }

.alert-border-light {
  border-top-color: #f5f6f8; }

.alert-border-dark {
  border-top-color: #343a40; }

.alert-border-purple {
  border-top-color: #6f42c1; }

.custom-accordion .card + .card {
  margin-top: 0.5rem; }

.custom-accordion a.collapsed i.accor-down-icon:before {
  content: "\F0140"; }

.custom-accordion .card-body {
  color: #74788d; }

[data-layout-mode="dark"] .accordion-button:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23adb5bd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }

.row > * {
  position: relative; }

.font-size-10 {
  font-size: 10px !important; }

.font-size-11 {
  font-size: 11px !important; }

.font-size-12 {
  font-size: 12px !important; }

.font-size-13 {
  font-size: 13px !important; }

.font-size-14 {
  font-size: 14px !important; }

.font-size-15 {
  font-size: 15px !important; }

.font-size-16 {
  font-size: 16px !important; }

.font-size-17 {
  font-size: 17px !important; }

.font-size-18 {
  font-size: 18px !important; }

.font-size-20 {
  font-size: 20px !important; }

.font-size-22 {
  font-size: 22px !important; }

.font-size-24 {
  font-size: 24px !important; }

.fw-medium {
  font-weight: 500; }

.fw-semibold {
  font-weight: 600; }

.social-list-item {
  height: 2rem;
  width: 2rem;
  line-height: calc(2rem - 2px);
  display: block;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  color: #adb5bd;
  text-align: center;
  transition: all 0.4s; }
  .social-list-item:hover {
    color: #74788d;
    background-color: #f5f6f8; }

.w-xs {
  min-width: 80px; }

.w-sm {
  min-width: 95px; }

.w-md {
  min-width: 110px; }

.w-lg {
  min-width: 140px; }

.w-xl {
  min-width: 160px; }

.border-dark {
  border-color: var(--bs-dark) !important; }

.border-light {
  border-color: var(--bs-light) !important; }

[data-layout-mode="dark"] .text-body {
  color: var(--bs-gray-400) !important; }

[data-layout-mode="dark"] .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%); }

[data-layout-mode="dark"] .btn-close-white {
  filter: invert(0) grayscale(100%) brightness(200%); }

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9999; }

#status {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: -20px 0 0 -20px; }

.spinner .spin-icon {
  font-size: 48px;
  color: #d51920;
  position: relative;
  display: inline-block;
  animation: spin 1.6s infinite linear; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(359deg); } }

.mandatory {
  color: red;
  font-size: 12px; }

.flex-show {
  display: flex; }

.customHeading {
  font-weight: bold;
  font-size: 18px; }

.p-15 {
  padding: 15px; }

.title {
  padding-left: 15px; }

.value {
  font-weight: bold; }

.bank-detail-card {
  background: #b3d3eb;
  color: #82aecf; }
  .bank-detail-card h5, .bank-detail-card .h5 {
    color: #82aecf;
    padding-left: 15px; }

.enquiry-card {
  background: #82aecf;
  color: white; }

.purchases-card {
  background: #5382a5;
  color: white; }
  .purchases-card h5, .purchases-card .h5 {
    color: white;
    padding-left: 15px; }

.active-button {
  background: aquamarine;
  border-radius: 20px;
  border: none; }

.main-chart .chart-border-left {
  border-left: 1.4px solid #f5f6f8;
  padding: 2px 20px; }
  .main-chart .chart-border-left:last-child {
    margin-right: 0px; }

/* Activity */
.activity-feed {
  list-style: none; }
  .activity-feed .feed-item {
    position: relative;
    padding-bottom: 27px;
    padding-left: 16px;
    border-left: 2px solid var(--bs-light); }
    .activity-feed .feed-item:after {
      content: "";
      display: block;
      position: absolute;
      top: 4px;
      left: -6px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid #d51920;
      background-color: #fff; }
    .activity-feed .feed-item:last-child {
      border-color: transparent; }

.mfp-popup-form {
  max-width: 1140px; }

.bs-example-modal {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  display: block; }

.icon-demo-content {
  text-align: center;
  color: var(--bs-gray-500); }
  .icon-demo-content i {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 24px;
    margin: 0px auto 16px;
    border: 2px solid var(--bs-gray-300);
    color: var(--bs-gray-600);
    border-radius: 4px;
    transition: all 0.4s; }
  .icon-demo-content .col-lg-4 {
    margin-top: 24px; }
    .icon-demo-content .col-lg-4:hover i {
      color: #fff;
      background-color: #d51920;
      border-color: #d51920; }

.grid-structure .grid-container {
  background-color: #fbfbfb;
  margin-top: 10px;
  font-size: .8rem;
  font-weight: 500;
  padding: 10px 20px; }

.card-radio {
  background-color: #fff;
  border: 2px solid #f6f6f6;
  border-radius: 0.25rem;
  padding: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block; }
  .card-radio:hover {
    cursor: pointer; }

.card-radio-label {
  display: block; }

.card-radio-input {
  display: none; }
  .card-radio-input:checked + .card-radio {
    border-color: #d51920 !important; }
    .card-radio-input:checked + .card-radio:before {
      content: '\e9c3';
      font-family: "unicons-line";
      position: absolute;
      top: 5px;
      right: 20px;
      font-size: 22px;
      color: #d51920; }

.navs-carousel .owl-nav {
  margin-top: 16px; }
  .navs-carousel .owl-nav button {
    width: 30px;
    height: 30px;
    line-height: 28px !important;
    font-size: 20px !important;
    border-radius: 50% !important;
    background-color: rgba(213, 25, 32, 0.25) !important;
    color: #d51920 !important;
    margin: 4px 8px !important; }

@media print {
  .vertical-menu,
  .right-bar,
  .page-title-box,
  .navbar-header,
  .print-hide,
  .footer {
    display: none !important; }
  .card-body,
  .main-content,
  .right-bar,
  .page-content,
  body {
    padding: 0 !important;
    margin: 0 !important; }
  .card {
    border: 0; }
  .print-width-60 {
    width: 60%;
    float: left; }
  .print-width-40 {
    width: 40%;
    float: left; }
  .print-width-55 {
    width: 55%;
    float: left; }
  .print-width-50 {
    width: 50%;
    float: left; }
  .print-width-45 {
    width: 45%;
    float: left; }
  .print-col-2 {
    width: 16.66667%; }
  .purchase-detail-card, .proforma-detail-card, .print-card, .quotation-detail-card {
    box-shadow: none; }
  .print-align-right {
    text-align: right; } }

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start; }

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit; }

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
  background: #fff;
  border-right: 1px solid #F4F0F1; }

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0 !important;
  bottom: 0;
  right: 0 !important;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch; }

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  visibility: visible;
  overflow: auto;
  /* Scroll on this element otherwise element can't have a padding applied properly */
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
  padding: 0px !important; }

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none; }

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table; }

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none; }

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0; }

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1; }

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden; }

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none; }

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all; }

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 6px;
  min-height: 10px; }

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: #a2adb7;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s linear; }

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  transition: opacity 0s linear; }

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px; }

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px; }

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px; }

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px; }

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto; }

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0; }

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll; }

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none; }

.custom-scroll {
  height: 100%; }

/* ==============
  Calendar
===================*/
.fc td, .fc th {
  border: 1px solid #f5f6f8; }

.fc .fc-toolbar h2, .fc .fc-toolbar .h2 {
  font-size: 16px;
  line-height: 30px;
  text-transform: uppercase; }

@media (max-width: 767.98px) {
  .fc .fc-toolbar .fc-left,
  .fc .fc-toolbar .fc-right,
  .fc .fc-toolbar .fc-center {
    float: none;
    display: block;
    text-align: center;
    clear: both;
    margin: 10px 0; }
  .fc .fc-toolbar > * > * {
    float: none; }
  .fc .fc-toolbar .fc-today-button {
    display: none; } }

.fc .fc-toolbar .btn {
  text-transform: capitalize; }

.fc th.fc-widget-header {
  background: #f6f6f6;
  color: #495057;
  line-height: 20px;
  padding: 10px 0;
  text-transform: uppercase;
  font-weight: 600; }

.fc-unthemed .fc-content,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-list-heading td,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-row,
.fc-unthemed tbody,
.fc-unthemed td,
.fc-unthemed th,
.fc-unthemed thead {
  border-color: #f6f6f6; }

.fc-unthemed td.fc-today {
  background: #fbfbfc; }

.fc-button {
  background: #fff;
  border-color: #f5f6f8;
  color: #495057;
  text-transform: capitalize;
  box-shadow: none;
  padding: 6px 12px !important;
  height: auto !important; }

.fc-state-down,
.fc-state-active,
.fc-state-disabled {
  background-color: #d51920;
  color: #fff;
  text-shadow: none; }

.fc-event {
  border-radius: 2px;
  border: none;
  cursor: move;
  font-size: 0.8125rem;
  margin: 5px 7px;
  padding: 5px 5px;
  text-align: center; }

.fc-event,
.fc-event-dot {
  background-color: #d51920; }

.fc-event .fc-content {
  color: #fff; }

#external-events .external-event {
  text-align: left;
  padding: 8px 16px; }

.fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end.bg-dark .fc-content {
  color: var(--bs-light); }

[dir="rtl"] .fc-header-toolbar {
  direction: ltr !important; }

[dir="rtl"] .fc-toolbar > * > :not(:first-child) {
  margin-left: .75em; }

#session-timeout-dialog .close {
  display: none; }

#session-timeout-dialog .countdown-holder {
  color: #f25c54;
  font-weight: 500; }

#session-timeout-dialog .btn-default {
  background-color: #fff;
  color: #f25c54;
  box-shadow: none; }

.irs {
  font-family: "Open Sans"; }

.irs--round {
  cursor: pointer; }
  .irs--round .irs-bar, .irs--round .irs-to, .irs--round .irs-from, .irs--round .irs-single {
    background: #d51920 !important;
    font-size: 11px; }
  .irs--round .irs-to:before, .irs--round .irs-from:before, .irs--round .irs-single:before {
    display: none; }
  .irs--round .irs-line {
    background: var(--bs-gray-300);
    border-color: var(--bs-gray-300); }
  .irs--round .irs-grid-text {
    font-size: 11px;
    color: #adb5bd; }
  .irs--round .irs-min, .irs--round .irs-max {
    color: #adb5bd;
    background: var(--bs-gray-300);
    font-size: 11px; }
  .irs--round .irs-handle {
    border: 1px solid #d51920;
    width: 6px;
    height: 16px;
    top: 29px;
    background-color: var(--bs-card-bg) !important;
    cursor: pointer; }
    .irs--round .irs-handle:active {
      cursor: pointer; }

.swal2-container .swal2-title {
  font-size: 24px;
  font-weight: 500; }

.swal2-content {
  font-size: 16px; }

.swal2-icon.swal2-question {
  border-color: #0d58c1;
  color: #0d58c1; }

.swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #1dd3b0; }

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(29, 211, 176, 0.3); }

.swal2-icon.swal2-warning {
  border-color: #f1b44c;
  color: #f1b44c; }

.swal2-styled:focus {
  box-shadow: none; }

.swal2-progress-steps .swal2-progress-step {
  background: #d51920; }
  .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
    background: #d51920; }
    .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step, .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
      background: rgba(213, 25, 32, 0.3); }

.swal2-progress-steps .swal2-progress-step-line {
  background: #d51920; }

.swal2-loader {
  border-color: #d51920 transparent #d51920 transparent; }

.br-wrapper {
  display: inline-block; }

.br-theme-fontawesome-stars .br-widget a, .br-theme-css-stars .br-widget a {
  font-weight: 900; }
  .br-theme-fontawesome-stars .br-widget a.br-selected:after, .br-theme-css-stars .br-widget a.br-selected:after {
    color: #f1b44c; }

.br-theme-fontawesome-stars .br-widget a {
  font-weight: 900; }

.br-theme-fontawesome-stars .br-widget a, .br-theme-fontawesome-stars-o .br-widget a {
  font-family: 'Font Awesome 5 Free'; }

.br-theme-fontawesome-stars-o .br-widget a.br-selected:after, .br-theme-fontawesome-stars-o .br-widget a.br-active:after, .br-theme-fontawesome-stars-o .br-widget a.br-fractional:after {
  font-weight: 900;
  color: #1dd3b0; }

.br-theme-fontawesome-stars-o .br-widget a.br-fractional:after, .br-theme-fontawesome-stars-o .br-widget a:after {
  content: '\f005'; }

.hidden {
  display: none !important;
  visibility: hidden; }

.br-theme-bars-1to10 .br-widget .br-current-rating {
  line-height: inherit; }

/* =============
   Notification
============= */
#toast-container > div {
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  opacity: 1; }
  #toast-container > div:hover {
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
    opacity: 0.9; }

#toast-container.toast-top-full-width > div, #toast-container.toast-bottom-full-width > div {
  min-width: 96%;
  margin: 4px auto; }

.toast-primary {
  border: 2px solid #d51920 !important;
  background-color: rgba(213, 25, 32, 0.8) !important; }

.toast-secondary {
  border: 2px solid #fff !important;
  background-color: rgba(255, 255, 255, 0.8) !important; }

.toast-success {
  border: 2px solid #1dd3b0 !important;
  background-color: rgba(29, 211, 176, 0.8) !important; }

.toast-info {
  border: 2px solid #0d58c1 !important;
  background-color: rgba(13, 88, 193, 0.8) !important; }

.toast-warning {
  border: 2px solid #f1b44c !important;
  background-color: rgba(241, 180, 76, 0.8) !important; }

.toast-danger {
  border: 2px solid #f25c54 !important;
  background-color: rgba(242, 92, 84, 0.8) !important; }

.toast-pink {
  border: 2px solid #e83e8c !important;
  background-color: rgba(232, 62, 140, 0.8) !important; }

.toast-light {
  border: 2px solid #f5f6f8 !important;
  background-color: rgba(245, 246, 248, 0.8) !important; }

.toast-dark {
  border: 2px solid #343a40 !important;
  background-color: rgba(52, 58, 64, 0.8) !important; }

.toast-purple {
  border: 2px solid #6f42c1 !important;
  background-color: rgba(111, 66, 193, 0.8) !important; }

.toast-error {
  background-color: rgba(242, 92, 84, 0.8);
  border: 2px solid #f25c54; }

.toastr-options {
  padding: 24px;
  background-color: var(--bs-gray-200);
  margin-bottom: 0;
  border: 1px solid #f5f6f8; }

.error {
  color: #f25c54; }

.parsley-error {
  border-color: #f25c54; }

.parsley-errors-list {
  display: none;
  margin: 0;
  padding: 0; }
  .parsley-errors-list.filled {
    display: block; }
  .parsley-errors-list > li {
    font-size: 12px;
    list-style: none;
    color: #f25c54;
    margin-top: 5px; }

.select2-container .select2-selection--single {
  background-color: #fff;
  border: 1px solid #ced4da;
  height: 38px; }
  .select2-container .select2-selection--single:focus {
    outline: none; }
  .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    padding-left: 12px;
    color: #212529; }
  .select2-container .select2-selection--single .select2-selection__arrow {
    height: 34px;
    width: 34px;
    right: 3px; }
    .select2-container .select2-selection--single .select2-selection__arrow b {
      border-color: #adb5bd transparent transparent transparent;
      border-width: 6px 6px 0 6px; }
  .select2-container .select2-selection--single .select2-selection__placeholder {
    color: #212529; }

[dir="rtl"] .select2-selection__rendered {
  text-align: end; }

.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #adb5bd transparent !important;
  border-width: 0 6px 6px 6px !important; }

.select2-container--default .select2-search--dropdown {
  padding: 10px;
  background-color: #fff; }
  .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    background-color: #fff;
    color: #74788d;
    outline: none; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #d51920; }

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #fbfbfb;
  color: #2c3034; }
  .select2-container--default .select2-results__option[aria-selected="true"]:hover {
    background-color: #d51920;
    color: #fff; }

.select2-results__option {
  padding: 6px 12px; }

.select2-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }

.select2-search input {
  border: 1px solid #f6f6f6; }

.select2-container .select2-selection--multiple {
  min-height: 38px;
  background-color: #fff;
  border: 1px solid #ced4da !important; }
  .select2-container .select2-selection--multiple .select2-selection__rendered {
    padding: 2px 10px; }
  .select2-container .select2-selection--multiple .select2-search__field {
    border: 0;
    color: #212529; }
    .select2-container .select2-selection--multiple .select2-search__field::placeholder {
      color: #212529; }
  .select2-container .select2-selection--multiple .select2-selection__choice {
    background-color: var(--bs-gray-200);
    border: 1px solid var(--bs-gray-200);
    border-radius: 1px;
    padding: 0 7px; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #ced4da; }

.select2-container--default .select2-results__group {
  font-weight: 600; }

.select2-result-repository__avatar {
  float: left;
  width: 60px;
  margin-right: 10px; }
  .select2-result-repository__avatar img {
    width: 100%;
    height: auto;
    border-radius: 2px; }

.select2-result-repository__statistics {
  margin-top: 7px; }

.select2-result-repository__forks,
.select2-result-repository__stargazers,
.select2-result-repository__watchers {
  display: inline-block;
  font-size: 11px;
  margin-right: 1em;
  color: #adb5bd; }
  .select2-result-repository__forks .fa,
  .select2-result-repository__stargazers .fa,
  .select2-result-repository__watchers .fa {
    margin-right: 4px; }
    .select2-result-repository__forks .fa.fa-flash::before,
    .select2-result-repository__stargazers .fa.fa-flash::before,
    .select2-result-repository__watchers .fa.fa-flash::before {
      content: "\f0e7";
      font-family: "Font Awesome 5 Free"; }

.select2-results__option--highlighted .select2-result-repository__forks,
.select2-results__option--highlighted .select2-result-repository__stargazers,
.select2-results__option--highlighted .select2-result-repository__watchers {
  color: rgba(255, 255, 255, 0.8); }

.select2-result-repository__meta {
  overflow: hidden; }

.img-flag {
  margin-right: 7px;
  height: 15px;
  width: 18px; }

/* CSS Switch */
input[switch] {
  display: none; }
  input[switch] + label {
    font-size: 1em;
    line-height: 1;
    width: 56px;
    height: 24px;
    background-color: #ced4da;
    background-image: none;
    border-radius: 2rem;
    padding: 0.16667rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    font-weight: 500;
    transition: all 0.1s ease-in-out; }
    input[switch] + label:before {
      color: #343a40;
      content: attr(data-off-label);
      display: block;
      font-family: inherit;
      font-weight: 500;
      font-size: 12px;
      line-height: 21px;
      position: absolute;
      right: 1px;
      margin: 3px;
      top: -2px;
      text-align: center;
      min-width: 1.66667rem;
      overflow: hidden;
      transition: all 0.1s ease-in-out; }
    input[switch] + label:after {
      content: '';
      position: absolute;
      left: 3px;
      background-color: #f5f6f8;
      box-shadow: none;
      border-radius: 2rem;
      height: 20px;
      width: 20px;
      top: 2px;
      transition: all 0.1s ease-in-out; }
  input[switch]:checked + label {
    background-color: #d51920; }

input[switch]:checked + label {
  background-color: #d51920; }
  input[switch]:checked + label:before {
    color: #fbfbfb;
    content: attr(data-on-label);
    right: auto;
    left: 3px; }
  input[switch]:checked + label:after {
    left: 33px;
    background-color: #f5f6f8; }

input[switch="bool"] + label {
  background-color: #f25c54; }

input[switch="bool"] + label:before, input[switch="bool"]:checked + label:before,
input[switch="default"]:checked + label:before {
  color: #fff; }

input[switch="bool"]:checked + label {
  background-color: #1dd3b0; }

input[switch="default"]:checked + label {
  background-color: #a2a2a2; }

input[switch="primary"]:checked + label {
  background-color: #d51920; }

input[switch="success"]:checked + label {
  background-color: #1dd3b0; }

input[switch="info"]:checked + label {
  background-color: #0d58c1; }

input[switch="warning"]:checked + label {
  background-color: #f1b44c; }

input[switch="danger"]:checked + label {
  background-color: #f25c54; }

input[switch="dark"]:checked + label {
  background-color: #343a40; }

.square-switch {
  margin-right: 7px; }
  .square-switch input[switch] + label, .square-switch input[switch] + label:after {
    border-radius: 4px; }

.sp-container {
  background-color: #fff;
  z-index: 999; }
  .sp-container button {
    padding: .25rem .5rem;
    font-size: .71094rem;
    border-radius: .2rem;
    font-weight: 400;
    color: #343a40; }
    .sp-container button.sp-palette-toggle {
      background-color: #f5f6f8; }
    .sp-container button.sp-choose {
      background-color: #1dd3b0; }

.sp-palette-container {
  border-color: #f5f6f8; }

.sp-input {
  background-color: #fff;
  border-color: #ced4da !important;
  color: #212529; }
  .sp-input:focus {
    outline: none; }

[dir="rtl"] .sp-alpha {
  direction: rtl; }

[dir="rtl"] .sp-original-input-container .sp-add-on {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important; }

[dir="rtl"] input.spectrum.with-add-on {
  border: 1px solid #ced4da;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem; }

[dir="rtl"] .datepicker {
  right: 0 !important;
  left: auto; }

[dir="rtl"] .bootstrap-timepicker-widget {
  right: 0 !important;
  left: auto; }

[dir="rtl"] .timepicker-orient-top {
  top: calc(1.5em + 0.94rem + 2px) !important; }

[dir="rtl"] .timepicker-orient-bottom {
  top: auto !important;
  bottom: calc(1.5em + 0.94rem + 2px) !important; }

.datepicker {
  border: 1px solid #f5f6f8;
  padding: 8px;
  z-index: 999 !important; }
  .datepicker table tr th {
    font-weight: 500; }
  .datepicker table tr td.active, .datepicker table tr td.active:hover,
  .datepicker table tr td .active.disabled, .datepicker table tr td.active.disabled:hover, .datepicker table tr td.today, .datepicker table tr td.today:hover, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.selected, .datepicker table tr td.selected:hover, .datepicker table tr td.selected.disabled, .datepicker table tr td.selected.disabled:hover,
  .datepicker table tr td span.active.active,
  .datepicker table tr td span.active:hover.active {
    background-color: #d51920 !important;
    background-image: none;
    box-shadow: none;
    color: #fff !important; }
  .datepicker table tr td.day.focused, .datepicker table tr td.day:hover,
  .datepicker table tr td span.focused,
  .datepicker table tr td span:hover {
    background: #f5f6f8; }
  .datepicker table tr td.new, .datepicker table tr td.old,
  .datepicker table tr td span.new,
  .datepicker table tr td span.old {
    color: #adb5bd;
    opacity: 0.6; }
  .datepicker table tr td.range, .datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:hover, .datepicker table tr td.range:hover {
    background-color: #f6f6f6; }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > td {
  padding: 7px; }

.bootstrap-datepicker-inline .datepicker-inline {
  width: auto !important;
  display: inline-block; }

.datepicker-container {
  border: 1px solid #f5f6f8;
  box-shadow: none;
  background-color: #fff; }
  .datepicker-container.datepicker-inline {
    width: 212px; }

.datepicker-panel > ul > li {
  background-color: #fff;
  border-radius: 4px; }
  .datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover {
    background-color: rgba(213, 25, 32, 0.25);
    color: #d51920; }
  .datepicker-panel > ul > li.highlighted, .datepicker-panel > ul > li.highlighted:hover, .datepicker-panel > ul > li:hover {
    background-color: #d51920;
    color: #fff; }
  .datepicker-panel > ul > li.muted, .datepicker-panel > ul > li.muted:hover {
    color: #adb5bd;
    opacity: 0.6; }

.datepicker-panel > ul[data-view="week"] > li {
  font-weight: 500; }

.datepicker-panel > ul[data-view="week"] > li,
.datepicker-panel > ul[data-view="week"] > li:hover {
  background-color: #fff; }

.flatpickr-input[readonly] {
  background-color: #fff; }

.flatpickr-months,
.flatpickr-weekdays {
  background-color: #d51920; }

span.flatpickr-weekday {
  color: #fff;
  font-weight: 500; }

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background-color: transparent !important; }

.flatpickr-am-pm:focus, .flatpickr-am-pm:hover,
.numInput:focus,
.numInput:hover,
.numInputWrapper:focus,
.numInputWrapper:hover {
  background-color: transparent !important; }

.flatpickr-weekdays {
  height: 36px !important;
  border-bottom: 1px solid #f5f6f8; }

.flatpickr-day {
  color: var(--bs-dark) !important; }
  .flatpickr-day:hover, .flatpickr-day:focus {
    background-color: rgba(245, 246, 248, 0.7) !important; }
  .flatpickr-day.today {
    border-color: #d51920 !important;
    background-color: rgba(213, 25, 32, 0.1); }
    .flatpickr-day.today:hover, .flatpickr-day.today:focus {
      color: var(--bs-dark) !important;
      background-color: rgba(213, 25, 32, 0.15) !important; }
  .flatpickr-day.selected {
    background-color: #d51920 !important;
    border-color: #d51920 !important;
    color: #fff !important; }
  .flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
    color: rgba(var(--bs-dark), 0.3) !important; }
  .flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
    background-color: var(--bs-light) !important;
    border-color: var(--bs-light) !important; }
  .flatpickr-day.inRange {
    box-shadow: -5px 0 0 #f5f6f8, 5px 0 0 #f5f6f8; }

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month,
.flatpickr-months .flatpickr-month {
  color: rgba(255, 255, 255, 0.9) !important;
  fill: rgba(255, 255, 255, 0.9) !important; }

.flatpickr-monthDropdown-month {
  color: rgba(0, 0, 0, 0.8); }

.flatpickr-current-month input.cur-year[disabled], .flatpickr-current-month input.cur-year[disabled]:hover {
  color: rgba(255, 255, 255, 0.9) !important; }

.flatpickr-time input,
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  color: var(--bs-dark) !important; }

.flatpickr-calendar {
  background-color: #fff !important;
  box-shadow: 1px 0 0 #f5f6f8, -1px 0 0 #f5f6f8, 0 1px 0 #f5f6f8, 0 -1px 0 #f5f6f8, 0 3px 13px rgba(0, 0, 0, 0.08) !important; }
  .flatpickr-calendar.hasTime .flatpickr-time {
    border-top: 1px solid #f5f6f8 !important; }

.flatpickr-months {
  border-radius: 5px 5px 0px 0px; }
  .flatpickr-months .flatpickr-prev-month:hover svg,
  .flatpickr-months .flatpickr-next-month:hover svg {
    fill: rgba(255, 255, 255, 0.9) !important; }

.bootstrap-touchspin.input-group > .input-group-prepend > .btn, .bootstrap-touchspin.input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.bootstrap-touchspin.input-group > .input-group-append > .btn, .bootstrap-touchspin.input-group > .input-group-append > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

[type="tel"]::placeholder,
[type="url"]::placeholder,
[type="email"]::placeholder,
[type="number"]::placeholder {
  text-align: left; }

.tox-tinymce {
  border: 1px solid #ced4da !important; }

.tox .tox-statusbar {
  border-top: 1px solid var(--bs-light) !important; }

.tox .tox-menubar, .tox .tox-edit-area__iframe, .tox .tox-statusbar {
  background-color: var(--bs-card-bg) !important;
  background: none !important; }

.tox .tox-mbtn {
  color: var(--bs-gray-700) !important; }
  .tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
    background-color: var(--bs-light) !important; }

.tox .tox-tbtn:hover {
  background-color: var(--bs-light) !important; }

.tox .tox-toolbar, .tox .tox-toolbar__overflow, .tox .tox-toolbar__primary {
  background: var(--bs-light) !important; }

.tox .tox-toolbar__primary {
  border-top-color: var(--bs-light) !important; }

.tox .tox-tbtn {
  color: var(--bs-gray-700) !important; }
  .tox .tox-tbtn svg {
    fill: var(--bs-gray-700) !important; }

.tox .tox-edit-area__iframe {
  background-color: var(--bs-card-bg) !important; }

.tox .tox-statusbar a, .tox .tox-statusbar__path-item, .tox .tox-statusbar__wordcount {
  color: var(--bs-gray-700) !important; }

.tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
  border-right: 1px solid var(--bs-light) !important; }

.editable-input .form-control {
  display: inline-block; }

.editable-buttons {
  margin-left: 7px; }
  .editable-buttons .editable-cancel {
    margin-left: 7px; }

.ck-editor__editable {
  min-height: 250px !important; }

.ck.ck-reset_all, .ck.ck-reset_all * {
  color: var(--bs-gray-700) !important; }

.ck.ck-editor__main > .ck-editor__editable:not(.ck-focused) {
  border-color: #ced4da !important; }

.ck.ck-toolbar {
  background-color: var(--bs-light) !important;
  border-color: #ced4da !important; }
  .ck.ck-toolbar .ck.ck-toolbar__separator {
    background-color: #ced4da !important; }

.ck.ck-tooltip .ck-tooltip__text {
  background-color: #343a40 !important;
  color: #f5f6f8 !important; }

.ck.ck-editor__main > .ck-editor__editable, .ck.ck-list {
  background-color: #fff !important; }

.ck.ck-dropdown__panel {
  border-color: #f5f6f8 !important; }

.ck.ck-button:not(.ck-disabled):hover, a.ck.ck-button:not(.ck-disabled):hover, .ck.ck-button.ck-on, a.ck.ck-button.ck-on {
  background-color: var(--bs-light) !important; }

.editable-input .form-control {
  display: inline-block; }

.editable-buttons {
  margin-left: 7px; }
  .editable-buttons .editable-cancel {
    margin-left: 7px; }

/* Dropzone */
.dropzone {
  min-height: 130px;
  border: 2px dashed var(--bs-gray-400);
  background: var(--bs-card-bg);
  border-radius: 6px; }
  .dropzone .dz-message {
    font-size: 24px;
    width: 100%; }

.form-wizard-wrapper label {
  font-size: 14px;
  text-align: right; }

.wizard .steps > ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  @media (max-width: 1199.98px) {
    .wizard .steps > ul {
      flex-direction: column; } }
  .wizard .steps > ul > a, .wizard .steps > ul > li {
    flex-basis: 0;
    flex-grow: 1; }
  .wizard .steps > ul > li {
    width: 100%; }
    .wizard .steps > ul > li a {
      display: block;
      padding: .5rem 1rem;
      color: var(--bs-gray-700);
      font-weight: 500;
      background-color: rgba(213, 25, 32, 0.1); }
  .wizard .steps > ul .current-info {
    position: absolute;
    left: -999em; }

.wizard .steps .number {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 34px;
  border: 2px solid #d51920;
  color: #d51920;
  text-align: center;
  border-radius: 50%;
  margin-right: .5rem; }

.wizard .steps .current a, .wizard .steps .current a:active, .wizard .steps .current a:hover {
  background-color: rgba(213, 25, 32, 0.2);
  color: var(--bs-gray-700); }
  .wizard .steps .current a .number, .wizard .steps .current a:active .number, .wizard .steps .current a:hover .number {
    background-color: #d51920;
    color: #fff; }

.wizard > .content {
  background-color: transparent;
  padding: 14px;
  margin-top: 0;
  border-radius: 0;
  min-height: 150px; }
  .wizard > .content > .title {
    position: absolute;
    left: -999em; }
  .wizard > .content > .body {
    width: 100%;
    height: 100%;
    padding: 14px 0 0;
    position: static; }

.wizard > .actions {
  position: relative;
  display: block;
  text-align: right;
  width: 100%; }
  .wizard > .actions > ul {
    display: block;
    text-align: right;
    padding-left: 0; }
    .wizard > .actions > ul > li {
      display: inline-block;
      margin: 0 0.5em; }
  .wizard > .actions a, .wizard > .actions a:active, .wizard > .actions a:hover {
    background-color: #d51920;
    border-radius: 4px;
    padding: 8px 15px;
    color: #fff; }
  .wizard > .actions .disabled a, .wizard > .actions .disabled a:active, .wizard > .actions .disabled a:hover {
    opacity: .65;
    background-color: #d51920;
    color: #fff;
    cursor: not-allowed; }

.wizard.vertical-wizard {
  display: flex;
  flex-wrap: wrap; }
  .wizard.vertical-wizard .steps > ul {
    flex-direction: column; }
    .wizard.vertical-wizard .steps > ul > li {
      width: 100% !important; }
  .wizard.vertical-wizard .steps, .wizard.vertical-wizard .content, .wizard.vertical-wizard .actions {
    width: 100%; }
  @media (min-width: 1200px) {
    .wizard.vertical-wizard .steps {
      width: 25%; } }
  .wizard.vertical-wizard .content {
    padding: 24px; }
    @media (min-width: 1200px) {
      .wizard.vertical-wizard .content {
        width: 75%;
        padding: 12px 24px; } }
    .wizard.vertical-wizard .content > .body {
      padding: 0; }

.table-rep-plugin .btn-toolbar {
  display: block; }

.table-rep-plugin .table-responsive {
  border: none !important; }

.table-rep-plugin .btn-group .btn-default {
  background-color: var(--bs-light);
  color: var(--bs-dark);
  border: 1px solid var(--bs-light); }
  .table-rep-plugin .btn-group .btn-default.btn-primary {
    background-color: #fff;
    border-color: #D51920;
    color: #D51920;
    box-shadow: 0 0 0 2px rgba(213, 25, 32, 0.5); }

.table-rep-plugin .btn-group.pull-right {
  float: right; }
  .table-rep-plugin .btn-group.pull-right .dropdown-menu {
    right: 0;
    transform: none !important;
    top: 100% !important; }

.table-rep-plugin tbody th {
  font-size: 14px;
  font-weight: normal; }

.table-rep-plugin .checkbox-row {
  padding-left: 40px;
  color: var(--bs-gray-400) !important; }
  .table-rep-plugin .checkbox-row:hover {
    background-color: var(--bs-gray-200) !important; }
  .table-rep-plugin .checkbox-row label {
    display: inline-block;
    padding-left: 5px;
    position: relative; }
    .table-rep-plugin .checkbox-row label::before {
      -o-transition: 0.3s ease-in-out;
      -webkit-transition: 0.3s ease-in-out;
      background-color: #fff;
      border-radius: 3px;
      border: 1px solid #f6f6f6;
      content: "";
      display: inline-block;
      height: 17px;
      left: 0;
      margin-left: -20px;
      position: absolute;
      transition: 0.3s ease-in-out;
      width: 17px;
      outline: none !important; }
    .table-rep-plugin .checkbox-row label::after {
      color: #f5f6f8;
      display: inline-block;
      font-size: 11px;
      height: 16px;
      left: 0;
      margin-left: -20px;
      padding-left: 3px;
      padding-top: 1px;
      position: absolute;
      top: -1px;
      width: 16px; }
  .table-rep-plugin .checkbox-row input[type="checkbox"] {
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    outline: none !important; }
    .table-rep-plugin .checkbox-row input[type="checkbox"]:disabled + label {
      opacity: 0.65; }
  .table-rep-plugin .checkbox-row input[type="checkbox"]:focus + label::before {
    outline-offset: -2px;
    outline: none; }
  .table-rep-plugin .checkbox-row input[type="checkbox"]:checked + label::after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900; }
  .table-rep-plugin .checkbox-row input[type="checkbox"]:disabled + label::before {
    background-color: #fbfbfb;
    cursor: not-allowed; }
  .table-rep-plugin .checkbox-row input[type="checkbox"]:checked + label::before {
    background-color: #d51920;
    border-color: #d51920; }
  .table-rep-plugin .checkbox-row input[type="checkbox"]:checked + label::after {
    color: #fff; }

.table-rep-plugin .fixed-solution .sticky-table-header {
  top: 110px !important;
  background-color: #d51920; }
  .table-rep-plugin .fixed-solution .sticky-table-header table {
    color: #fff; }

.table-rep-plugin table.focus-on tbody tr.focused th,
.table-rep-plugin table.focus-on tbody tr.focused td,
.table-rep-plugin .sticky-table-header {
  background: #d51920;
  border-color: #d51920;
  color: #fff; }
  .table-rep-plugin table.focus-on tbody tr.focused th table,
  .table-rep-plugin table.focus-on tbody tr.focused td table,
  .table-rep-plugin .sticky-table-header table {
    color: #fff; }

@media (min-width: 992px) {
  body[data-layout="horizontal"] .fixed-solution .sticky-table-header {
    top: 188px !important; } }

.table-bordered {
  border: 1px solid #f5f6f8; }

div.dataTables_wrapper div.dataTables_filter {
  text-align: right; }
  @media (max-width: 767px) {
    div.dataTables_wrapper div.dataTables_filter {
      text-align: center; } }
  div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em;
    margin-right: 0; }

.datatable td:focus {
  outline: none; }

div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
  padding-left: 0; }

div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
  padding-right: 0; }

.table.dataTable thead .sorting:before, .table.dataTable thead .sorting_asc:before, .table.dataTable thead .sorting_desc:before, .table.dataTable thead .sorting_asc_disabled:before, .table.dataTable thead .sorting_desc_disabled:before {
  left: auto;
  right: 1em; }

.table.dataTable thead .sorting:after, .table.dataTable thead .sorting_asc:after, .table.dataTable thead .sorting_desc:after, .table.dataTable thead .sorting_asc_disabled:after, .table.dataTable thead .sorting_desc_disabled:after {
  left: auto;
  right: 0.5em; }

.table.dataTable thead tr th.sorting_asc, .table.dataTable thead tr th.sorting_desc, .table.dataTable thead tr th.sorting, .table.dataTable thead tr td.sorting_asc, .table.dataTable thead tr td.sorting_desc, .table.dataTable thead tr td.sorting {
  padding-left: 14px;
  padding-right: 30px; }

.table.dataTable.dtr-inline.collapsed > tbody > tr > td, table.dataTable.dtr-inline.collapsed > tbody > tr > td {
  position: relative; }
  .table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control, table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control {
    padding-left: 30px; }
    .table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before {
      top: 50%;
      left: 5px;
      height: 14px;
      width: 14px;
      margin-top: -9px;
      display: block;
      position: absolute;
      color: #fff;
      border: 2px solid #fff;
      border-radius: 14px;
      box-sizing: content-box;
      text-align: center;
      text-indent: 0 !important;
      line-height: 14px;
      content: '+';
      background-color: #d51920; }

.table-edits input, .table-edits select {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  border: 1px solid #ced4da;
  color: #212529;
  border-radius: 0.25rem;
  background-color: #fff; }
  .table-edits input:focus, .table-edits select:focus {
    outline: none;
    border-color: #d3d8de; }

.apex-charts {
  min-height: 10px !important; }
  .apex-charts text {
    font-family: "Open Sans" !important;
    fill: #adb5bd;
    font-weight: 400; }
  .apex-charts .apexcharts-canvas {
    margin: 0 auto; }

.apexcharts-tooltip-title,
.apexcharts-tooltip-text {
  font-family: "Open Sans" !important;
  color: #808191; }

.apexcharts-legend-series {
  font-weight: 500; }

.apexcharts-gridline {
  pointer-events: none;
  stroke: #E0E2E7;
  stroke-dasharray: 1; }

.apexcharts-legend-text {
  color: var(--bs-gray-600);
  font-family: "Open Sans" !important;
  font-size: 13px;
  font-weight: 500 !important; }

.apexcharts-pie-label {
  fill: #fff !important; }

.apexcharts-yaxis text,
.apexcharts-xaxis text {
  font-family: "Open Sans" !important;
  fill: #808191; }

/* Flot chart */
.flot-charts-height {
  height: 320px; }

.flotTip {
  padding: 8px 12px;
  background-color: var(--bs-dark);
  z-index: 100;
  color: var(--bs-gray-100);
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  border-radius: 4px; }

.legendLabel {
  color: var(--bs-gray-500);
  padding-right: 5px;
  padding-left: 10px; }

.jqstooltip {
  box-sizing: content-box;
  width: auto !important;
  height: auto !important;
  background-color: var(--bs-gray-800) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  padding: 5px 10px !important;
  border-radius: 3px;
  border-color: var(--bs-gray-900) !important; }

.jqsfield {
  color: var(--bs-gray-200) !important;
  font-size: 12px !important;
  line-height: 18px !important;
  font-family: "Open Sans" !important;
  font-weight: 500 !important; }

.gmaps, .gmaps-panaroma {
  height: 300px;
  background: #fbfbfb;
  border-radius: 3px; }

.gmaps-overlay {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  background: #d51920;
  border-radius: 4px;
  padding: 10px 20px; }

.gmaps-overlay_arrow {
  left: 50%;
  margin-left: -16px;
  width: 0;
  height: 0;
  position: absolute; }
  .gmaps-overlay_arrow.above {
    bottom: -15px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 16px solid #d51920; }
  .gmaps-overlay_arrow.below {
    top: -15px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #d51920; }

.jvectormap-label {
  border: none;
  background: var(--bs-gray-800);
  color: var(--bs-gray-100);
  font-family: "Open Sans";
  font-size: 0.9rem;
  padding: 5px 8px; }

.leaflet-map {
  height: 300px; }
  .leaflet-map.leaflet-container {
    z-index: 99; }

.authentication-bg {
  background-color: #ffffff; }
  .authentication-bg .auth-logo .logo {
    margin: 0px auto; }

.signin-other-title {
  position: relative; }
  .signin-other-title:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
    background-color: #f5f6f8;
    top: 10px; }
  .signin-other-title .title {
    display: inline-block;
    position: relative;
    z-index: 9;
    background-color: #fff;
    padding: 2px 16px; }

.auth-carousel.owl-theme .owl-dots .owl-dot span {
  background-color: #fff; }

.auth-carousel.owl-theme .owl-dots .owl-dot.active span {
  background-color: #d51920; }

.search-box .form-control {
  border-radius: 30px;
  padding-left: 40px; }

.search-box .search-icon {
  font-size: 16px;
  position: absolute;
  left: 13px;
  top: 0;
  line-height: 38px; }

.categories-list {
  padding: 4px 0; }
  .categories-list li a {
    display: block;
    padding: 4px 12px;
    color: var(--bs-body-color); }
  .categories-list li.active a {
    color: #d51920; }

.product-box {
  border: 1px solid #f5f6f8;
  transition: all 0.4s;
  overflow: hidden;
  margin-top: 20px;
  cursor: pointer; }
  .product-box:hover {
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .product-box:hover .product-content {
      transform: translateY(-30px); }
    .product-box:hover .product-color {
      visibility: visible; }

.product-img {
  position: relative; }
  .product-img .product-ribbon {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 8px; }

.product-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 9; }
  .product-wishlist a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--bs-gray-300);
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    color: #adb5bd; }

.product-content {
  position: relative;
  transition: all 0.2s; }

.product-color {
  position: absolute;
  left: 0;
  right: 0;
  margin: 16px auto 0;
  visibility: hidden; }

.product-detail .nav-pills .nav-link {
  margin-bottom: 7px; }
  .product-detail .nav-pills .nav-link.active {
    background-color: var(--bs-gray-300); }
  .product-detail .nav-pills .nav-link .tab-img {
    width: 5rem; }

.product-detail .product-img {
  padding: 24px; }

.product-desc-list li {
  padding: 2px 0px; }

.product-desc-color a {
  display: inline-block;
  text-align: center;
  color: #212529;
  margin: 4px;
  border: 2px solid #f5f6f8;
  border-radius: 4px; }
  .product-desc-color a.active, .product-desc-color a:hover {
    color: #d51920;
    border-color: #d51920 !important; }

.product-review-link .list-inline-item a {
  color: #74788d;
  padding: 4px 8px;
  font-size: 15px; }

.product-cart-touchspin {
  border: 1px solid #ced4da;
  background-color: #fff;
  border-radius: 0.25rem; }
  .product-cart-touchspin .form-control {
    border-color: transparent;
    height: 32px; }
  .product-cart-touchspin .input-group-btn .btn {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #d51920 !important;
    font-size: 16px;
    padding: 3px 12px;
    box-shadow: none; }

.shipping-address {
  box-shadow: none; }
  .shipping-address.active {
    border-color: #d51920 !important; }

/* ==============
  Email
===================*/
.email-leftbar {
  width: 236px;
  float: left;
  padding: 20px;
  border-radius: 5px; }

.email-rightbar {
  margin-left: 260px; }

.chat-user-box p.user-title {
  color: var(--bs-dark);
  font-weight: 500; }

.chat-user-box p {
  font-size: 13px; }

@media (max-width: 767px) {
  .email-leftbar {
    float: none;
    width: 100%; }
  .email-rightbar {
    margin: 0; } }

.mail-list a {
  display: block;
  color: var(--bs-gray-600);
  line-height: 24px;
  padding: 8px 5px; }
  .mail-list a.active {
    color: #f25c54;
    font-weight: 500; }

.message-list {
  display: block;
  padding-left: 0; }
  .message-list li {
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    cursor: default;
    transition-duration: .3s; }
    .message-list li a {
      color: var(--bs-gray-600); }
    .message-list li:hover {
      background: var(--bs-gray-300);
      transition-duration: .05s; }
    .message-list li .col-mail {
      float: left;
      position: relative; }
    .message-list li .col-mail-1 {
      width: 320px; }
      .message-list li .col-mail-1 .star-toggle,
      .message-list li .col-mail-1 .checkbox-wrapper-mail,
      .message-list li .col-mail-1 .dot {
        display: block;
        float: left; }
      .message-list li .col-mail-1 .dot {
        border: 4px solid transparent;
        border-radius: 100px;
        margin: 22px 26px 0;
        height: 0;
        width: 0;
        line-height: 0;
        font-size: 0; }
      .message-list li .col-mail-1 .checkbox-wrapper-mail {
        margin: 15px 10px 0 20px; }
      .message-list li .col-mail-1 .star-toggle {
        margin-top: 18px;
        margin-left: 5px; }
      .message-list li .col-mail-1 .title {
        position: absolute;
        top: 0;
        left: 110px;
        right: 0;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        margin-bottom: 0; }
    .message-list li .col-mail-2 {
      position: absolute;
      top: 0;
      left: 320px;
      right: 0;
      bottom: 0; }
      .message-list li .col-mail-2 .subject,
      .message-list li .col-mail-2 .date {
        position: absolute;
        top: 0; }
      .message-list li .col-mail-2 .subject {
        left: 0;
        right: 200px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
      .message-list li .col-mail-2 .date {
        right: 0;
        width: 170px;
        padding-left: 80px; }
    .message-list li.active, .message-list li.active:hover {
      box-shadow: inset 3px 0 0 #d51920; }
    .message-list li.unread {
      background-color: var(--bs-gray-300);
      font-weight: 500;
      color: var(--bs-dark); }
      .message-list li.unread a {
        color: var(--bs-dark);
        font-weight: 500; }
  .message-list .checkbox-wrapper-mail {
    cursor: pointer;
    height: 20px;
    width: 20px;
    position: relative;
    display: inline-block;
    box-shadow: inset 0 0 0 1px #ced4da;
    border-radius: 1px; }
    .message-list .checkbox-wrapper-mail input {
      opacity: 0;
      cursor: pointer; }
    .message-list .checkbox-wrapper-mail input:checked ~ label {
      opacity: 1; }
    .message-list .checkbox-wrapper-mail label {
      position: absolute;
      height: 20px;
      width: 20px;
      left: 0;
      cursor: pointer;
      opacity: 0;
      margin-bottom: 0;
      transition-duration: .05s;
      top: 0; }
      .message-list .checkbox-wrapper-mail label:before {
        content: "\F012C";
        font-family: "Material Design Icons";
        top: 0;
        height: 20px;
        color: var(--bs-dark);
        width: 20px;
        position: absolute;
        margin-top: -16px;
        left: 4px;
        font-size: 13px; }

@media (max-width: 575.98px) {
  .message-list li .col-mail-1 {
    width: 200px; } }

@media (min-width: 1200px) {
  .chat-leftsidebar {
    min-width: 380px; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .chat-leftsidebar {
    min-width: 280px; } }

.chat-noti-dropdown.active:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #f25c54;
  border-radius: 50%;
  right: 0; }

.chat-noti-dropdown .btn {
  padding: 6px;
  box-shadow: none;
  font-size: 20px;
  color: var(--bs-gray-600); }

.chat-search-box .form-control {
  border: 0; }

.chat-list {
  margin: 0; }
  .chat-list li.active a {
    background-color: rgba(213, 25, 32, 0.075);
    border-color: transparent; }
  .chat-list li a {
    position: relative;
    display: block;
    color: #74788d;
    transition: all 0.4s;
    padding: 12px;
    border-top: 1px solid #f5f6f8;
    border-radius: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500; }
    .chat-list li a:hover {
      background-color: rgba(213, 25, 32, 0.075);
      border-color: transparent; }
  .chat-list li .user-img {
    position: relative; }
    .chat-list li .user-img .user-status {
      width: 10px;
      height: 10px;
      background-color: #adb5bd;
      border-radius: 50%;
      border: 2px solid #fff;
      position: absolute;
      right: 0;
      bottom: 0; }
    .chat-list li .user-img.online .user-status {
      background-color: #1dd3b0; }
    .chat-list li .user-img.away .user-status {
      background-color: #f1b44c; }
  .chat-list li.unread a {
    font-weight: 600;
    color: var(--bs-dark); }
  .chat-list li .unread-message {
    position: absolute;
    display: inline-block;
    right: 16px;
    top: 33px; }

.group-list li a {
  border: 0; }

.user-chat-nav .dropdown .nav-btn {
  height: 36px;
  width: 36px;
  line-height: 36px;
  box-shadow: none;
  padding: 0;
  font-size: 16px;
  border-radius: 50%;
  color: var(--bs-gray-600); }

.user-chat-nav .dropdown .dropdown-menu {
  box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12);
  border: 1px solid #f5f6f8; }

.chat-conversation li {
  clear: both; }

.chat-conversation .chat-day-title {
  position: relative;
  text-align: center;
  margin-bottom: 24px;
  border: none; }
  .chat-conversation .chat-day-title .title {
    display: inline-block;
    background-color: var(--bs-light);
    position: relative;
    z-index: 1;
    padding: 4px 16px;
    border-radius: 30px; }
  .chat-conversation .chat-day-title:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    right: 0;
    background-color: #f5f6f8;
    top: 16px; }
  .chat-conversation .chat-day-title .badge {
    font-size: 12px; }

.chat-conversation .conversation-list {
  margin-bottom: 24px;
  position: relative; }
  .chat-conversation .conversation-list .ctext-wrap {
    display: flex;
    margin-bottom: 10px; }
  .chat-conversation .conversation-list .ctext-wrap-content {
    padding: 12px 20px;
    background-color: rgba(213, 25, 32, 0.1);
    border-radius: 0px 8px 8px 8px;
    color: #74788d;
    position: relative;
    margin-left: 16px; }
    .chat-conversation .conversation-list .ctext-wrap-content:before {
      content: "";
      position: absolute;
      border: 5px solid transparent;
      border-right-color: rgba(213, 25, 32, 0.1);
      border-top-color: rgba(213, 25, 32, 0.1);
      left: -10px;
      top: 0; }
  .chat-conversation .conversation-list .conversation-name {
    margin-bottom: 4px; }
  .chat-conversation .conversation-list .dropdown .dropdown-toggle {
    font-size: 18px;
    padding: 4px;
    color: var(--bs-gray-600); }
    @media (max-width: 575.98px) {
      .chat-conversation .conversation-list .dropdown .dropdown-toggle {
        display: none; } }
  .chat-conversation .conversation-list .chat-time {
    font-size: 12px;
    margin-top: 4px;
    text-align: right;
    color: rgba(255, 255, 255, 0.5); }
  .chat-conversation .conversation-list .message-img {
    border-radius: 0.2rem;
    position: relative; }
    .chat-conversation .conversation-list .message-img .message-img-list {
      position: relative; }
    .chat-conversation .conversation-list .message-img img {
      max-width: 140px; }

.chat-conversation .right .conversation-list {
  float: right;
  text-align: right; }
  .chat-conversation .right .conversation-list .ctext-wrap .ctext-wrap-content {
    order: 2;
    background-color: var(--bs-light);
    text-align: right;
    border-radius: 8px 0px 8px 8px;
    margin-left: 0;
    margin-right: 16px; }
    .chat-conversation .right .conversation-list .ctext-wrap .ctext-wrap-content:before {
      border: 5px solid transparent;
      border-top-color: var(--bs-light);
      border-left-color: var(--bs-light);
      left: auto;
      right: -10px; }
  .chat-conversation .right .conversation-list .dropdown {
    order: 1; }

.chat-input-section {
  border-top: 1px solid #f5f6f8; }

.chat-input {
  border-radius: 30px;
  background-color: var(--bs-light) !important;
  border-color: var(--bs-light) !important; }

@media (max-width: 575.98px) {
  .chat-send {
    min-width: auto; } }

.chat-message-list {
  height: calc(100vh - 397px); }
  @media (max-width: 991.98px) {
    .chat-message-list {
      height: calc(100vh - 250px); } }

.chat-conversation-message {
  height: calc(100vh - 417px); }
  @media (max-width: 991.98px) {
    .chat-conversation-message {
      height: calc(100vh - 300px); } }

.counter-number {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  display: flex; }
  .counter-number span {
    font-size: 16px;
    font-weight: 400;
    display: block;
    padding-top: 5px; }

.coming-box {
  width: 25%; }

/************** Horizontal timeline **************/
.hori-timeline .events .event-list {
  text-align: center;
  display: block; }
  .hori-timeline .events .event-list::after {
    content: "\e858";
    font-family: "unicons-line";
    display: block;
    position: absolute;
    top: 34px;
    left: 0;
    right: 0;
    margin: 0px auto;
    color: #ced4da;
    font-size: 24px; }
  .hori-timeline .events .event-list:before {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    border-radius: 50%;
    background-color: var(--bs-gray-300); }
  .hori-timeline .events .event-list .event-date {
    display: inline-block;
    position: relative;
    border-radius: 4px;
    background-color: rgba(213, 25, 32, 0.2);
    padding: 2px 12px;
    margin-bottom: 48px; }

/************** vertical timeline **************/
.verti-timeline {
  padding-left: 100px; }
  .verti-timeline .event-list {
    border-left: 3px dashed var(--bs-gray-300);
    position: relative;
    padding: 0px 0px 30px 30px; }
    .verti-timeline .event-list:after {
      content: "";
      display: block;
      position: absolute;
      top: 6px;
      left: -6px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid #d51920;
      background-color: #fff; }
    .verti-timeline .event-list .event-date {
      display: inline-block;
      border-radius: 4px;
      background-color: rgba(213, 25, 32, 0.2);
      color: #d51920;
      padding: 2px 12px;
      position: absolute;
      left: -102px; }
    .verti-timeline .event-list:last-child {
      padding-bottom: 0; }

.faq-nav-tabs .nav-link {
  margin-bottom: 8px;
  background-color: #f5f6f8;
  padding: 8px 16px; }
  .faq-nav-tabs .nav-link .nav-icon {
    font-size: 24px;
    vertical-align: middle; }

.pricing-box {
  max-width: 388px;
  margin: 0px auto 20px; }
  .pricing-box .plan-features li {
    padding: 7px 0px; }

.flatpickr-monthSelect-months {
  margin: 10px 1px 3px 1px;
  flex-wrap: wrap; }

.flatpickr-monthSelect-month {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  display: inline-block;
  font-weight: 400;
  margin: 0.5px;
  justify-content: center;
  padding: 10px;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  width: 33%; }

.flatpickr-monthSelect-month.flatpickr-disabled {
  color: #eee; }

.flatpickr-monthSelect-month.flatpickr-disabled:hover,
.flatpickr-monthSelect-month.flatpickr-disabled:focus {
  cursor: not-allowed;
  background: none !important; }

.flatpickr-monthSelect-theme-dark {
  background: #3f4458; }

.flatpickr-monthSelect-theme-dark .flatpickr-current-month input.cur-year {
  color: #fff; }

.flatpickr-monthSelect-theme-dark .flatpickr-months .flatpickr-prev-month,
.flatpickr-monthSelect-theme-dark .flatpickr-months .flatpickr-next-month {
  color: #fff;
  fill: #fff; }

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month {
  color: rgba(255, 255, 255, 0.95); }

.flatpickr-monthSelect-month.today {
  border-color: #959ea9; }

.flatpickr-monthSelect-month.inRange,
.flatpickr-monthSelect-month.inRange.today,
.flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-month:focus {
  background: #e6e6e6;
  cursor: pointer;
  outline: 0;
  border-color: #e6e6e6; }

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.inRange,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month:hover,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month:focus {
  background: #646c8c;
  border-color: #646c8c; }

.flatpickr-monthSelect-month.today:hover,
.flatpickr-monthSelect-month.today:focus {
  background: #959ea9;
  border-color: #959ea9;
  color: #fff; }

.flatpickr-monthSelect-month.selected,
.flatpickr-monthSelect-month.startRange,
.flatpickr-monthSelect-month.endRange {
  background-color: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7; }

.flatpickr-monthSelect-month.startRange {
  border-radius: 50px 0 0 50px; }

.flatpickr-monthSelect-month.endRange {
  border-radius: 0 50px 50px 0; }

.flatpickr-monthSelect-month.startRange.endRange {
  border-radius: 50px; }

.flatpickr-monthSelect-month.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; }

.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.selected,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.startRange,
.flatpickr-monthSelect-theme-dark .flatpickr-monthSelect-month.endRange {
  background: #80cbc4;
  box-shadow: none;
  color: #fff;
  border-color: #80cbc4; }

@font-face {
  font-family: "Uber Move";
  src: url(/fonts/UberMove-Regular.ttf?b87d88b271d5b5713d16abb77c93e3b1) format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Uber Move";
  src: url(/fonts/UberMove-Bold.ttf?3107ceed5e03f0d66d62afb1c3678dd7) format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Uber Move";
  src: url(/fonts/UberMove-Medium.ttf?c7040bde5c33c869b1fd82e9628b64ce) format("truetype");
  font-weight: 500;
  font-style: normal; }

body {
  font-family: "Uber Move" !important; }

.fw-bold-400 {
  font-weight: 400 !important; }

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

.fw-bold-900 {
  font-weight: 900 !important; }

.text-grey-700 {
  color: #495057; }

.flexDisplay {
  display: flex; }

.first-cell {
  color: #fff !important;
  font-weight: 400 !important; }

.blue-text {
  color: #d51920; }
  .blue-text.downloadable-file {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.font-size-10 {
  font-size: 10px; }

.font-size-12 {
  font-size: 12px; }

.font-size-14 {
  font-size: 14px; }

.font-size-18 {
  font-size: 18px; }

.font-size-20 {
  font-size: 20px; }

.font-size-24 {
  font-size: 24px; }

.font-size-28 {
  font-size: 28px; }

.font-size-40 {
  font-size: 40px; }

.btn-blue,
.btn-blue:active {
  background: #d51920 !important; }

.add-dropdown,
.profile-dropdown {
  width: max-content;
  box-shadow: 0px 4px 20px rgba(13, 88, 193, 0.25); }
  .add-dropdown .submenu,
  .profile-dropdown .submenu {
    color: #d51920; }

.dashboard-container .chart-head {
  position: absolute;
  top: 22px;
  left: 25px;
  font-size: 16px;
  font-weight: 700; }
  .dashboard-container .chart-head.donut {
    top: 15px;
    left: 15px; }

.dashboard-container .sales-chart {
  font-family: "Uber Move"; }
  .dashboard-container .sales-chart .apexcharts-legend.apx-legend-position-top {
    right: 28px !important;
    top: 0px !important;
    left: unset !important; }

.dashboard-container .total-profit-wrapper {
  height: 330px; }

.dashboard-container .due-solid-border {
  border-bottom: 1px solid #e4e4e4;
  margin: 10px -13px 4px; }

.dashboard-container .bottom-wrapper {
  height: 199px; }

.dashboard-container .invoice-text {
  color: #5b5b5b; }

.dashboard-container .due-border {
  border-bottom: 1px dashed #e4e4e4; }
  .dashboard-container .due-border .due-date {
    color: #5b5b5b; }

.dashboard-container .filter-border {
  border: 1px solid #e9e9ea;
  border-radius: 50px;
  padding: 4px 10px; }

.dashboard-container .most-selling .apexcharts-legend-marker {
  margin-right: 10px;
  float: left; }

.dashboard-container .most-selling .apexcharts-canvas text {
  fill: #2a2a2a !important;
  font-weight: 600;
  font-size: 13px; }

.dashboard-container .most-selling .seriesWrapper {
  width: 135px;
  float: left; }
  .dashboard-container .most-selling .seriesWrapper .seriesLabel {
    width: 70%;
    float: left;
    margin-top: -4px; }
  .dashboard-container .most-selling .seriesWrapper .seriesValue {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    float: left;
    margin-top: -4px; }

.dashboard-container .most-selling .apexcharts-tooltip-title,
.dashboard-container .most-selling .apexcharts-tooltip-text {
  color: #ffffff;
  font-size: 12px; }

.notfound-conatainer .notfound-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }

.notfound-conatainer .notfound-left {
  max-width: 70%; }

.notfound-conatainer .notfound-title {
  font-size: 120px;
  color: #d51920 !important;
  line-height: 120px; }

.notfound-conatainer .notfound-sub-title {
  font-size: 40px; }

.notfound-conatainer .notfound-desc {
  font-size: 18px;
  color: #495057 !important; }

.notfound-conatainer .notfound-button {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700; }

.download-container {
  display: flex;
  justify-content: center; }

.highlight-background {
  background: #ffffff !important; }

.card-pad {
  padding: 0.8rem !important; }

.pad12 {
  padding: 12px; }

.white {
  color: #ffffff !important; }

.white-bg {
  background: #ffffff !important; }

.primary-bg {
  background: #d51920 !important; }

.login-wrapper input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important; }

.login-wrapper .login-logo {
  height: 20vh;
  float: right; }
  .login-wrapper .login-logo img {
    margin: 3em 1em;
    width: auto; }

.login-wrapper .form-control {
  border: 1px solid rgba(196, 196, 196, 0.8);
  padding: 15px;
  color: #000;
  border-radius: 4px; }
  .login-wrapper .form-control::placeholder {
    color: #dee2e6; }
  .login-wrapper .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #dee2e6; }
  .login-wrapper .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #dee2e6; }

.login-wrapper .login-title {
  font-weight: 600; }

.login-wrapper .legend-label {
  position: absolute;
  top: -9px;
  font-size: 12px;
  left: 12px;
  color: #d51920;
  background: #ffffff;
  padding: 0 3px; }

.login-wrapper .login-button {
  border-radius: 100px;
  padding: 5px 20px; }

.login-wrapper .form-check-input {
  border: 1px solid #fff; }

.footer {
  background: #ffffff; }

.table-responsive {
  overflow-x: clip !important;
  -webkit-overflow-scrolling: touch; }

.table-responsive td {
  vertical-align: middle; }

#layout-wrapper #page-topbar {
  box-shadow: none !important; }

#layout-wrapper .vertical-menu .navbar-brand-box {
  background-color: #ffffff;
  box-shadow: none !important; }

.sidebar-logo {
  margin-top: 10px; }

.vertical-collpsed .contact-wrapper {
  display: none !important; }

.btn-dark {
  color: #fff;
  background-color: #000;
  border-color: #000; }

.btn-dark:hover {
  color: #fff;
  background-color: #000;
  border-color: #000; }

.side-menu-icon {
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 20px;
  height: 30px;
  margin-right: 10px;
  background-position: center; }

.modal .invalid-feedback {
  color: #f25c54; }

.modal .form-control {
  color: #fff;
  border: 1px solid #d51920;
  border-radius: 5px; }
  .modal .form-control.is-invalid {
    border-color: #d51920; }
  .modal .form-control::placeholder {
    color: #8a9197; }
  .modal .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8a9197; }
  .modal .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #8a9197; }

body {
  font-size: 14px;
  /* Default font size for all screens */ }

/* Additional styles for larger screens */
.elevate-dropdown .react-select__control {
  border: none; }

.elevate-dropdown .react-select__indicator-separator {
  background-color: #ffffff; }

.elevate-dropdown .react-select__placeholder {
  color: #8a9197;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px; }

.elevate-dropdown .react-select__value-container {
  font-size: 12px; }

.elevate-dropdown .react-select__indicator {
  color: #adb5bd; }

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #d51920;
  color: #ffffff; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #d51920; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #d51920; }

span.flatpickr-weekday,
.flatpickr-weekdays {
  background: #d51920; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #d51920;
  border-color: #d51920;
  color: #ffffff; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  box-shadow: -10px 0 0 #d51920; }

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #d51920, 5px 0 0 #d51920; }

.flatpickr-day.inRange {
  background: #fef7f4;
  box-shadow: -5px 0 0 #fef7f4, 5px 0 0 #fef7f4;
  border-color: #fef7f4; }

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background: #ffffff; }

.table {
  border: #ffff;
  margin-top: -10px; }
  .table th {
    font-size: 14px; }

.card {
  border-radius: 0.5rem; }

.page-content {
  /*.dashboard-report{
        .card{
            border-radius: .50rem;
            box-shadow: 1px 15px 30px #FBE1D4;
            &:hover {
                box-shadow: 1px 15px 30px #F9D2BF;
            }
        }
    }*/ }
  .page-content .role-container tr td:first-child {
    text-transform: capitalize; }
  .page-content .comment-description {
    border-left: 1px dotted lightgrey; }
  .page-content .invalid-feedback {
    color: #f25c54;
    overflow: hidden;
    text-overflow: ellipsis; }
  .page-content .react-bootstrap-table .expand-cell-header,
  .page-content .react-bootstrap-table .expand-cell {
    cursor: pointer; }
  .page-content .react-calendar {
    border: unset;
    min-height: 320px;
    color: #fff; }
    .page-content .react-calendar .react-calendar__navigation button {
      min-width: 30px; }
    .page-content .react-calendar .react-calendar__tile--now {
      border-radius: 50%;
      color: #d51920 !important;
      background: #ffffff; }
    .page-content .react-calendar .react-calendar__tile {
      padding: 7px 5px;
      color: #fff; }
    .page-content .react-calendar .react-calendar__month-view__days__day--neighboringMonth {
      color: hwb(19 58% 4%) !important; }
    .page-content .react-calendar abbr[title] {
      text-decoration: none !important; }
    .page-content .react-calendar .react-calendar__month-view__days__day--weekend {
      color: #d51920; }
    .page-content .react-calendar .react-calendar__tile--active,
    .page-content .react-calendar .react-calendar__tile:enabled:hover {
      border-radius: 50%;
      background: #d51920;
      color: #ffffff !important; }
    .page-content .react-calendar .react-calendar__navigation__arrow {
      color: #d51920; }
  .page-content .right-bar.task-filter {
    z-index: 1009;
    background: #e9f5ff !important; }
    .page-content .right-bar.task-filter .right-bar-toggle,
    .page-content .right-bar.task-filter .right-bar-toggle:hover {
      background-image: url(/images/closebutton.svg?8d40d9c84161f7b8e46c14dd165d2499);
      background-color: unset;
      background-repeat: no-repeat;
      background-size: contain; }
    .page-content .right-bar.task-filter .react-select__placeholder {
      font-size: 12px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    .page-content .right-bar.task-filter .react-select__control {
      border-color: #ffffff;
      background: #ffffff; }
    .page-content .right-bar.task-filter .react-select__single-value {
      color: #d51920; }
    .page-content .right-bar.task-filter .react-select__indicator-separator {
      background-color: #ffffff; }
    .page-content .right-bar.task-filter .react-select__placeholder,
    .page-content .right-bar.task-filter .react-select__indicator {
      color: #dee2e6; }
    .page-content .right-bar.task-filter .form-control {
      background: #ffffff;
      border-color: #ffffff;
      color: #000; }
      .page-content .right-bar.task-filter .form-control::placeholder {
        font-size: 14px;
        color: #dee2e6; }
      .page-content .right-bar.task-filter .form-control:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        font-size: 14px;
        color: #dee2e6; }
      .page-content .right-bar.task-filter .form-control::-ms-input-placeholder {
        /* Microsoft Edge */
        font-size: 16px;
        color: #dee2e6; }
  .page-content .upload-logo img {
    max-width: 150px;
    max-height: 100px; }
  .page-content .form-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize !important; }
  .page-content .form-control {
    color: #fff;
    border: none;
    border-radius: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    padding-top: 14px;
    padding-bottom: 10px; }
    .page-content .form-control.product-texarea {
      padding-top: 14px;
      padding-bottom: 0px;
      line-height: 1; }
    .page-content .form-control.is-invalid {
      border-color: #d51920; }
    .page-content .form-control.date-field.is-invalid + input {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F25C54'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F25C54' stroke='none'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.235rem) center;
      background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem); }
    .page-content .form-control::placeholder {
      color: #8a9197; }
    .page-content .form-control:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #8a9197; }
    .page-content .form-control::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #8a9197; }
    .page-content .form-control.date-field {
      background-color: #ffffff; }
    .page-content .form-control:disabled {
      background-color: #f2f2f2; }
  .page-content #excel,
  .page-content #pdf,
  .page-content .cloud-upload,
  .page-content .dash-icon {
    padding: 0px 10px;
    border-radius: 10px;
    margin: 0;
    font-size: 1.5em; }
  .page-content .dashboard-icon {
    padding: 4px 20px 12px;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    border-radius: 10px;
    margin: 0;
    font-size: 1.5em; }
  .page-content .total-income {
    background: rgba(243, 155, 155, 0.25);
    background-image: url(/images/income.svg?0f577865103b67d5fad7a2c9da237fad);
    background-position: 9px 10px !important; }
  .page-content .total-expense {
    background: rgba(128, 167, 222, 0.25);
    background-image: url(/images/expense.svg?b8865f2c5d023911e80db9f8560bdd65);
    background-position: 9px 12px !important; }
  .page-content .customer-container {
    background: #ffedec;
    box-shadow: none; }
    .page-content .customer-container .total-customer {
      background: #f4d1cf;
      background-image: url(/images/customer-icon.svg?169975184476e68af9b3415d85c2508b) !important;
      background-position: 50% !important; }
  .page-content .mute-container {
    background-image: url(/images/mutecard.svg?7f8a17b6ef5c840da0c0507dd2f258fd) !important;
    background-size: 175%;
    background-repeat: no-repeat; }
  .page-content .black-container {
    background-image: url(/images/blackcard.svg?11e2c1793c73a711f495d125c72847c2) !important;
    background-size: 175%;
    background-repeat: no-repeat; }
  .page-content .invoice-container {
    background: #dce3ec;
    box-shadow: none; }
    .page-content .invoice-container .total-invoice {
      background: #b8c0ce;
      background-image: url(/images/invoice-icon.svg?4f0e47e00bc9e62a1c1278925c40fb4d) !important;
      background-position: 50% !important; }
  .page-content .dropzone {
    min-height: unset;
    border: none;
    background: #ffffff;
    border-radius: 5px; }
    .page-content .dropzone .upload-wrapper {
      position: relative;
      min-height: 37px; }
      .page-content .dropzone .upload-wrapper .no-file-label {
        background: #e9ecef;
        border-radius: 50px;
        padding: 0px 10px;
        width: 123px; }
      .page-content .dropzone .upload-wrapper h5, .page-content .dropzone .upload-wrapper .h5 {
        font-size: 1rem; }
      .page-content .dropzone .upload-wrapper .cloud-upload {
        position: absolute;
        right: 0.5rem;
        top: 0.7rem;
        z-index: 1;
        background-image: url(/images/upload.svg?c0783164b7809f3063ecc8b38ca094c0);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px; }
      .page-content .dropzone .upload-wrapper .downloadable-file {
        max-width: 70%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
  .page-content .table-card-wrapper {
    overflow-x: auto; }
  .page-content .simplebar-scrollbar:before {
    background: #d51920; }
  .page-content .right-bar {
    width: 380px;
    max-width: 100% !important; }
  .page-content .search-wrapper {
    position: relative; }
    .page-content .search-wrapper .serach-icon {
      position: absolute;
      right: 10px;
      top: 9px;
      font-size: 20px; }
    .page-content .search-wrapper .search-input {
      background: #ffffff;
      border: unset; }
      .page-content .search-wrapper .search-input::placeholder {
        color: #d51920;
        opacity: 1;
        /* Firefox */ }
      .page-content .search-wrapper .search-input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #d51920; }
      .page-content .search-wrapper .search-input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #d51920; }
  .page-content .pagination .page-item {
    display: none; }
    .page-content .pagination .page-item:first-child, .page-content .pagination .page-item:last-child {
      display: block; }
  .page-content .pagination .active.page-item .page-link {
    color: #d51920;
    border: 1 px solid #d51920;
    cursor: pointer; }
  .page-content .pagination .disabled {
    cursor: pointer; }
  .page-content .pagination .page-item .page-link {
    border: unset;
    background: inherit;
    cursor: pointer;
    margin-top: -15%; }

.total-wrapper {
  background: #ffffff;
  border-radius: 10px; }
  .total-wrapper .total-divider {
    border-bottom: 1px solid rgba(173, 181, 189, 0.2); }

.notfound-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(113.76deg, #d51920 -0.49%, rgba(233, 103, 41, 0.8) 55.21%); }
  .notfound-container .card {
    border-radius: 50px;
    height: 60vh;
    box-shadow: 10px 20px 25px rgba(0, 0, 0, 0.15); }
    .notfound-container .card .card-body {
      padding: 5px !important;
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column; }

@media (min-width: 769px) {
  .vertical-collpsed {
    min-height: 500px; } }

.actionButtonAlign {
  display: flex;
  justify-content: space-around; }

.term {
  margin-top: 50px;
  margin-bottom: 10px; }

.terms {
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600; }

.py-6 {
  padding-top: 0.5rem !important;
  padding-bottom: 6rem !important; }

.productDetail {
  margin-top: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px; }

.payable {
  margin-top: 10px; }

.other {
  margin-top: 10px; }

.subTotal {
  margin-top: 25px; }

.vat {
  margin-top: 10px; }

.shippingCharge {
  margin-top: 10px; }

.addButton {
  background-color: #1dd3b0;
  background-image: url(/images/addRow.svg?3fa31b2985fd57524ff7dd921f9c6b9f);
  background-repeat: no-repeat;
  border: none;
  padding: 5px 10px !important;
  width: 22px;
  height: 22px; }

.removeButton {
  background-color: #f25c54;
  background-image: url(/images/removeRow.svg?a01f09ae26a6991f9e3c5e8eedbf01b3);
  background-repeat: no-repeat;
  border: none;
  padding: 5px 10px !important;
  width: 22px;
  height: 22px; }

.editorClassName {
  height: 100px;
  background-color: #fff; }

.expenseDetail {
  background-color: #fff;
  margin: 5px;
  padding: 30px;
  border-radius: 8px; }

.supplierDetailTitle {
  margin-bottom: 30px; }

.CustomerFirstSection {
  background-color: #fff;
  border-radius: 20px;
  margin: 5px;
  padding: 25px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.customDetails {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px; }

.CustomerSecondSection {
  background-color: #1dd3b0; }

.pass {
  top: 17px;
  position: absolute;
  right: 20px; }

.accountdetails {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px; }

.supplierdetails {
  font-size: 20px;
  font-weight: 600;
  color: #0d58c1;
  margin-top: 15px;
  margin-left: 20px; }

.filenames {
  width: 90px;
  height: 23px;
  background-color: #c5d6f0;
  border-radius: 30px;
  text-align: center; }

.iconlist {
  display: flex; }

.icondown {
  margin-left: 20px; }

.totalQuotation {
  background-color: #f4d6d5;
  border-radius: 20px;
  padding: 20px;
  margin: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.totalinvoice {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: #caeee7;
  border-radius: 20px;
  padding: 20px;
  margin: 5px; }

.nav-link {
  color: #0d58c1;
  cursor: pointer; }

.detailActive {
  width: 100px;
  height: 27px;
  background-color: #1dd3b0;
  color: #fff;
  border-radius: 50px;
  text-align: center; }

.mico-table {
  border-collapse: separate;
  border-spacing: 0 1em; }
  .mico-table thead th {
    color: #d51920; }
  .mico-table .table-header__no-accessor,
  .mico-table .table-header__name {
    color: #d51920;
    font-size: 14px; }
  .mico-table .mico-row {
    background: #ffffff; }
    .mico-table .mico-row th:first-child {
      border-top-left-radius: 5px; }
    .mico-table .mico-row td:last-child {
      border-top-right-radius: 5px; }
    .mico-table .mico-row th:first-child {
      border-bottom-left-radius: 5px; }
    .mico-table .mico-row td:last-child {
      border-bottom-right-radius: 5px; }
  .mico-table > :not(caption) > * > * {
    border-top-width: 0px; }

.proforma-textarea {
  min-height: 96px !important; }

.filter-buttons {
  position: fixed;
  right: 10px;
  bottom: 20px; }
  .filter-buttons .primarybtn {
    background: #fff !important;
    color: #d51920;
    border: 1px solid #d51920;
    width: 95px;
    height: 36px;
    font-family: "Uber Move";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; }
  .filter-buttons .btn-primary {
    background: #fff !important;
    color: #d51920;
    width: 95px;
    height: 36px;
    font-family: "Uber Move";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 3px !important; }
  .filter-buttons .btn-secondary {
    background: #000; }

.btn {
  padding: 8px 35px !important;
  border-radius: 10px !important;
  border: unset; }

.invoice-detail-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.purchase-detail-page {
  position: relative; }
  .purchase-detail-page .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .purchase-detail-page .table-striped td,
  .purchase-detail-page .table-striped th {
    padding: 10px;
    font-weight: 100; }
  .purchase-detail-page .table-striped th {
    background-color: #0d58c1; }
  .purchase-detail-page .invoicePurchase {
    font-weight: 800;
    font-size: 32px; }
  .purchase-detail-page .invoiceOrder {
    font-weight: 600;
    font-size: 32px; }
  .purchase-detail-page .font-size-20 {
    font-weight: 700;
    font-size: 20px;
    color: #fff; }
  .purchase-detail-page .purchaseOrderTo {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px; }
  .purchase-detail-page .purchaseOrderShipping {
    font-weight: 700;
    color: #fff;
    margin-top: 35px; }
  .purchase-detail-page .purchaseDetailsToAddress {
    font-weight: 700;
    color: #fff; }
  .purchase-detail-page .purchaseOrderPoNo {
    font-weight: 600;
    font-size: 14px;
    color: #fff !important;
    width: 50%; }
  .purchase-detail-page .purchaseDetails-table {
    background-color: #0d58c1;
    color: #fff;
    font-size: 16px; }
  .purchase-detail-page .purchaseDetails-Values {
    color: #fff;
    font-weight: 600;
    font-size: 14px; }
  .purchase-detail-page .purchaseDetailsAmount {
    margin-top: 30px;
    font-weight: 700;
    font-size: 14px;
    color: #fff; }
  .purchase-detail-page .purchaseDetailsAmountWords {
    margin-bottom: 60px;
    color: #adb5bd; }
  .purchase-detail-page .purchaseDetailsTerm {
    margin-bottom: 40px;
    color: #adb5bd;
    font-size: 12px;
    font-weight: 400; }
  .purchase-detail-page .purchaseDetailsMicohr {
    border: none;
    border-top: 1.5px solid #0d58c1;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .purchase-detail-page .purchaseDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .purchase-detail-page .vl {
    border-left: 1px solid #adb5bd; }
  .purchase-detail-page .purchaseDetailsFooter {
    margin-bottom: 25px; }
  .purchase-detail-page .purchaseDetailsThankYou {
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 12px; }
  .purchase-detail-page .purchase-footer-details {
    font-size: 10px;
    font-weight: 500; }
  .purchase-detail-page .purchaseOrderFindTotal {
    width: 50%; }
  .purchase-detail-page .purchaseOrderSubTotals {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    width: 70%; }
  .purchase-detail-page .purchaseOrderFindTotalnet {
    font-weight: 700;
    color: #fff;
    width: 50%; }
  .purchase-detail-page .purchaseOrderShippingAddress {
    margin-bottom: 25px; }
  .purchase-detail-page .purchaseDetailsPrepare {
    color: #adb5bd;
    font-size: 12px;
    text-align: left;
    width: 50%; }
  .purchase-detail-page .purchaseDetailsSign {
    float: right;
    font-size: 14px;
    font-weight: 700;
    color: #fff; }
  .purchase-detail-page .purchaseDetailsNetTotal {
    color: #fff;
    font-weight: 700;
    width: 70%; }
  .purchase-detail-page .table {
    --bs-table-striped-bg: #f0f7fb; }

.dash-recent-quote > tbody > tr:nth-of-type(even) > td {
  background: #f0f7fb; }

.dash-recent-quote th {
  background: #c4e0f9; }

.purchase-detail-card {
  max-width: 1300px; }

.purchase-detail-card-body {
  padding: 35px 60px; }

.tax-invoice-container {
  position: relative; }
  .tax-invoice-container .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .tax-invoice-container .table-striped td,
  .tax-invoice-container .table-striped th {
    padding: 10px;
    word-wrap: break-word; }
  .tax-invoice-container .table-striped th {
    background-color: #0d58c1;
    font-weight: 100; }
  .tax-invoice-container .tax-invoice-tax {
    font-size: 32px;
    font-weight: 800; }
  .tax-invoice-container .tax-invoice-invoice {
    font-size: 32px;
    font-weight: 600; }
  .tax-invoice-container .tax-address {
    font-size: 12px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px !important; }
  .tax-invoice-container .tax-invoice-number {
    font-size: 12px;
    font-weight: 700 !important;
    text-align: right;
    width: 67%;
    color: #fff; }
  .tax-invoice-container .tax-invoice-value {
    width: 27%;
    text-align: left; }
  .tax-invoice-container .tax-detail-table {
    background-color: #0d58c1;
    color: #fff;
    font-size: 16px; }
  .tax-invoice-container .tax-Amount {
    margin-top: 30px;
    font-weight: 700 !important;
    font-size: 14px;
    color: #fff; }
  .tax-invoice-container .tax-sub-total {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    width: 50%; }
  .tax-invoice-container .tax-amount-words {
    font-size: 12px;
    font-weight: 600;
    color: #adb5bd; }
  .tax-invoice-container .proforma-to {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .tax-invoice-container .proforma-too {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .tax-invoice-container .proforma-table {
    background-color: #0d58c1;
    color: #fff; }
  .tax-invoice-container .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .tax-invoice-container .proforma-table-border {
    border-color: #e9ecef;
    margin-top: 30px;
    margin-bottom: 50px; }
    .tax-invoice-container .proforma-table-border td,
    .tax-invoice-container .proforma-table-border th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .tax-invoice-container .tax-detail-container {
    border: 2px solid black; }
  .tax-invoice-container .tax-table-bordered {
    border: 2px solid #e9ecef;
    margin-bottom: 40px; }
    .tax-invoice-container .tax-table-bordered td,
    .tax-invoice-container .tax-table-bordered th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .tax-invoice-container .invoicecompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .tax-invoice-container .taxDetailsMicohr {
    border: none;
    border-top: 1.5px solid #d51920;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .tax-invoice-container .taxDetailsMicohr:after {
    background: #fff;
    padding: 0 4px 0 0;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #d51920;
    font-weight: 700; }
  .tax-invoice-container .tax-computer-bill {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    font-weight: 400;
    color: #495057; }
  .tax-invoice-container .tax-invoice-footer {
    font-weight: 500;
    font-size: 10px; }
  .tax-invoice-container .tax-detail-button {
    background-color: #0d58c1;
    color: #fff;
    width: 100px;
    height: 30px; }
  .tax-invoice-container .taxvl {
    border-left: 1px solid #adb5bd; }
  .tax-invoice-container .tax-total-values {
    margin-top: 30px; }
  .tax-invoice-container .tax-title {
    color: #212529; }
  .tax-invoice-container .tax-detail-address {
    color: #fff; }
  .tax-invoice-container .tax-invoice-section {
    margin-top: -25px; }
  .tax-invoice-container .tax-invoice {
    padding-top: 0px; }
  .tax-invoice-container .table {
    --bs-table-striped-bg: #f0f7fb; }
  .tax-invoice-container .tax-bank-name {
    font-weight: 700; }
  .tax-invoice-container .tax-net-weight {
    font-weight: 700;
    font-size: 12px; }
  .tax-invoice-container .tax-netweight {
    font-weight: 400;
    font-size: 12px; }

.bankdetail {
  line-height: 20px; }

.tax-detail-card {
  max-width: 1200px; }

.tax-detail-card-body {
  padding: 30px 60px; }

.back-logo {
  position: absolute;
  top: 35%;
  left: 150px; }

.proforma-detail-page {
  position: relative; }
  .proforma-detail-page .proforma-proforma {
    font-size: 32px;
    font-weight: 800;
    color: #212529; }
  .proforma-detail-page .proforma-invoice {
    font-size: 32px;
    font-weight: 600; }
  .proforma-detail-page .proforma-to {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .proforma-detail-page .proforma-too {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .proforma-detail-page .proforma-table {
    background-color: #0d58c1;
    color: #fff; }
  .proforma-detail-page .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .proforma-detail-page .proforma-table-border {
    border-color: #e9ecef;
    margin-bottom: 50px; }
    .proforma-detail-page .proforma-table-border td,
    .proforma-detail-page .proforma-table-border th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .proforma-detail-page .companystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .purcompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #f25c54;
    font-weight: 700; }
  .proforma-detail-page .proformacompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformaDetailscompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformaDetailsMicohr {
    border: none;
    border-top: 1.5px solid #0d58c1;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .proforma-detail-page .proformaDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformavl {
    border-left: 1px solid #adb5bd;
    height: 30px; }
  .proforma-detail-page .proforma-computer {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #495057; }
  .proforma-detail-page .proforma-detail-invoice-footer {
    font-size: 10px;
    font-weight: 500; }
  .proforma-detail-page .proforma-quote {
    font-size: 12px;
    width: 50%;
    font-weight: 700;
    color: #fff; }
    .proforma-detail-page .proforma-quote.cal-section {
      width: 82% !important; }
    .proforma-detail-page .proforma-quote.certificate-analysis {
      width: 60%; }
  .proforma-detail-page .proforma-quotes {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    width: 55%; }
    .proforma-detail-page .proforma-quotes.cal-section {
      width: 45% !important; }
  .proforma-detail-page .proforma-proforma-invoice {
    margin-top: 30px;
    margin-bottom: 30px; }
  .proforma-detail-page .proforma-table-head {
    margin-top: 30px; }
    .proforma-detail-page .proforma-table-head td,
    .proforma-detail-page .proforma-table-head th {
      padding: 10px;
      font-weight: 100; }
    .proforma-detail-page .proforma-table-head th {
      background-color: #0d58c1; }
  .proforma-detail-page .proforma-quote-proforma {
    margin-top: 30px; }
  .proforma-detail-page .proforma-amt {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    margin-top: 20px; }
  .proforma-detail-page .proforma-amt-words {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd; }
  .proforma-detail-page .proforma-net-weight {
    font-weight: 700;
    font-size: 12px; }
  .proforma-detail-page .proforma-net-hscode {
    font-weight: 400;
    font-size: 12px;
    color: #adb5bd; }

.proforma-detail-card {
  max-width: 1200px; }
  .proforma-detail-card.certificate-analysis {
    min-height: 297mm; }

.proforma-detail-card-body {
  padding: 30px 60px; }

.detail-button-pdf {
  width: 100px;
  height: 30px;
  background-color: #0d58c1;
  color: #fff;
  margin-left: 85%;
  border-radius: 5px; }

.popup-lpo {
  font-size: 16px;
  font-weight: 600; }

.popup-title input {
  color: #f25c54; }

.popup-cancel {
  background: #f25c54;
  border-radius: 5px;
  color: #fff; }

.other-charge-section {
  margin-bottom: 10px; }

.quotation-details {
  position: relative; }
  .quotation-details .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .quotation-details .table-striped td,
  .quotation-details .table-striped th {
    padding: 10px;
    font-weight: 100; }
  .quotation-details .table-striped th {
    background-color: #0d58c1; }
  .quotation-details .quotation-title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 0px;
    color: #212529; }
  .quotation-details .table {
    --bs-table-striped-bg: #f0f7fb; }
  .quotation-details .quotation-detail-names {
    font-weight: 700;
    color: #fff; }
  .quotation-details .quotation-class-number {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    width: 100%;
    text-align: left; }
  .quotation-details .quotation-class-number-right {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: right;
    line-height: 22px; }
  .quotation-details .quotation-class-number-left {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: left;
    line-height: 22px; }
  .quotation-details .quotation-font-color {
    color: #000000;
    margin-bottom: 0px;
    line-height: 20px;
    color: #212529; }
  .quotation-details .fr {
    align-items: right;
    text-align: right; }
  .quotation-details .quotation-detail-table-value {
    font-weight: 700;
    color: #000000; }
  .quotation-details .quotation-detail-name {
    margin-bottom: 0px;
    line-height: 20px;
    font-weight: 700;
    color: #fff; }
    .quotation-details .quotation-detail-name.quotation-detail-width {
      width: 100%; }
  .quotation-details span.quotation-detail-name {
    text-align: right; }
  .quotation-details .quotation-data {
    font-weight: 600;
    color: #fff; }
  .quotation-details .quotation-sign-right {
    font-weight: 700;
    float: right;
    color: #fff; }
  .quotation-details .quotation-sign-left {
    font-weight: 700;
    float: left;
    color: #fff; }
  .quotation-details .quotation-detail-table {
    background: #0d58c1;
    color: #fff; }
  .quotation-details .quotation-amount {
    font-weight: 600;
    color: #fff; }
  .quotation-details .companystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .quotation-details .QuotationDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .quotation-details .quotation-computer-bill {
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    margin-top: 40px; }
  .quotation-details .quotationvl {
    border-left: 1px solid #adb5bd;
    height: 40px; }
  .quotation-details .quotation-electric {
    font-size: 10px;
    font-weight: 500;
    color: #fff; }
  .quotation-details .ta {
    text-align: center; }
  .quotation-details .textb {
    font-weight: bold; }
  .quotation-details .for-left-side {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    line-height: 22px; }
  .quotation-details .quotation-class-number-left {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: left;
    line-height: 22px; }
  .quotation-details .invoice-electric {
    font-size: 10px;
    font-weight: 500;
    color: #fff; }
  .quotation-details .quotation-right {
    margin-bottom: 50px; }
  .quotation-details .quotation-footer {
    margin-top: 30px; }
  .quotation-details .quotation-sub-total {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    width: 60%;
    margin-top: 5px; }
  .quotation-details .quotation-sub-total-shipping {
    margin-right: 4%;
    margin-bottom: 0px;
    font-weight: 700;
    width: 40%;
    text-align: right;
    color: #212529; }
  .quotation-details .quotation-sub-totals {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-right: 12px;
    text-align: right;
    width: 40%; }
  .quotation-details .quotation-sub-total-net {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    width: 60%;
    color: #fff; }
  .quotation-details .quotation-ten-amount {
    font-size: 12px;
    font-weight: 400; }
  .quotation-details .quotation-ten-amount p {
    margin: 0; }
  .quotation-details .quotation-sub-totals-net {
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    color: #fff;
    width: 40%; }
  .quotation-details .quotation-footer-terms {
    margin-bottom: 40px; }
  .quotation-details .table {
    margin-top: 0px !important; }

.quotation-detail-card {
  max-width: 1200px; }

.quotation-detail-card-body {
  padding: 30px 60px; }

.term-condition {
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; }

.term-condition-custom-tab {
  width: 98%;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  color: #000000;
  line-height: 30px;
  margin-bottom: 20px; }

.form-label {
  font-size: 14px;
  font-weight: 400; }

.rdw-editor-toolbar {
  margin-bottom: 0px !important; }

.rdw-editor-toolbar {
  padding: 5px 10px 0px;
  border-radius: 0px 0px 5px 5px;
  font-size: 0px;
  border: none !important; }

.rdw-option-wrapper,
.rdw-dropdown-wrapper {
  border: none; }
  .rdw-option-wrapper img,
  .rdw-dropdown-wrapper img {
    width: 11px; }
  .rdw-option-wrapper .rdw-dropdown-optionwrapper,
  .rdw-option-wrapper .rdw-dropdown-selectedtext,
  .rdw-dropdown-wrapper .rdw-dropdown-optionwrapper,
  .rdw-dropdown-wrapper .rdw-dropdown-selectedtext {
    font-size: 11px; }

.rdw-editor-wrapper {
  display: flex;
  flex-direction: column-reverse; }

.rdw-editor-main {
  height: auto !important;
  padding: 0px 20px 20px;
  border-radius: 5px 5px 0px 0px;
  border: none !important;
  font-size: 12px;
  color: #adb5bd; }
  .rdw-editor-main::-webkit-scrollbar {
    width: 6px; }
  .rdw-editor-main::-webkit-scrollbar-track:hover {
    border-radius: 10px; }
  .rdw-editor-main:hover::-webkit-scrollbar-thumb {
    background: #8697b0;
    border-radius: 10px; }

.edit-customer-footer-button {
  margin-right: 9%; }

.edit-customer-quotation-primary-label {
  margin-left: 10px;
  font-weight: 400;
  font-size: 12px;
  color: #0d58c1; }

.view-customer-detail-page .col-sm-12 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px; }

.view-customer-detail-page .active-button {
  border-radius: 20px;
  color: #fff; }

.view-customer-detail-page .title {
  font-size: 12px;
  font-weight: 400; }

.view-customer-detail-page .value {
  font-size: 14px;
  font-weight: 600; }

.view-customer-detail-page .bank-detail-card {
  background-color: #caeee7;
  line-height: 19px; }
  .view-customer-detail-page .bank-detail-card .title {
    font-size: 14px;
    font-weight: 400;
    color: #495057; }
  .view-customer-detail-page .bank-detail-card .value {
    font-size: 14px;
    font-weight: 700;
    color: #495057; }

.view-customer-detail-page .enquiry-card {
  background-color: #f4d6d5;
  line-height: 19px; }
  .view-customer-detail-page .enquiry-card .title {
    font-size: 14px;
    font-weight: 400;
    color: #495057; }
  .view-customer-detail-page .enquiry-card .value {
    font-size: 14px;
    font-weight: 700;
    color: #495057; }
  .view-customer-detail-page .enquiry-card .view-customer-pending-amt {
    font-size: 14px;
    font-weight: 400;
    color: #f25c54; }
  .view-customer-detail-page .enquiry-card .view-customer-pending-amt-value {
    font-size: 14px;
    font-weight: 700;
    color: #f25c54; }
  .view-customer-detail-page .enquiry-card .view-hr {
    color: #fff; }
  .view-customer-detail-page .enquiry-card .view-customer-invoice-value {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-left: 12px; }
  .view-customer-detail-page .enquiry-card .view-coustomer-invoice-title {
    padding: 5px;
    margin-bottom: 15px; }

.edit-quotation-total-details {
  height: 35px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 2px;
  padding: 7px; }

.label-lpo-no {
  font-weight: 600;
  font-size: 14px; }

#ev-form {
  padding: 20px; }

.add-purchase-cancel-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff; }

.purchase-edit-purchase .edit-purchase-sub-total {
  margin-top: 5%; }

.purchase-edit-purchase .edit-supplier-close-save {
  margin-left: 15px; }

.purchase-edit-purchase .purchase-footer {
  margin-left: 15px; }

.purchase-edit-purchase .saveSubmit {
  margin-left: 25px; }

.purchase-edit-purchase .purchase-bill .form-label {
  margin-left: 14px; }

.first-cell {
  font-weight: 800; }

.category-edit-category-button {
  float: left;
  margin-left: 33%;
  margin-top: 2%; }

.edit-category-close-button {
  margin-left: 15px; }

.edit-customer-check-box-primary {
  margin-bottom: -16px; }

.form-check-input {
  color: #0d58c1; }

.edit-quotation-shipping-charge {
  margin-left: -11px; }

.quotation-button-save-pdf {
  width: 100px;
  height: 30px;
  color: #fff;
  background-color: #0d58c1;
  float: right;
  margin-right: 84px;
  border: none;
  border-radius: 5px;
  margin-bottom: 34px;
  margin-top: 20px; }

.custom-search-box {
  background: #ffffff url(/images/icons-search.svg?09c6581af29dbcc272396f5c91ea20be) no-repeat scroll 18px 10px;
  padding-left: 43px; }
  .custom-search-box::placeholder {
    color: rgba(13, 88, 193, 0.5) !important; }
  .custom-search-box:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(13, 88, 193, 0.5) !important; }
  .custom-search-box::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(13, 88, 193, 0.5) !important; }

.f-text-right {
  text-align: right; }

.edit-supplier-primary {
  font-weight: 400;
  font-size: 12px;
  color: #adb5bd;
  margin-top: 2px;
  margin-left: 8px; }

.parent-edit-supplier-primary {
  color: #0d58c1;
  font-weight: 400;
  font-size: 14px;
  margin-top: 4px;
  margin-left: 8px; }

.form-check-input:checked + .edit-supplier-primary {
  color: #585c5f !important; }

.edit-supplier-check-box {
  margin-bottom: -16px; }

.edit-supplier-close-save {
  margin-bottom: 10px;
  margin-right: 33%;
  margin-top: 10px;
  margin-left: 15px; }

.saveSubmit {
  width: 100px;
  height: 33px; }

.supplier-details-title {
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  margin-bottom: 30px;
  margin-top: 30px; }

.view-minheight {
  line-height: 19px;
  min-height: 420px; }

.credit-period-footer-button {
  margin-left: 17%; }

.credit-period-footer-cancel {
  margin-left: 15px; }

.settings-general-index .header-profile-user {
  height: 36px !important;
  width: 35px !important;
  padding: 3px;
  margin-bottom: 30px;
  margin-right: 55px; }

.settings-general-index .general-cancel-button {
  width: 110px;
  background: #d51920;
  border-radius: 5px;
  margin-left: 35px; }

.settings-general-index .general-save-button {
  width: 110px;
  background: #0d58c1;
  border-radius: 5px; }

.settings-general-index .general-button-footer {
  margin-right: 27px;
  margin-bottom: 20px; }

.edit-tax-head .edit-tax-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-tax-head .switch-button {
  margin-top: 7px; }

.edit-tax-head .tax-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-tax-head .tax-cancel-button {
  margin-left: 20px;
  background: #d51920;
  border-radius: 5px; }

.edit-tax-head .tax-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-country-head .edit-country-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-country-head .country-cancel-button {
  margin-left: 20px;
  width: 25%;
  background: #d51920;
  border-radius: 5px; }

.edit-country-head .country-save-button {
  background: #0d58c1;
  border-radius: 5px;
  width: 25%; }

.edit-country-head .edit-country-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-country-head .header-profile-user {
  height: 45px !important;
  width: 45px !important; }

.edit-country-head .country-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-country-head .switch-button {
  margin-top: 7px; }

.edit-currency-head .edit-currency-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-currency-head .currency-cancel-button {
  margin-left: 20px;
  background: #d51920;
  border-radius: 5px; }

.edit-currency-head .currency-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-currency-head .edit-currency-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-currency-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-currency-head .currency-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-currency-head .switch-button {
  margin-top: 7px; }

.edit-payment-head .edit-payment-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-payment-head .payment-cancel-button {
  margin-left: 20px;
  width: 19%;
  background: #d51920;
  border-radius: 5px; }

.edit-payment-head .payment-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-payment-head .edit-payment-footer-button {
  margin-left: 33%;
  margin-top: 15px; }

.edit-payment-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-payment-head .payment-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-payment-head .switch-button {
  margin-top: 7px; }

.edit-payment-head .edit-payment-footer {
  margin-left: 33%;
  margin-top: 25px; }

.edit-payment-head .edit-payment-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-payment-head .edit-payment-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-desigination-head .edit-desigination-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-desigination-head .desigination-cancel-button {
  margin-left: 20px;
  width: 10%;
  background: #d51920;
  border-radius: 5px; }

.edit-desigination-head .desigination-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-desigination-head .edit-desigination-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-desigination-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-desigination-head .desigination-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-desigination-head .switch-button {
  margin-top: 7px; }

.edit-department-head .edit-department-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-department-head .department-cancel-button {
  margin-left: 20px;
  width: 10%;
  background: #d51920;
  border-radius: 5px; }

.edit-department-head .department-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-department-head .edit-department-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-department-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-department-head .department-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-department-head .switch-button {
  margin-top: 7px; }

.edit-credit-head .edit-credit-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-credit-head .edit-credit-footer-cancel {
  margin-left: 20px;
  width: 21%;
  background: #d51920;
  border-radius: 5px; }

.edit-credit-head .credit-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-credit-head .credit-period-footer-cancel {
  background: #d51920;
  border-radius: 5px; }

.edit-credit-head .credit-period-footer-button {
  margin-left: 16%;
  margin-top: 15px; }

.edit-credit-head .header-profile-user {
  margin-left: 20px; }

.edit-credit-head .credit-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-credit-head .tax-status {
  margin-left: 20%; }

.edit-credit-head .switch-button {
  margin-top: 7px; }

.add-customer-main-page .edit-customer-quotation-primary-label {
  margin-top: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #adb5bd; }

.add-customer-main-page .header-profile-user {
  margin-left: 35px; }

.add-customer-main-page .form-check-input {
  border: 1px solid #adb5bd; }

.add-customer-main-page .tax-status {
  margin-left: 77px; }

.add-customer-main-page .customer-back-button {
  margin-left: 20px;
  width: 100px; }

.add-customer-main-page .customer-save-button {
  width: 100px; }

.add-customer-main-page .customHeading {
  font-weight: 600;
  font-size: 14px;
  color: #212529;
  margin-top: 36px; }

.add-customer-main-page .edit-customer-footer-button {
  margin-right: 82px;
  margin-top: 10px; }

.edit-supplier-page .header-profile-user {
  margin-right: 68px;
  margin-bottom: 20px; }

.edit-supplier-page .supplier-status {
  margin-right: 10px; }

.edit-supplier-page .supplier-image {
  margin-left: 34px; }

.edit-supplier-page .supplier-bottom-page {
  margin-right: 50px;
  margin-top: 20px;
  margin-bottom: 20px; }

.edit-supplier-page .supplier-cancel-button {
  margin-left: 24px;
  width: 100px;
  background: #d51920;
  border-radius: 5px; }

.edit-supplier-page .supplier-save-button {
  width: 100px;
  background: #0d58c1;
  border-radius: 5px; }

.product-title-page .product-footer-page {
  margin-left: 221px; }

.product-title-page .product-cancel-button {
  margin-left: 22px;
  width: 115px; }

.product-title-page .footer-edit-product {
  margin-top: 20px; }

.account-detail-head .account-table {
  text-align: center;
  background: #c4e0f9; }
  .account-detail-head .account-table th {
    background: #c4e0f9;
    padding-top: 13px;
    padding-bottom: 13px; }
    .account-detail-head .account-table th:first-child {
      border-radius: 10px 0px 0px 0px; }
    .account-detail-head .account-table th:last-child {
      border-radius: 0px 10px 0px 0px; }

.account-detail-head .docLabel {
  margin-top: 7px; }
  .account-detail-head .docLabel .bg-grey {
    background: #e9ecef !important;
    color: #fff !important;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px !important;
    padding: 4px 10px; }

.account-detail-head .no-data-found {
  padding: 15px;
  border-bottom: 1px solid #f4f0f1;
  border-top: 1px solid #f4f0f1; }

.account-detail-head .detail-data {
  text-align: center; }
  .account-detail-head .detail-data td {
    border-bottom: 1px solid #e9ecef; }
  .account-detail-head .detail-data:last-child td {
    border: none; }

.proforma-edit-total {
  padding: 9px;
  background-color: #fff;
  border-radius: 5px; }

.proforma-edit-form .form-label {
  margin-left: 10px; }

.proforma-edit-form .payable {
  font-size: 12px;
  font-weight: 600;
  color: #212529; }

.proforma-edit-form .proforma-edit-footer {
  margin-right: 32%; }

.proforma-edit-form .bottom-save-button {
  margin-right: 20px; }

.edit-department-header-page .settings-department-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-department-header-page .tax-status {
  margin-left: 20%; }

.edit-department-header-page .settings-department-close-button {
  margin-left: 1%;
  background: #d51920;
  border-radius: 5px; }

.edit-department-header-page .header-profile-user {
  margin-left: 20px; }

.edit-department-header-page .edit-department-footer-button-design {
  margin-top: 10px;
  margin-left: 15%; }

.settings-desigination-edit .settings-desigination-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.settings-desigination-edit .settings-desigination-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.settings-desigination-edit .settings-desigination-footer-button {
  margin-left: 16%;
  margin-top: 10px; }

.settings-desigination-edit .header-profile-user {
  margin-left: 30px; }

.settings-desigination-edit .tax-status {
  margin-left: 20%; }

.edit-tax-header-section .edit-footer-tax {
  margin-top: 10px;
  margin-left: 15%; }

.edit-tax-header-section .tax-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-tax-header-section .tax-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-tax-header-section .tax-switch-button {
  margin-left: 10%; }

.edit-currency-page .currency-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-currency-page .currency-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-currency-page .currency-footer-button {
  margin-top: 10px;
  margin-left: 15%; }

.edit-currency-page .currency-switch-button {
  margin-left: 10%; }

.edit-countery-head .edit-country-footer {
  margin-top: 10px;
  margin-left: 14%; }

.edit-countery-head .country-cancel-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 5%; }

.edit-countery-head .country-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-countery-head .header-profile-user {
  margin-left: 23px; }

.edit-countery-head .tax-status {
  margin-left: 25%; }

.term-and-condition-header .nav-link.active {
  background-color: #c4e0f9;
  border-radius: 5px;
  color: #212529; }

.term-and-condition-header .nav-link {
  color: #212529;
  margin-top: 10px; }

.term-and-condition-header .tandc-footer-button {
  margin-bottom: 30%; }

.term-and-condition-header .edit-footer-termandcondition {
  margin-top: 15%;
  margin-left: 25px; }

.term-and-condition-header .tac-save-button {
  margin-right: 3%;
  background: #0d58c1;
  border-radius: 5px; }

.term-and-condition-header .tac-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.term-and-condition-header .rdw-editor-main {
  height: 270px; }

.term-and-condition-header .header-profile-user {
  margin-left: 5%;
  margin-bottom: 5%; }

.edit-payment-head .edit-payment-save-button {
  background: #0d58c1;
  border-radius: 5px;
  margin-left: 5%; }

.edit-payment-head .edit-payment-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.intro-pre-head .intro-footer-button {
  margin-top: 20px;
  margin-left: 38%; }

.intro-pre-head .intro-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.intro-pre-head .intro-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.intro-pre-head .intro-form-section {
  margin-top: 20px; }

.cat-header .cat-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.cat-header .cat-close-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 5%; }

.cat-header .cat-footer-section {
  margin-left: 29%;
  margin-top: 20px; }

.cat-header .cat-toggle {
  display: flex; }

.cat-header .tax-status {
  margin-right: 25px; }

.cat-header .tax-switch-button {
  margin-left: 30px; }

.product-header .product-status {
  margin-right: 25px; }

.product-header .pro-toggle {
  display: flex; }

.product-header .product-switch-button {
  margin-left: 30px; }

.product-header .footer-edit-product {
  margin-left: 33%;
  margin-top: 20px; }

.product-header .product-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.product-header .product-cancel-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 2%; }

.product-header .product-footer-section {
  margin-left: 15%;
  margin-top: 10px; }

.settings-general-head .setting-general {
  margin-right: 2%;
  margin-top: 2%; }

.settings-general-head .header-profile-user {
  margin-right: 8%;
  margin-bottom: 3%; }

.settings-general-head .css-1s2u09g-control {
  border: none;
  font-family: Open Sans; }

.quotation-head .footer-value .form-control {
  width: 50%;
  text-align: center; }

.quotation-head .footer-value .form-label {
  margin-left: 37px; }

.quotation-head .footer-value .quotation-footer {
  margin-top: 20px;
  margin-left: 8%; }

.report-head .approved {
  font-size: 12px;
  font-weight: 600; }

.report-head .customer-form {
  margin-top: 52px; }

.report-head .report-save-button {
  margin-right: 3%;
  margin-top: 1%; }

.reportpdf-head .sales {
  font-size: 32px;
  font-weight: 700; }

.reportpdf-head .report {
  font-size: 32px;
  font-weight: 600; }

.reportpdf-head .report-state {
  margin-top: 4%;
  margin-bottom: 2%; }

.reportpdf-head .py-2 {
  min-height: 300px; }

.reportpdf-head .quotation-detail-card-body {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px;
  padding-bottom: 5px; }

.report-detail-pdf .report-save-button {
  margin-left: 54%; }

.statement-head .quotation-detail-table {
  background-color: #a8d3ff;
  border-radius: 5px; }

.statement-head .table {
  margin-top: 0px; }

.statement-head .table-responsive {
  border-radius: 20px 20px 0 0; }

.statement-head .py-2 {
  min-height: 400px; }

.statement-approved {
  margin-left: 78%;
  margin-bottom: 10%;
  font-weight: 600; }

.statement-pdf-statement {
  margin-top: 6%;
  margin-bottom: 2%; }

.tax-filter-head .tax-name {
  margin-bottom: 15px; }

.currency-filter-head .currency-filter {
  margin-bottom: 20px; }

.payment-filter-head .filter-buttons {
  position: fixed;
  right: 44px;
  bottom: 20px; }

.payment-filter-head .btn-secondary {
  margin-right: 20px; }

.edit-customer-head .edit-customer-bottom {
  margin-right: 9%;
  margin-top: 1%; }

.w-15 {
  width: 15%; }

.h-90 {
  height: 90px; }

.pr-40 {
  padding-right: 40px; }

.pr-5 {
  padding-right: 5px; }

.proforma-detail-page .tax-net-weight {
  font-weight: 700 !important;
  font-size: 12px !important; }

.quotation-details .table-striped th {
  background-color: #d51920; }

.quotation-details .companystyle {
  color: #d51920; }

.quotation-details .table-striped td,
.quotation-details .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.quotation-details .quotation-footer-terms {
  margin-bottom: 0px; }

.tt {
  text-transform: capitalize; }

.purchase-details .table-striped th {
  background-color: #d51920; }

.purchase-detail-page .table-striped th {
  background-color: #d51920; }

.purchase-details .companystyle {
  color: #d51920; }

.purchase-details .QuotationDetailsMicohr {
  background: url(/images/footer-line.svg?4a0781b5b642bd2dc78025cabfcd9c8e) no-repeat;
  background-size: 750px;
  height: 15px; }

.purchase-detail-page .table-striped td,
.purchase-detail-page .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.purchase-detail-page .purchaseDetailsMicohr:after {
  background: #fff;
  padding: 0 4px;
  position: relative;
  top: -15px;
  font-size: 18px;
  color: #d51920;
  font-weight: 700; }

.purchase-detail-page .purchaseDetailsMicohr {
  border: none;
  border-top: 1.5px solid #d51920;
  color: #333;
  overflow: visible;
  height: 5px;
  opacity: 1; }

.purchasecompanystyle {
  padding: 0 4px;
  position: relative;
  top: -5px;
  font-size: 18px;
  color: #0d58c1;
  font-weight: 700; }

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

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

.oemcol-1 {
  display: none; }

.pad0 {
  padding: 0 !important; }

.tax-invoice-container .table-striped td .tax-invoice-container .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.tax-invoice-container .table-striped th {
  background-color: #d51920; }

.tax-invoice-container .invoicecompanystyle {
  padding: 0 4px;
  position: relative;
  top: -5px;
  font-size: 18px;
  color: #d51920;
  font-weight: 700; }

.input-border .form-control {
  border: 1px solid #e9ecef;
  width: 80px;
  display: inline; }

.card_height {
  height: 120px; }

.justification-end {
  display: flex;
  justify-content: flex-end; }

.justification-center {
  display: flex;
  justify-content: center; }

.aternative-row:nth-of-type(2n - 1) {
  background: #ffffff; }

.customBorder {
  border-bottom: solid #cbcbcb 0.2px; }

.producthrstyle {
  border-top: 1px solid #ccd0d6; }

.producthrstyle:after {
  background: #383838;
  content: "Stock Details\00a0\00a0\00a0\00a0";
  padding: 0 4px;
  position: relative;
  top: -15px;
  font-size: 18px;
  color: #234066;
  font-weight: 700; }

.productviewheading {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700; }

.edit-credit-footer-cancel .productcardheader {
  background-color: #0e4d86; }

.productcardbg {
  background-color: #f3f6f9; }

.projectcardbg {
  background-color: #f3f6f9;
  height: 80px;
  padding: 10px 10px; }

.align-center {
  display: flex;
  align-items: center; }

.fw-weight-550 {
  font-weight: 550; }

.fw-weight-500 {
  font-weight: 500; }

.custom-border-color {
  border-color: #779bbb !important; }

.custom-input {
  background: #e3ebf1 !important; }

.inner-container {
  background-color: #dde6ee; }

.tag-title {
  color: #0e4d86; }

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  transition: width 0.5s ease-in-out;
  /* Transition on width property */
  padding-top: 90px; }

.sidenav .side-content {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 24px;
  color: #333;
  transition: 0.3s; }

.element {
  position: relative; }

.element::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 0;
  padding: 5px;
  background-color: #ffb500;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease; }

.element:hover::before {
  opacity: 1;
  visibility: visible;
  width: 200px; }

.profile-background {
  border-bottom: 1px solid #f4f0f1; }

.tablinks {
  color: black;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer; }

.tablinks.active {
  background-color: #0e4d86;
  color: white; }

.tabcontent {
  display: none;
  padding: 15px; }

.tabcontent.active {
  display: block; }

.emp-tittle-color {
  color: #0e4d86; }

.custom-tab-pane.active {
  background-color: #333; }

.projectinvcard {
  height: 40px;
  background-color: #eff0f2;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 10px;
  padding: 7px; }

.active.customColor {
  border-bottom: 2px solid #d51920;
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: center; }

.customColor {
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  text-align: center; }

.active.text {
  color: #222; }

.payment-term-total {
  background-color: #e1e9ef;
  padding-top: 15px;
  border-radius: 10px; }

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

.text-grey-700 {
  color: #495057; }

.flexDisplay {
  display: flex; }

.first-cell {
  color: #212529 !important;
  font-weight: 400 !important; }

.blue-text {
  color: #d51920; }
  .blue-text.downloadable-file {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.font-size-10 {
  font-size: 10px; }

.font-size-12 {
  font-size: 12px; }

.font-size-14 {
  font-size: 14px; }

.font-size-24 {
  font-size: 24px; }

.font-size-28 {
  font-size: 28px; }

.btn-blue,
.btn-blue:active {
  background: #d51920 !important; }

.add-dropdown,
.profile-dropdown {
  width: max-content;
  box-shadow: 0px 4px 20px rgba(13, 88, 193, 0.25); }
  .add-dropdown .submenu,
  .profile-dropdown .submenu {
    color: #d51920; }

.dashboard-container .chart-head {
  position: absolute;
  top: 22px;
  left: 25px;
  font-size: 16px;
  font-weight: 700; }
  .dashboard-container .chart-head.donut {
    top: 15px;
    left: 15px; }

.dashboard-container .sales-chart .apexcharts-legend.apx-legend-position-top {
  right: 28px !important;
  top: 0px !important;
  left: unset !important; }

.dashboard-container .total-profit-wrapper {
  height: 330px; }

.dashboard-container .due-solid-border {
  border-bottom: 1px solid #e4e4e4;
  margin: 10px -13px 4px; }

.dashboard-container .bottom-wrapper {
  height: 199px; }

.dashboard-container .invoice-text {
  color: #5b5b5b; }

.dashboard-container .due-border {
  border-bottom: 1px dashed #e4e4e4; }
  .dashboard-container .due-border .due-date {
    color: #5b5b5b; }

.dashboard-container .filter-border {
  border: 1px solid #e9e9ea;
  border-radius: 50px;
  padding: 4px 10px; }

.dashboard-container .most-selling .apexcharts-legend-marker {
  margin-right: 10px;
  float: left; }

.dashboard-container .most-selling .apexcharts-canvas text {
  fill: #2a2a2a !important;
  font-weight: 600;
  font-size: 13px; }

.dashboard-container .most-selling .seriesWrapper {
  width: 135px;
  float: left; }
  .dashboard-container .most-selling .seriesWrapper .seriesLabel {
    width: 70%;
    float: left;
    margin-top: -4px; }
  .dashboard-container .most-selling .seriesWrapper .seriesValue {
    color: #212529;
    font-size: 14px;
    font-weight: 600;
    float: left;
    margin-top: -4px; }

.dashboard-container .most-selling .apexcharts-tooltip-title,
.dashboard-container .most-selling .apexcharts-tooltip-text {
  color: #ffffff;
  font-size: 12px; }

.notfound-conatainer .notfound-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }

.notfound-conatainer .notfound-left {
  max-width: 70%; }

.notfound-conatainer .notfound-title {
  font-size: 120px;
  color: #d51920 !important;
  line-height: 120px; }

.notfound-conatainer .notfound-sub-title {
  font-size: 40px; }

.notfound-conatainer .notfound-desc {
  font-size: 18px;
  color: #495057 !important; }

.notfound-conatainer .notfound-button {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700; }

.download-container {
  display: flex;
  justify-content: center; }

.highlight-background {
  background: #ffffff !important; }

.card-pad {
  padding: 0.8rem !important; }

.pad12 {
  padding: 12px; }

.white {
  color: #ffffff !important; }

.white-bg {
  background: #ffffff !important; }

.primary-bg {
  background: #d51920 !important; }

.login-background {
  background: url(/images/sign-in-mask.png?befe99fe3c52ba8c63667cb00fb81084);
  height: 100vh;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.logintxt {
  color: var(--text, #222);
  font-family: Uber Move;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; }

.footer {
  background: #ffffff;
  margin-top: 20px; }

.table-responsive {
  -webkit-overflow-scrolling: touch; }

#layout-wrapper #page-topbar {
  box-shadow: none !important; }

#layout-wrapper .vertical-menu {
  box-shadow: none !important; }
  #layout-wrapper .vertical-menu .navbar-brand-box {
    background-color: #ffffff;
    box-shadow: none !important; }

.sidebar-logo {
  margin-top: 10px; }

.vertical-collpsed .contact-wrapper {
  display: none !important; }

.side-menu-icon {
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 20px;
  height: 30px;
  margin-right: 10px;
  background-position: center; }

.modal .invalid-feedback {
  color: #f25c54; }

.modal .form-control {
  color: #212529;
  border: 1px solid #d51920;
  border-radius: 5px; }
  .modal .form-control.is-invalid {
    border-color: #d51920; }
  .modal .form-control::placeholder {
    color: #8a9197; }
  .modal .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8a9197; }
  .modal .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #8a9197; }

.elevate-dropdown .react-select__control {
  border: none; }

.elevate-dropdown .react-select__indicator-separator {
  background-color: #ffffff; }

.elevate-dropdown .react-select__placeholder {
  color: #8a9197;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px; }

.elevate-dropdown .react-select__value-container {
  font-size: 12px; }

.elevate-dropdown .react-select__indicator {
  color: #adb5bd; }

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #d51920;
  color: #ffffff; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #d51920; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #d51920; }

span.flatpickr-weekday,
.flatpickr-weekdays {
  background: #d51920; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #d51920;
  border-color: #d51920;
  color: #ffffff; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  box-shadow: -10px 0 0 #d51920; }

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #d51920, 5px 0 0 #d51920; }

.flatpickr-day.inRange {
  background: #fef7f4;
  box-shadow: -5px 0 0 #fef7f4, 5px 0 0 #fef7f4;
  border-color: #fef7f4; }

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background: #ffffff; }

.table {
  border: #ffff;
  margin-top: -10px; }
  .table th {
    font-size: 14px; }

.card {
  border-radius: 0.5rem; }

.page-content {
  /*.dashboard-report{
        .card{
            border-radius: .50rem;
            box-shadow: 1px 15px 30px #FBE1D4;
            &:hover {
                box-shadow: 1px 15px 30px #F9D2BF;
            }
        }
    }*/ }
  .page-content .role-container tr td:first-child {
    text-transform: capitalize; }
  .page-content .comment-description {
    border-left: 1px dotted lightgrey; }
  .page-content .invalid-feedback {
    color: #f25c54;
    overflow: hidden;
    text-overflow: ellipsis; }
  .page-content .react-bootstrap-table .expand-cell-header,
  .page-content .react-bootstrap-table .expand-cell {
    cursor: pointer; }
  .page-content .react-calendar {
    border: unset;
    min-height: 320px;
    color: #212529; }
    .page-content .react-calendar .react-calendar__navigation button {
      min-width: 30px; }
    .page-content .react-calendar .react-calendar__tile--now {
      border-radius: 50%;
      color: #d51920 !important;
      background: #ffffff; }
    .page-content .react-calendar .react-calendar__tile {
      padding: 7px 5px;
      color: #212529; }
    .page-content .react-calendar .react-calendar__month-view__days__day--neighboringMonth {
      color: hwb(19 58% 4%) !important; }
    .page-content .react-calendar abbr[title] {
      text-decoration: none !important; }
    .page-content .react-calendar .react-calendar__month-view__days__day--weekend {
      color: #d51920; }
    .page-content .react-calendar .react-calendar__tile--active,
    .page-content .react-calendar .react-calendar__tile:enabled:hover {
      border-radius: 50%;
      background: #d51920;
      color: #ffffff !important; }
    .page-content .react-calendar .react-calendar__navigation__arrow {
      color: #d51920; }
  .page-content .right-bar.task-filter {
    z-index: 1009;
    background: #e9f5ff !important; }
    .page-content .right-bar.task-filter .right-bar-toggle,
    .page-content .right-bar.task-filter .right-bar-toggle:hover {
      background-image: url(/images/closebutton.svg?8d40d9c84161f7b8e46c14dd165d2499);
      background-color: unset;
      background-repeat: no-repeat;
      background-size: contain; }
    .page-content .right-bar.task-filter .react-select__placeholder {
      font-size: 12px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    .page-content .right-bar.task-filter .react-select__control {
      border-color: #ffffff;
      background: #ffffff; }
    .page-content .right-bar.task-filter .react-select__single-value {
      color: #d51920; }
    .page-content .right-bar.task-filter .react-select__indicator-separator {
      background-color: #ffffff; }
    .page-content .right-bar.task-filter .react-select__placeholder,
    .page-content .right-bar.task-filter .react-select__indicator {
      color: #dee2e6; }
    .page-content .right-bar.task-filter .form-control {
      background: #ffffff;
      border-color: #ffffff;
      color: #717171; }
      .page-content .right-bar.task-filter .form-control::placeholder {
        font-size: 12px;
        color: #dee2e6; }
      .page-content .right-bar.task-filter .form-control:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        font-size: 12px;
        color: #dee2e6; }
      .page-content .right-bar.task-filter .form-control::-ms-input-placeholder {
        /* Microsoft Edge */
        font-size: 12px;
        color: #dee2e6; }
  .page-content .upload-logo img {
    max-width: 150px;
    max-height: 100px; }
  .page-content .form-label {
    font-size: 12px;
    font-weight: 600; }
  .page-content .form-control {
    color: #212529;
    border: none;
    border-radius: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    padding-top: 14px;
    padding-bottom: 10px; }
    .page-content .form-control.product-texarea {
      padding-top: 14px;
      padding-bottom: 0px;
      line-height: 1; }
    .page-content .form-control.is-invalid {
      border-color: #d51920; }
    .page-content .form-control.date-field.is-invalid + input {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F25C54'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F25C54' stroke='none'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.235rem) center;
      background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem); }
    .page-content .form-control::placeholder {
      color: #8a9197; }
    .page-content .form-control:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #8a9197; }
    .page-content .form-control::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #8a9197; }
    .page-content .form-control.date-field {
      background-color: #ffffff; }
    .page-content .form-control:disabled {
      background-color: #f2f2f2; }
  .page-content #excel,
  .page-content #pdf,
  .page-content .cloud-upload,
  .page-content .dash-icon {
    padding: 0px 10px;
    border-radius: 10px;
    margin: 0;
    font-size: 1.5em; }
  .page-content .dashboard-icon {
    padding: 4px 20px 12px;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    border-radius: 10px;
    margin: 0;
    font-size: 1.5em; }
  .page-content .total-income {
    background: rgba(243, 155, 155, 0.25);
    background-image: url(/images/income.svg?0f577865103b67d5fad7a2c9da237fad);
    background-position: 9px 10px !important; }
  .page-content .total-expense {
    background: rgba(128, 167, 222, 0.25);
    background-image: url(/images/expense.svg?b8865f2c5d023911e80db9f8560bdd65);
    background-position: 9px 12px !important; }
  .page-content .customer-container {
    background: #ffedec;
    box-shadow: none; }
    .page-content .customer-container .total-customer {
      background: #f4d1cf;
      background-image: url(/images/customer-icon.svg?169975184476e68af9b3415d85c2508b) !important;
      background-position: 50% !important; }
  .page-content .supplier-container {
    background: #ccf2eb;
    box-shadow: none; }
    .page-content .supplier-container .total-supplier {
      background: #b5e3db;
      background-image: url(/images/supplier-icon.svg?85fffb4497f3e150350db7975d9c3952) !important;
      background-position: 50% !important; }
  .page-content .quotation-container {
    background: #e2e9fc;
    box-shadow: none; }
    .page-content .quotation-container .total-quotation {
      background: #ced9f6;
      background-image: url(/images/quote-icon.svg?021db08cb268ba13aaba0b1328dbd27d) !important;
      background-position: 50% !important; }
  .page-content .invoice-container {
    background: #dce3ec;
    box-shadow: none; }
    .page-content .invoice-container .total-invoice {
      background: #b8c0ce;
      background-image: url(/images/invoice-icon.svg?4f0e47e00bc9e62a1c1278925c40fb4d) !important;
      background-position: 50% !important; }
  .page-content .dropzone {
    min-height: unset;
    border: none;
    background: #ffffff;
    border-radius: 5px; }
    .page-content .dropzone .upload-wrapper {
      position: relative;
      min-height: 37px; }
      .page-content .dropzone .upload-wrapper .no-file-label {
        background: #e9ecef;
        border-radius: 50px;
        padding: 0px 10px;
        width: 123px; }
      .page-content .dropzone .upload-wrapper h5, .page-content .dropzone .upload-wrapper .h5 {
        font-size: 1rem; }
      .page-content .dropzone .upload-wrapper .cloud-upload {
        position: absolute;
        right: 0.5rem;
        top: 0.7rem;
        z-index: 1;
        background-image: url(/images/upload.svg?c0783164b7809f3063ecc8b38ca094c0);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px; }
      .page-content .dropzone .upload-wrapper .downloadable-file {
        max-width: 70%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
  .page-content .table-card-wrapper {
    overflow-x: auto; }
  .page-content .simplebar-scrollbar:before {
    background: #d51920; }
  .page-content .right-bar {
    width: 380px;
    max-width: 100% !important; }
  .page-content .search-wrapper {
    position: relative; }
    .page-content .search-wrapper .serach-icon {
      position: absolute;
      right: 10px;
      top: 9px;
      font-size: 20px; }
    .page-content .search-wrapper .search-input {
      background: #ffffff;
      border: unset; }
      .page-content .search-wrapper .search-input::placeholder {
        color: #d51920;
        opacity: 1;
        /* Firefox */ }
      .page-content .search-wrapper .search-input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #d51920; }
      .page-content .search-wrapper .search-input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #d51920; }
  .page-content .pagination .active.page-item .page-link {
    color: #d51920;
    border: 1 px solid #d51920; }
  .page-content .pagination .page-item .page-link {
    border: unset;
    background: inherit; }

.total-wrapper {
  background: #ffffff;
  border-radius: 10px; }
  .total-wrapper .total-divider {
    border-bottom: 1px solid rgba(173, 181, 189, 0.2); }

.notfound-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(113.76deg, #d51920 -0.49%, rgba(233, 103, 41, 0.8) 55.21%); }
  .notfound-container .card {
    border-radius: 50px;
    height: 60vh;
    box-shadow: 10px 20px 25px rgba(0, 0, 0, 0.15); }
    .notfound-container .card .card-body {
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column; }

@media (min-width: 769px) {
  .vertical-collpsed {
    min-height: 500px; } }

.actionButtonAlign {
  display: flex;
  justify-content: space-around; }

.term {
  margin-top: 50px;
  margin-bottom: 10px; }

.terms {
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600; }

.py-6 {
  padding-top: 0.5rem !important;
  padding-bottom: 6rem !important; }

.productDetail {
  margin-top: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  margin-bottom: 16px; }

.payable {
  margin-top: 10px; }

.other {
  margin-top: 10px; }

.subTotal {
  margin-top: 25px; }

.vat {
  margin-top: 10px; }

.shippingCharge {
  margin-top: 10px; }

.addButton {
  background-color: #1dd3b0;
  background-image: url(/images/addRow.svg?3fa31b2985fd57524ff7dd921f9c6b9f);
  background-repeat: no-repeat;
  border: none;
  padding: 5px 10px !important;
  width: 22px;
  height: 22px; }

.removeButton {
  background-color: #f25c54;
  background-image: url(/images/removeRow.svg?a01f09ae26a6991f9e3c5e8eedbf01b3);
  background-repeat: no-repeat;
  border: none;
  padding: 5px 10px !important;
  width: 22px;
  height: 22px; }

.editorClassName {
  height: 100px;
  background-color: #fff; }

.expenseDetail {
  background-color: #fff;
  margin: 5px;
  padding: 30px;
  border-radius: 8px; }

.supplierDetailTitle {
  margin-bottom: 30px; }

.CustomerFirstSection {
  background-color: #fff;
  border-radius: 20px;
  margin: 5px;
  padding: 25px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.customDetails {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px; }

.CustomerSecondSection {
  background-color: #1dd3b0; }

.pass {
  top: 17px;
  position: absolute;
  right: 20px; }

.accountdetails {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px; }

.supplierdetails {
  font-size: 20px;
  font-weight: 600;
  color: #0d58c1;
  margin-top: 15px;
  margin-left: 20px; }

.filenames {
  width: 90px;
  height: 23px;
  background-color: #c5d6f0;
  border-radius: 30px;
  text-align: center; }

.iconlist {
  display: flex; }

.icondown {
  margin-left: 20px; }

.totalQuotation {
  background-color: #f4d6d5;
  border-radius: 20px;
  padding: 20px;
  margin: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.totalinvoice {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: #caeee7;
  border-radius: 20px;
  padding: 20px;
  margin: 5px; }

.nav-link {
  color: #0d58c1;
  cursor: pointer; }

.detailActive {
  width: 100px;
  height: 27px;
  background-color: #1dd3b0;
  color: #fff;
  border-radius: 50px;
  text-align: center; }

.mico-table {
  border-collapse: separate;
  border-spacing: 0 1em; }
  .mico-table thead th {
    color: #d51920; }
  .mico-table .table-header__no-accessor,
  .mico-table .table-header__name {
    color: #d51920;
    font-size: 14px; }
  .mico-table .mico-row {
    background: #ffffff; }
    .mico-table .mico-row th:first-child {
      border-top-left-radius: 5px; }
    .mico-table .mico-row td:last-child {
      border-top-right-radius: 5px; }
    .mico-table .mico-row th:first-child {
      border-bottom-left-radius: 5px; }
    .mico-table .mico-row td:last-child {
      border-bottom-right-radius: 5px; }
  .mico-table > :not(caption) > * > * {
    border-top-width: 0px; }

.proforma-textarea {
  min-height: 96px !important; }

.filter-buttons {
  position: fixed;
  right: 10px;
  bottom: 20px; }
  .filter-buttons .btn-primary {
    background: #fff !important;
    color: #d51920;
    width: 95px;
    height: 36px;
    font-family: "Uber Move";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-color: #d51920 !important;
    border-radius: 3px !important; }
  .filter-buttons .btn-secondary {
    background: #000; }

.btn {
  padding: 5px 25px;
  border-radius: 5px;
  border: unset; }

.invoice-detail-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.purchase-detail-page {
  position: relative; }
  .purchase-detail-page .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .purchase-detail-page .table-striped td,
  .purchase-detail-page .table-striped th {
    padding: 10px;
    font-weight: 100; }
  .purchase-detail-page .table-striped th {
    background-color: #0d58c1; }
  .purchase-detail-page .invoicePurchase {
    font-weight: 800;
    font-size: 32px; }
  .purchase-detail-page .invoiceOrder {
    font-weight: 600;
    font-size: 32px; }
  .purchase-detail-page .font-size-20 {
    font-weight: 700;
    font-size: 20px;
    color: #212529; }
  .purchase-detail-page .purchaseOrderTo {
    font-size: 12px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 6px; }
  .purchase-detail-page .purchaseOrderShipping {
    font-weight: 700;
    color: #212529;
    margin-top: 35px; }
  .purchase-detail-page .purchaseDetailsToAddress {
    font-weight: 700;
    color: #212529; }
  .purchase-detail-page .purchaseOrderPoNo {
    font-weight: 600;
    font-size: 14px;
    color: #212529 !important;
    width: 50%; }
  .purchase-detail-page .purchaseDetails-table {
    background-color: #0d58c1;
    color: #fff;
    font-size: 16px; }
  .purchase-detail-page .purchaseDetails-Values {
    color: #212529;
    font-weight: 600;
    font-size: 14px; }
  .purchase-detail-page .purchaseDetailsAmount {
    margin-top: 30px;
    font-weight: 700;
    font-size: 14px;
    color: #212529; }
  .purchase-detail-page .purchaseDetailsAmountWords {
    margin-bottom: 60px;
    color: #adb5bd; }
  .purchase-detail-page .purchaseDetailsTerm {
    margin-bottom: 40px;
    color: #adb5bd;
    font-size: 12px;
    font-weight: 400; }
  .purchase-detail-page .purchaseDetailsMicohr {
    border: none;
    border-top: 1.5px solid #0d58c1;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .purchase-detail-page .purchaseDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .purchase-detail-page .vl {
    border-left: 1px solid #adb5bd; }
  .purchase-detail-page .purchaseDetailsFooter {
    margin-bottom: 25px; }
  .purchase-detail-page .purchaseDetailsThankYou {
    text-align: center;
    color: #212529;
    font-weight: 400;
    font-size: 12px; }
  .purchase-detail-page .purchase-footer-details {
    font-size: 10px;
    font-weight: 500; }
  .purchase-detail-page .purchaseOrderFindTotal {
    width: 50%; }
  .purchase-detail-page .purchaseOrderSubTotals {
    font-size: 20px;
    font-weight: 500;
    color: #212529;
    width: 70%; }
  .purchase-detail-page .purchaseOrderFindTotalnet {
    font-weight: 700;
    color: #212529;
    width: 50%; }
  .purchase-detail-page .purchaseOrderShippingAddress {
    margin-bottom: 25px; }
  .purchase-detail-page .purchaseDetailsPrepare {
    color: #adb5bd;
    font-size: 12px;
    text-align: left;
    width: 50%; }
  .purchase-detail-page .purchaseDetailsSign {
    float: right;
    font-size: 14px;
    font-weight: 700;
    color: #212529; }
  .purchase-detail-page .purchaseDetailsNetTotal {
    color: #212529;
    font-weight: 700;
    width: 70%; }
  .purchase-detail-page .table {
    --bs-table-striped-bg: #f0f7fb; }

.dash-recent-quote > tbody > tr:nth-of-type(even) > td {
  background: #f0f7fb; }

.dash-recent-quote th {
  background: #c4e0f9; }

.purchase-detail-card {
  max-width: 1300px; }

.purchase-detail-card-body {
  padding: 35px 60px; }

.tax-invoice-container {
  position: relative; }
  .tax-invoice-container .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .tax-invoice-container .table-striped td,
  .tax-invoice-container .table-striped th {
    padding: 10px;
    word-wrap: break-word; }
  .tax-invoice-container .table-striped th {
    background-color: #0d58c1;
    font-weight: 100; }
  .tax-invoice-container .tax-invoice-tax {
    font-size: 32px;
    font-weight: 800; }
  .tax-invoice-container .tax-invoice-invoice {
    font-size: 32px;
    font-weight: 600; }
  .tax-invoice-container .tax-address {
    font-size: 12px !important;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0px !important; }
  .tax-invoice-container .tax-invoice-number {
    font-size: 12px;
    font-weight: 700 !important;
    text-align: right;
    width: 67%;
    color: #212529; }
  .tax-invoice-container .tax-invoice-value {
    width: 27%;
    text-align: left; }
  .tax-invoice-container .tax-detail-table {
    background-color: #0d58c1;
    color: #fff;
    font-size: 16px; }
  .tax-invoice-container .tax-Amount {
    margin-top: 30px;
    font-weight: 700 !important;
    font-size: 14px;
    color: #212529; }
  .tax-invoice-container .tax-sub-total {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    width: 50%; }
  .tax-invoice-container .tax-amount-words {
    font-size: 12px;
    font-weight: 600;
    color: #adb5bd; }
  .tax-invoice-container .proforma-to {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .tax-invoice-container .proforma-too {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .tax-invoice-container .proforma-table {
    background-color: #0d58c1;
    color: #fff; }
  .tax-invoice-container .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .tax-invoice-container .proforma-table-border {
    border-color: #e9ecef;
    margin-top: 30px;
    margin-bottom: 50px; }
    .tax-invoice-container .proforma-table-border td,
    .tax-invoice-container .proforma-table-border th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .tax-invoice-container .tax-detail-container {
    border: 2px solid black; }
  .tax-invoice-container .tax-table-bordered {
    border: 2px solid #e9ecef;
    margin-bottom: 40px; }
    .tax-invoice-container .tax-table-bordered td,
    .tax-invoice-container .tax-table-bordered th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .tax-invoice-container .invoicecompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .tax-invoice-container .taxDetailsMicohr {
    border: none;
    border-top: 1.5px solid #d51920;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .tax-invoice-container .taxDetailsMicohr:after {
    background: #fff;
    padding: 0 4px 0 0;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #d51920;
    font-weight: 700; }
  .tax-invoice-container .tax-computer-bill {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    font-weight: 400;
    color: #495057; }
  .tax-invoice-container .tax-invoice-footer {
    font-weight: 500;
    font-size: 10px; }
  .tax-invoice-container .tax-detail-button {
    background-color: #0d58c1;
    color: #fff;
    width: 100px;
    height: 30px; }
  .tax-invoice-container .taxvl {
    border-left: 1px solid #adb5bd; }
  .tax-invoice-container .tax-total-values {
    margin-top: 30px; }
  .tax-invoice-container .tax-title {
    color: #212529; }
  .tax-invoice-container .tax-detail-address {
    color: #212529; }
  .tax-invoice-container .tax-invoice-section {
    margin-top: -25px; }
  .tax-invoice-container .tax-invoice {
    padding-top: 0px; }
  .tax-invoice-container .table {
    --bs-table-striped-bg: #f0f7fb; }
  .tax-invoice-container .tax-bank-name {
    font-weight: 700; }
  .tax-invoice-container .tax-net-weight {
    font-weight: 700;
    font-size: 12px; }
  .tax-invoice-container .tax-netweight {
    font-weight: 400;
    font-size: 12px; }

.bankdetail {
  line-height: 20px; }

.tax-detail-card {
  max-width: 1200px; }

.tax-detail-card-body {
  padding: 30px 60px; }

.back-logo {
  position: absolute;
  top: 35%;
  left: 150px; }

.proforma-detail-page {
  position: relative; }
  .proforma-detail-page .proforma-proforma {
    font-size: 32px;
    font-weight: 800;
    color: #212529; }
  .proforma-detail-page .proforma-invoice {
    font-size: 32px;
    font-weight: 600; }
  .proforma-detail-page .proforma-to {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .proforma-detail-page .proforma-too {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .proforma-detail-page .proforma-table {
    background-color: #0d58c1;
    color: #fff; }
  .proforma-detail-page .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .proforma-detail-page .proforma-table-border {
    border-color: #e9ecef;
    margin-bottom: 50px; }
    .proforma-detail-page .proforma-table-border td,
    .proforma-detail-page .proforma-table-border th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .proforma-detail-page .companystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .purcompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #f25c54;
    font-weight: 700; }
  .proforma-detail-page .proformacompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformaDetailscompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformaDetailsMicohr {
    border: none;
    border-top: 1.5px solid #0d58c1;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .proforma-detail-page .proformaDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformavl {
    border-left: 1px solid #adb5bd;
    height: 30px; }
  .proforma-detail-page .proforma-computer {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #495057; }
  .proforma-detail-page .proforma-detail-invoice-footer {
    font-size: 10px;
    font-weight: 500; }
  .proforma-detail-page .proforma-quote {
    font-size: 12px;
    width: 50%;
    font-weight: 700;
    color: #212529; }
    .proforma-detail-page .proforma-quote.cal-section {
      width: 82% !important; }
    .proforma-detail-page .proforma-quote.certificate-analysis {
      width: 60%; }
  .proforma-detail-page .proforma-quotes {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    width: 55%; }
    .proforma-detail-page .proforma-quotes.cal-section {
      width: 45% !important; }
  .proforma-detail-page .proforma-proforma-invoice {
    margin-top: 30px;
    margin-bottom: 30px; }
  .proforma-detail-page .proforma-table-head {
    margin-top: 30px; }
    .proforma-detail-page .proforma-table-head td,
    .proforma-detail-page .proforma-table-head th {
      padding: 10px;
      font-weight: 100; }
    .proforma-detail-page .proforma-table-head th {
      background-color: #0d58c1; }
  .proforma-detail-page .proforma-quote-proforma {
    margin-top: 30px; }
  .proforma-detail-page .proforma-amt {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    margin-top: 20px; }
  .proforma-detail-page .proforma-amt-words {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd; }
  .proforma-detail-page .proforma-net-weight {
    font-weight: 700;
    font-size: 12px; }
  .proforma-detail-page .proforma-net-hscode {
    font-weight: 400;
    font-size: 12px;
    color: #adb5bd; }

.proforma-detail-card {
  max-width: 1200px; }
  .proforma-detail-card.certificate-analysis {
    min-height: 297mm; }

.proforma-detail-card-body {
  padding: 30px 60px; }

.detail-button-pdf {
  width: 100px;
  height: 30px;
  background-color: #0d58c1;
  color: #fff;
  margin-left: 85%;
  border-radius: 5px; }

.popup-lpo {
  font-size: 16px;
  font-weight: 600; }

.popup-title input {
  color: #f25c54; }

.popup-cancel {
  background: #f25c54;
  border-radius: 5px;
  color: #fff; }

.other-charge-section {
  margin-bottom: 10px; }

.quotation-details {
  position: relative; }
  .quotation-details .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .quotation-details .table-striped td,
  .quotation-details .table-striped th {
    padding: 10px;
    font-weight: 100; }
  .quotation-details .table-striped th {
    background-color: #0d58c1; }
  .quotation-details .quotation-title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 0px;
    color: #212529; }
  .quotation-details .table {
    --bs-table-striped-bg: #f0f7fb; }
  .quotation-details .quotation-detail-names {
    font-weight: 700;
    color: #212529; }
  .quotation-details .quotation-class-number {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    width: 100%;
    text-align: left; }
  .quotation-details .quotation-class-number-right {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: right;
    line-height: 22px; }
  .quotation-details .for-left-side {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    line-height: 22px; }
  .quotation-details .quotation-class-number-left {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: left;
    line-height: 22px; }
  .quotation-details .quotation-font-color {
    color: #000000;
    margin-bottom: 0px;
    line-height: 20px;
    color: #212529; }
  .quotation-details .fr {
    align-items: right;
    text-align: right; }
  .quotation-details .quotation-detail-table-value {
    font-weight: 700;
    color: #000000; }
  .quotation-details .quotation-detail-name {
    margin-bottom: 0px;
    line-height: 20px;
    font-weight: 700;
    color: #212529; }
    .quotation-details .quotation-detail-name.quotation-detail-width {
      width: 100%; }
  .quotation-details span.quotation-detail-name {
    text-align: right; }
  .quotation-details .quotation-data {
    font-weight: 600;
    color: #212529; }
  .quotation-details .quotation-sign-right {
    font-weight: 700;
    float: right;
    color: #212529; }
  .quotation-details .quotation-sign-left {
    font-weight: 700;
    float: left;
    color: #212529; }
  .quotation-details .quotation-detail-table {
    background: #0d58c1;
    color: #fff; }
  .quotation-details .quotation-amount {
    font-weight: 600;
    color: #212529; }
  .quotation-details .companystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .quotation-details .QuotationDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .quotation-details .quotation-computer-bill {
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    margin-top: 40px; }
  .quotation-details .quotationvl {
    border-left: 1px solid #adb5bd;
    height: 40px; }
  .quotation-details .quotation-electric {
    font-size: 10px;
    font-weight: 500;
    color: #212529; }
  .quotation-details .ta {
    text-align: center; }
  .quotation-details .textb {
    font-weight: bold; }
  .quotation-details .invoice-electric {
    font-size: 10px;
    font-weight: 500;
    color: #212529; }
  .quotation-details .quotation-right {
    margin-bottom: 50px; }
  .quotation-details .quotation-footer {
    margin-top: 30px; }
  .quotation-details .quotation-sub-total {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    width: 60%;
    margin-top: 5px; }
  .quotation-details .quotation-sub-total-shipping {
    margin-right: 4%;
    margin-bottom: 0px;
    font-weight: 700;
    width: 40%;
    text-align: right;
    color: #212529; }
  .quotation-details .quotation-sub-totals {
    font-weight: 500;
    font-size: 14px;
    color: #212529;
    margin-right: 12px;
    text-align: right;
    width: 40%; }
  .quotation-details .quotation-sub-total-net {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    width: 60%;
    color: #212529; }
  .quotation-details .quotation-ten-amount {
    font-size: 12px;
    font-weight: 400; }
  .quotation-details .quotation-ten-amount p {
    margin: 0; }
  .quotation-details .quotation-sub-totals-net {
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    color: #212529;
    width: 40%; }
  .quotation-details .quotation-footer-terms {
    margin-bottom: 40px; }
  .quotation-details .table {
    margin-top: 0px !important; }

.quotation-detail-card {
  max-width: 1200px; }

.quotation-detail-card-body {
  padding: 30px 60px; }

.term-condition {
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; }

.term-condition-custom-tab {
  width: 98%;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  color: #000000;
  line-height: 30px;
  margin-bottom: 20px; }

.form-label {
  font-size: 14px;
  font-weight: 400; }

.rdw-editor-toolbar {
  margin-bottom: 0px !important; }

.rdw-editor-toolbar {
  padding: 5px 10px 0px;
  border-radius: 0px 0px 5px 5px;
  font-size: 0px;
  border: none !important; }

.rdw-option-wrapper,
.rdw-dropdown-wrapper {
  border: none; }
  .rdw-option-wrapper img,
  .rdw-dropdown-wrapper img {
    width: 11px; }
  .rdw-option-wrapper .rdw-dropdown-optionwrapper,
  .rdw-option-wrapper .rdw-dropdown-selectedtext,
  .rdw-dropdown-wrapper .rdw-dropdown-optionwrapper,
  .rdw-dropdown-wrapper .rdw-dropdown-selectedtext {
    font-size: 11px; }

.rdw-editor-wrapper {
  display: flex;
  flex-direction: column-reverse; }

.rdw-editor-main {
  height: auto !important;
  padding: 0px 20px 20px;
  border-radius: 5px 5px 0px 0px;
  border: none !important;
  font-size: 12px;
  color: #adb5bd; }
  .rdw-editor-main::-webkit-scrollbar {
    width: 6px; }
  .rdw-editor-main::-webkit-scrollbar-track:hover {
    border-radius: 10px; }
  .rdw-editor-main:hover::-webkit-scrollbar-thumb {
    background: #8697b0;
    border-radius: 10px; }

.edit-customer-footer-button {
  margin-right: 9%; }

.edit-customer-quotation-primary-label {
  margin-left: 10px;
  font-weight: 400;
  font-size: 12px;
  color: #0d58c1; }

.view-customer-detail-page .col-sm-12 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px; }

.view-customer-detail-page .active-button {
  border-radius: 20px;
  color: #fff; }

.view-customer-detail-page .title {
  font-size: 12px;
  font-weight: 400; }

.view-customer-detail-page .value {
  font-size: 14px;
  font-weight: 600; }

.view-customer-detail-page .bank-detail-card {
  background-color: #caeee7;
  line-height: 19px; }
  .view-customer-detail-page .bank-detail-card .title {
    font-size: 14px;
    font-weight: 400;
    color: #495057; }
  .view-customer-detail-page .bank-detail-card .value {
    font-size: 14px;
    font-weight: 700;
    color: #495057; }

.view-customer-detail-page .enquiry-card {
  background-color: #f4d6d5;
  line-height: 19px; }
  .view-customer-detail-page .enquiry-card .title {
    font-size: 14px;
    font-weight: 400;
    color: #495057; }
  .view-customer-detail-page .enquiry-card .value {
    font-size: 14px;
    font-weight: 700;
    color: #495057; }
  .view-customer-detail-page .enquiry-card .view-customer-pending-amt {
    font-size: 14px;
    font-weight: 400;
    color: #f25c54; }
  .view-customer-detail-page .enquiry-card .view-customer-pending-amt-value {
    font-size: 14px;
    font-weight: 700;
    color: #f25c54; }
  .view-customer-detail-page .enquiry-card .view-hr {
    color: #fff; }
  .view-customer-detail-page .enquiry-card .view-customer-invoice-value {
    color: #212529;
    font-weight: 700;
    font-size: 14px;
    margin-left: 12px; }
  .view-customer-detail-page .enquiry-card .view-coustomer-invoice-title {
    padding: 5px;
    margin-bottom: 15px; }

.edit-quotation-total-details {
  height: 35px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 2px;
  padding: 7px; }

.label-lpo-no {
  font-weight: 600;
  font-size: 14px; }

#ev-form {
  padding: 20px; }

.add-purchase-cancel-title {
  font-weight: 600;
  font-size: 16px;
  color: #212529; }

.purchase-edit-purchase .edit-purchase-sub-total {
  margin-top: 5%; }

.purchase-edit-purchase .edit-supplier-close-save {
  margin-left: 15px; }

.purchase-edit-purchase .purchase-footer {
  margin-left: 15px; }

.purchase-edit-purchase .saveSubmit {
  margin-left: 25px; }

.purchase-edit-purchase .purchase-bill .form-label {
  margin-left: 14px; }

.first-cell {
  font-weight: 800; }

.category-edit-category-button {
  float: left;
  margin-left: 33%;
  margin-top: 2%; }

.edit-category-close-button {
  margin-left: 15px; }

.edit-customer-check-box-primary {
  margin-bottom: -16px; }

.form-check-input {
  color: #0d58c1; }

.edit-quotation-shipping-charge {
  margin-left: -11px; }

.quotation-button-save-pdf {
  width: 100px;
  height: 30px;
  color: #fff;
  background-color: #0d58c1;
  float: right;
  margin-right: 84px;
  border: none;
  border-radius: 5px;
  margin-bottom: 34px;
  margin-top: 20px; }

.custom-search-box {
  background: #ffffff url(/images/icons-search.svg?09c6581af29dbcc272396f5c91ea20be) no-repeat scroll 18px 10px;
  padding-left: 43px; }
  .custom-search-box::placeholder {
    color: rgba(13, 88, 193, 0.5) !important; }
  .custom-search-box:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(13, 88, 193, 0.5) !important; }
  .custom-search-box::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(13, 88, 193, 0.5) !important; }

.f-text-right {
  text-align: right; }

.edit-supplier-primary {
  font-weight: 400;
  font-size: 12px;
  color: #adb5bd;
  margin-top: 2px;
  margin-left: 8px; }

.parent-edit-supplier-primary {
  color: #0d58c1;
  font-weight: 400;
  font-size: 14px;
  margin-top: 4px;
  margin-left: 8px; }

.form-check-input:checked + .edit-supplier-primary {
  color: #585c5f !important; }

.edit-supplier-check-box {
  margin-bottom: -16px; }

.edit-supplier-close-save {
  margin-bottom: 10px;
  margin-right: 33%;
  margin-top: 10px;
  margin-left: 15px; }

.saveSubmit {
  width: 100px;
  height: 33px; }

.supplier-details-title {
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  margin-bottom: 30px;
  margin-top: 30px; }

.view-minheight {
  line-height: 19px;
  min-height: 420px; }

.credit-period-footer-button {
  margin-left: 17%; }

.credit-period-footer-cancel {
  margin-left: 15px; }

.settings-general-index .header-profile-user {
  height: 36px;
  width: 35px;
  padding: 3px;
  margin-bottom: 30px;
  margin-right: 55px; }

.settings-general-index .general-cancel-button {
  width: 110px;
  background: #d51920;
  border-radius: 5px;
  margin-left: 35px; }

.settings-general-index .general-save-button {
  width: 110px;
  background: #0d58c1;
  border-radius: 5px; }

.settings-general-index .general-button-footer {
  margin-right: 27px;
  margin-bottom: 20px; }

.edit-tax-head .edit-tax-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-tax-head .switch-button {
  margin-top: 7px; }

.edit-tax-head .tax-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-tax-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-tax-head .tax-cancel-button {
  margin-left: 20px;
  background: #d51920;
  border-radius: 5px; }

.edit-tax-head .tax-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-country-head .edit-country-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-country-head .country-cancel-button {
  margin-left: 20px;
  width: 25%;
  background: #d51920;
  border-radius: 5px; }

.edit-country-head .country-save-button {
  background: #0d58c1;
  border-radius: 5px;
  width: 25%; }

.edit-country-head .edit-country-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-country-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-country-head .country-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-country-head .switch-button {
  margin-top: 7px; }

.edit-currency-head .edit-currency-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-currency-head .currency-cancel-button {
  margin-left: 20px;
  background: #d51920;
  border-radius: 5px; }

.edit-currency-head .currency-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-currency-head .edit-currency-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-currency-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-currency-head .currency-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-currency-head .switch-button {
  margin-top: 7px; }

.edit-payment-head .edit-payment-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-payment-head .payment-cancel-button {
  margin-left: 20px;
  width: 19%;
  background: #d51920;
  border-radius: 5px; }

.edit-payment-head .payment-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-payment-head .edit-payment-footer-button {
  margin-left: 33%;
  margin-top: 15px; }

.edit-payment-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-payment-head .payment-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-payment-head .switch-button {
  margin-top: 7px; }

.edit-payment-head .edit-payment-footer {
  margin-left: 33%;
  margin-top: 25px; }

.edit-payment-head .edit-payment-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-payment-head .edit-payment-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-desigination-head .edit-desigination-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-desigination-head .desigination-cancel-button {
  margin-left: 20px;
  width: 10%;
  background: #d51920;
  border-radius: 5px; }

.edit-desigination-head .desigination-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-desigination-head .edit-desigination-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-desigination-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-desigination-head .desigination-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-desigination-head .switch-button {
  margin-top: 7px; }

.edit-department-head .edit-department-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-department-head .department-cancel-button {
  margin-left: 20px;
  width: 10%;
  background: #d51920;
  border-radius: 5px; }

.edit-department-head .department-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-department-head .edit-department-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-department-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-department-head .department-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-department-head .switch-button {
  margin-top: 7px; }

.edit-credit-head .edit-credit-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-credit-head .edit-credit-footer-cancel {
  margin-left: 20px;
  width: 21%;
  background: #d51920;
  border-radius: 5px; }

.edit-credit-head .credit-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-credit-head .credit-period-footer-cancel {
  background: #d51920;
  border-radius: 5px; }

.edit-credit-head .credit-period-footer-button {
  margin-left: 16%;
  margin-top: 15px; }

.edit-credit-head .header-profile-user {
  margin-left: 20px; }

.edit-credit-head .credit-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-credit-head .tax-status {
  margin-left: 20%; }

.edit-credit-head .switch-button {
  margin-top: 7px; }

.add-customer-main-page .edit-customer-quotation-primary-label {
  margin-top: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #adb5bd; }

.add-customer-main-page .header-profile-user {
  margin-left: 35px; }

.add-customer-main-page .form-check-input {
  border: 1px solid #adb5bd; }

.add-customer-main-page .tax-status {
  margin-left: 77px; }

.add-customer-main-page .customer-back-button {
  margin-left: 20px;
  width: 100px; }

.add-customer-main-page .customer-save-button {
  width: 100px; }

.add-customer-main-page .customHeading {
  font-weight: 600;
  font-size: 14px;
  color: #212529;
  margin-top: 36px; }

.add-customer-main-page .edit-customer-footer-button {
  margin-right: 82px;
  margin-top: 10px; }

.edit-supplier-page .header-profile-user {
  margin-right: 68px;
  margin-bottom: 20px; }

.edit-supplier-page .supplier-status {
  margin-right: 10px; }

.edit-supplier-page .supplier-image {
  margin-left: 34px; }

.edit-supplier-page .supplier-bottom-page {
  margin-right: 50px;
  margin-top: 20px;
  margin-bottom: 20px; }

.edit-supplier-page .supplier-cancel-button {
  margin-left: 24px;
  width: 100px;
  background: #d51920;
  border-radius: 5px; }

.edit-supplier-page .supplier-save-button {
  width: 100px;
  background: #0d58c1;
  border-radius: 5px; }

.product-title-page .product-footer-page {
  margin-left: 221px; }

.product-title-page .product-cancel-button {
  margin-left: 22px;
  width: 115px; }

.product-title-page .footer-edit-product {
  margin-top: 20px; }

.account-detail-head .account-table {
  text-align: center;
  background: #c4e0f9; }
  .account-detail-head .account-table th {
    background: #c4e0f9;
    padding-top: 13px;
    padding-bottom: 13px; }
    .account-detail-head .account-table th:first-child {
      border-radius: 10px 0px 0px 0px; }
    .account-detail-head .account-table th:last-child {
      border-radius: 0px 10px 0px 0px; }

.account-detail-head .docLabel {
  margin-top: 7px; }
  .account-detail-head .docLabel .bg-grey {
    background: #e9ecef !important;
    color: #212529 !important;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px !important;
    padding: 4px 10px; }

.account-detail-head .no-data-found {
  padding: 15px;
  border-bottom: 1px solid #f4f0f1;
  border-top: 1px solid #f4f0f1; }

.account-detail-head .detail-data {
  text-align: center; }
  .account-detail-head .detail-data td {
    border-bottom: 1px solid #e9ecef; }
  .account-detail-head .detail-data:last-child td {
    border: none; }

.proforma-edit-total {
  padding: 9px;
  background-color: #fff;
  border-radius: 5px; }

.proforma-edit-form .form-label {
  margin-left: 10px; }

.proforma-edit-form .payable {
  font-size: 12px;
  font-weight: 600;
  color: #212529; }

.proforma-edit-form .proforma-edit-footer {
  margin-right: 32%; }

.proforma-edit-form .bottom-save-button {
  margin-right: 20px; }

.edit-department-header-page .settings-department-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-department-header-page .tax-status {
  margin-left: 20%; }

.edit-department-header-page .settings-department-close-button {
  margin-left: 1%;
  background: #d51920;
  border-radius: 5px; }

.edit-department-header-page .header-profile-user {
  margin-left: 20px; }

.edit-department-header-page .edit-department-footer-button-design {
  margin-top: 10px;
  margin-left: 15%; }

.settings-desigination-edit .settings-desigination-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.settings-desigination-edit .settings-desigination-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.settings-desigination-edit .settings-desigination-footer-button {
  margin-left: 16%;
  margin-top: 10px; }

.settings-desigination-edit .header-profile-user {
  margin-left: 30px; }

.settings-desigination-edit .tax-status {
  margin-left: 20%; }

.edit-tax-header-section .edit-footer-tax {
  margin-top: 10px;
  margin-left: 15%; }

.edit-tax-header-section .tax-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-tax-header-section .tax-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-tax-header-section .tax-switch-button {
  margin-left: 10%; }

.edit-currency-page .currency-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-currency-page .currency-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-currency-page .currency-footer-button {
  margin-top: 10px;
  margin-left: 15%; }

.edit-currency-page .currency-switch-button {
  margin-left: 10%; }

.edit-countery-head .edit-country-footer {
  margin-top: 10px;
  margin-left: 14%; }

.edit-countery-head .country-cancel-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 5%; }

.edit-countery-head .country-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-countery-head .header-profile-user {
  margin-left: 23px; }

.edit-countery-head .tax-status {
  margin-left: 25%; }

.term-and-condition-header .nav-link.active {
  background-color: #c4e0f9;
  border-radius: 5px;
  color: #212529; }

.term-and-condition-header .nav-link {
  color: #212529;
  margin-top: 10px; }

.term-and-condition-header .tandc-footer-button {
  margin-bottom: 30%; }

.term-and-condition-header .edit-footer-termandcondition {
  margin-top: 15%;
  margin-left: 25px; }

.term-and-condition-header .tac-save-button {
  margin-right: 3%;
  background: #0d58c1;
  border-radius: 5px; }

.term-and-condition-header .tac-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.term-and-condition-header .rdw-editor-main {
  height: 270px; }

.term-and-condition-header .header-profile-user {
  margin-left: 5%;
  margin-bottom: 5%; }

.edit-payment-head .edit-payment-save-button {
  background: #0d58c1;
  border-radius: 5px;
  margin-left: 5%; }

.edit-payment-head .edit-payment-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.intro-pre-head .intro-footer-button {
  margin-top: 20px;
  margin-left: 38%; }

.intro-pre-head .intro-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.intro-pre-head .intro-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.intro-pre-head .intro-form-section {
  margin-top: 20px; }

.cat-header .cat-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.cat-header .cat-close-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 5%; }

.cat-header .cat-footer-section {
  margin-left: 29%;
  margin-top: 20px; }

.cat-header .cat-toggle {
  display: flex; }

.cat-header .tax-status {
  margin-right: 25px; }

.cat-header .tax-switch-button {
  margin-left: 30px; }

.product-header .product-status {
  margin-right: 25px; }

.product-header .pro-toggle {
  display: flex; }

.product-header .product-switch-button {
  margin-left: 30px; }

.product-header .footer-edit-product {
  margin-left: 33%;
  margin-top: 20px; }

.product-header .product-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.product-header .product-cancel-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 2%; }

.product-header .product-footer-section {
  margin-left: 15%;
  margin-top: 10px; }

.settings-general-head .setting-general {
  margin-right: 2%;
  margin-top: 2%; }

.settings-general-head .header-profile-user {
  margin-right: 8%;
  margin-bottom: 3%; }

.settings-general-head .css-1s2u09g-control {
  border: none;
  font-family: Open Sans; }

.quotation-head .footer-value .form-control {
  width: 50%;
  text-align: center; }

.quotation-head .footer-value .form-label {
  margin-left: 37px; }

.quotation-head .footer-value .quotation-footer {
  margin-top: 20px;
  margin-left: 8%; }

.report-head .approved {
  font-size: 12px;
  font-weight: 600; }

.report-head .customer-form {
  margin-top: 52px; }

.report-head .report-save-button {
  margin-right: 3%;
  margin-top: 1%; }

.reportpdf-head .sales {
  font-size: 32px;
  font-weight: 700; }

.reportpdf-head .report {
  font-size: 32px;
  font-weight: 600; }

.reportpdf-head .report-state {
  margin-top: 4%;
  margin-bottom: 2%; }

.reportpdf-head .py-2 {
  min-height: 300px; }

.reportpdf-head .quotation-detail-card-body {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px;
  padding-bottom: 5px; }

.report-detail-pdf .report-save-button {
  margin-left: 54%; }

.statement-head .quotation-detail-table {
  background-color: #a8d3ff;
  border-radius: 5px; }

.statement-head .table {
  margin-top: 0px; }

.statement-head .table-responsive {
  border-radius: 20px 20px 0 0; }

.statement-head .py-2 {
  min-height: 400px; }

.statement-approved {
  margin-left: 78%;
  margin-bottom: 10%;
  font-weight: 600; }

.statement-pdf-statement {
  margin-top: 6%;
  margin-bottom: 2%; }

.tax-filter-head .tax-name {
  margin-bottom: 15px; }

.currency-filter-head .currency-filter {
  margin-bottom: 20px; }

.payment-filter-head .filter-buttons {
  position: fixed;
  right: 44px;
  bottom: 20px; }

.payment-filter-head .btn-secondary {
  margin-right: 20px; }

.edit-customer-head .edit-customer-bottom {
  margin-right: 9%;
  margin-top: 1%; }

.w-15 {
  width: 15%; }

.h-90 {
  height: 90px; }

.pr-40 {
  padding-right: 40px; }

.pr-5 {
  padding-right: 5px; }

.proforma-detail-page .tax-net-weight {
  font-weight: 700 !important;
  font-size: 12px !important; }

.quotation-details .table-striped th {
  background-color: #d51920; }

.quotation-details .companystyle {
  color: #d51920; }

.quotation-details .table-striped td,
.quotation-details .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.quotation-details .quotation-footer-terms {
  margin-bottom: 0px; }

.tt {
  text-transform: capitalize; }

.purchase-details .table-striped th {
  background-color: #d51920; }

.purchase-detail-page .table-striped th {
  background-color: #d51920; }

.purchase-details .companystyle {
  color: #d51920; }

.purchase-details .QuotationDetailsMicohr {
  background: url(/images/footer-line.svg?4a0781b5b642bd2dc78025cabfcd9c8e) no-repeat;
  background-size: 750px;
  height: 15px; }

.purchase-detail-page .table-striped td,
.purchase-detail-page .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.purchase-detail-page .purchaseDetailsMicohr:after {
  background: #fff;
  padding: 0 4px;
  position: relative;
  top: -15px;
  font-size: 18px;
  color: #d51920;
  font-weight: 700; }

.purchase-detail-page .purchaseDetailsMicohr {
  border: none;
  border-top: 1.5px solid #d51920;
  color: #333;
  overflow: visible;
  height: 5px;
  opacity: 1; }

.purchasecompanystyle {
  padding: 0 4px;
  position: relative;
  top: -5px;
  font-size: 18px;
  color: #0d58c1;
  font-weight: 700; }

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

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

.oemcol-1 {
  display: none; }

.pad0 {
  padding: 0 !important; }

.tax-invoice-container .table-striped td .tax-invoice-container .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.tax-invoice-container .table-striped th {
  background-color: #d51920; }

.tax-invoice-container .invoicecompanystyle {
  padding: 0 4px;
  position: relative;
  top: -5px;
  font-size: 18px;
  color: #d51920;
  font-weight: 700; }

.input-border .form-control {
  border: 1px solid #e9ecef;
  width: 80px;
  display: inline; }

.card_height {
  height: 120px; }

.justification-end {
  display: flex;
  justify-content: flex-end; }

.justification-center {
  display: flex;
  justify-content: center; }

.aternative-row:nth-of-type(2n - 1) {
  background: #ffffff; }

.customBorder {
  border-bottom: solid #cbcbcb 0.2px; }

.producthrstyle {
  border-top: 1px solid #ccd0d6; }

.producthrstyle:after {
  background: #383838;
  content: "Stock Details\00a0\00a0\00a0\00a0";
  padding: 0 4px;
  position: relative;
  top: -15px;
  font-size: 18px;
  color: #234066;
  font-weight: 700; }

.productviewheading {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700; }

.edit-credit-footer-cancel .productcardheader {
  background-color: #0e4d86; }

.productcardbg {
  background-color: #f3f6f9; }

.projectcardbg {
  background-color: #f3f6f9;
  height: 80px;
  padding: 10px 10px; }

.align-center {
  display: flex;
  align-items: center; }

.fw-weight-550 {
  font-weight: 550; }

.custom-border-color {
  border-color: #779bbb !important; }

.custom-input {
  background: #e3ebf1 !important; }

.inner-container {
  background-color: #dde6ee; }

.tag-title {
  color: #0e4d86; }

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  transition: width 0.5s ease-in-out;
  /* Transition on width property */
  padding-top: 90px; }

.sidenav.open {
  width: 600px !important;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px; }

.ot-adjust {
  margin-top: 35px; }

.ot-btn-adjust {
  margin-top: 16px; }

.sidenav .side-content {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 24px;
  color: #333;
  transition: 0.3s; }

.element {
  position: relative; }

.element::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 0;
  padding: 5px;
  background-color: #ffb500;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease; }

.element:hover::before {
  opacity: 1;
  visibility: visible;
  width: 200px; }

.tablinks {
  color: black;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer; }

.tablinks.active {
  background-color: #0e4d86;
  color: white; }

.tabcontent {
  display: none;
  padding: 15px; }

.tabcontent.active {
  display: block; }

.emp-tittle-color {
  color: #0e4d86; }

.custom-tab-pane.active {
  background-color: #333; }

.projectinvcard {
  height: 40px;
  background-color: #eff0f2;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 10px;
  padding: 7px; }

.active.customColor {
  border-bottom: 2px solid #d51920;
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: center; }

.active.text {
  color: #222; }

.payment-term-total {
  background-color: #e1e9ef;
  padding-top: 15px;
  border-radius: 10px; }

.product-view-bg {
  background-color: #0e4d86; }

.client-margin {
  margin-top: 160px; }

.material-bg {
  background-color: #f8fafb; }

.yellow-color {
  color: #ffb500; }

.yellow-bgcolor {
  background-color: #fef8ea; }

.red-color {
  color: #f25c54; }

.red-bgcolor {
  background-color: #feefee; }

.green-color {
  color: #32b175; }

.green-bgcolor {
  background-color: #e6f3ed; }

.blue-color {
  color: #0e4d86; }

.blue-bgcolor {
  background-color: #e7edf3; }

.input-box-border {
  border: 1px solid black; }

.border-adjust {
  border-bottom: 1px solid #ede9e8; }

.plugin-container-title {
  color: #c1c1c1; }

.plugin-container-by {
  color: #765fe6; }

.plugin-container-key {
  color: #818181; }

.email-set-input {
  width: 300px !important;
  height: 45px;
  background-color: #f0f0f0 !important; }

.email-set-select {
  width: 300px !important;
  height: 45px;
  background-color: #f0f0f0 !important; }

.email-set-select > .css-13cymwt-control {
  background-color: #f0f0f0 !important;
  border: none; }

.horizontal-line {
  border-top: 1px solid #e0e4e8;
  margin: 1rem 0; }

.input-fill {
  border: 1px solid rgba(173, 181, 189, 0.5) !important; }

.css-b62m3t-container {
  border-radius: 5px; }

.input-fill .css-13cymwt-control {
  border: none;
  border-radius: 5px; }

.label-spacing {
  font-size: 14px !important;
  padding-left: 50px; }

.category-set-select {
  width: 400px !important;
  height: 45px;
  background-color: #f0f0f0 !important; }

.category-set-select > .css-13cymwt-control {
  background-color: #f0f0f0 !important;
  border: none; }

.cat-img-adjust {
  padding-left: 223px; }

.cat-update-file {
  width: 400px !important;
  display: none; }

.grocery-document {
  width: 13px !important;
  display: none; }

.cat-update-file-label {
  color: #d51920;
  cursor: pointer; }

.cat-text-size {
  height: 200px; }

.media-check {
  width: 200px;
  height: 15px; }

.form-switch {
  padding-left: 0; }

.media-font-color {
  color: #c9c9c9; }

.media-dropdown > .css-13cymwt-control {
  width: 200px;
  background-color: #f0f0f0 !important;
  border: none; }

.media-search {
  width: 300px !important;
  background-color: #f0f0f0 !important; }

.img-frame {
  width: 180px;
  height: 180px; }

.img-frame > img {
  width: 180px;
  height: 180px; }

.drag-drop {
  border: dashed 3px #61a8f4;
  border-radius: 20px;
  padding: 30px; }

.text-blue {
  color: #61a8f4; }

.image-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 10px; }

.image-fix-size {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcdcde;
  position: relative;
  border-radius: 5px; }

.image-close-icon {
  position: absolute;
  right: -7px;
  top: -8px;
  border-radius: 20px;
  padding-right: 5px;
  padding-left: 5px;
  background-color: #f5f5f5;
  border: 1px solid #dcdcde; }

.image-delete-icon {
  border-radius: 20px;
  padding-right: 5px;
  padding-left: 5px;
  background-color: #fff;
  border: 1px solid #dcdcde; }

.image-close-icon:hover {
  background-color: #5b73e8; }

.image-fix-size img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto; }

.no-input-field {
  border: none;
  width: 0px;
  height: 0px; }

.selected-img {
  padding: 10px;
  box-shadow: 0 0 5px #5b73e8; }

.MuiSwitch-colorSecondary.Mui-checked {
  color: #d51920 !important; }

.MuiSwitch-colorSecondary.Mui-checked + .MuiSwitch-track {
  background-color: #d51920 !important; }

.font-12 {
  font-size: 12px;
  font-weight: 600; }

.editor-hgt {
  height: 700px; }

.textarea-small {
  height: 60px;
  width: 100%; }

.textarea-medium {
  height: 80px;
  width: 100%; }

.textarea-large {
  height: 120px;
  width: 100%; }

.productFilterDrop > .css-1fdsijx-ValueContainer {
  background-color: #f0f0f0; }

.imagesize {
  width: 20%;
  height: 20%; }

.date-style {
  border: 10px solid red; }

.login-fix {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; }

.bgPrimary {
  background-color: #1a4cc0 !important;
  color: white !important; }

.table-adjust table {
  margin-top: 20px; }

.mdb-datatable-filter {
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  width: 70%;
  background-color: white; }

.mdb-datatable-filter .pagination {
  background-color: red; }

.list-page-curve {
  border-radius: 20px; }

.WhiteDiv {
  border-radius: 25px;
  background-color: white;
  margin-bottom: 50px; }

.iframe-border {
  border-radius: 15px; }

.dataTables_wrapper .row {
  padding: 10px 0px 10px 0px; }

.pagination .page-item {
  border: solid #bfc6d7 1px;
  margin: 5px;
  border-radius: 10px;
  display: flex;
  align-items: center; }

.page-content .pagination .active.page-item .page-link {
  color: #bfc6d7 !important; }

.page-content .pagination .active {
  background-color: #fff !important; }

.pagination .page-item .page-link {
  font-weight: 500 !important;
  font-size: 16px !important;
  padding: 7px 7px 7px 7px !important; }

.page-item {
  padding: 2px 7px 2px 7px !important; }

.dataTables_wrapper div:nth-child(3) {
  display: flex;
  align-items: center; }

.danger-button {
  padding: 6px 25px 6px 25px;
  border-radius: 5px;
  border: 1px solid red;
  color: red;
  background-color: white; }

.Blue-button {
  padding: 6px 25px 6px 25px;
  border-radius: 5px;
  border: 1px solid #5b73e8;
  color: white;
  background-color: #5b73e8; }

.dataTable thead tr th {
  background-color: #fff;
  color: #222;
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal; }

.dataTable thead tr td {
  color: #383838;
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal; }

.dataTable {
  margin-top: 0px !important; }

.dataTable td {
  vertical-align: middle;
  color: var(--icon, #383838);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400; }

.dataTable thead {
  border-top: 1px solid #f4f0f1 !important;
  border-bottom: 1px solid #f4f0f1 !important; }

.dataTables_wrapper > .row:nth-child(2) > div {
  padding: 0px 0px 10px 0px; }

.upload-dotborder {
  border: 1px solid #d3d3d3;
  border-radius: 10px; }

.menu-img {
  width: 85px;
  height: 100%;
  object-fit: cover; }

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

.lh-1 {
  line-height: 1; }

.upload-btn {
  background-color: #f9f9fb;
  border: 1px solid #d3d3d3;
  border-radius: 12px;
  width: 112px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center; }

.menu-img-hover:hover .hover-btn {
  display: block; }

.menu-img-hover:hover .menu-img {
  opacity: 0.3; }

.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important; }

.menu-img-hover {
  position: relative;
  height: 132px; }

.menu-img-hgt-view {
  height: 132px; }

.hover-btn,
.hover-review-btn {
  position: absolute;
  right: 47%;
  display: none;
  cursor: pointer; }

.hover-btn {
  top: 38%; }

.dataTable thead tr th {
  background-color: #fff;
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal; }

table {
  caption-side: bottom; }

.dropdownmenu {
  position: absolute;
  /* inset: 0px auto auto 0px; */
  /* transform: translate(0px, 23px); */
  border-radius: 0px !important;
  left: -50px !important; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #74788d;
  text-align: right; }

th {
  text-align: inherit;
  text-align: -webkit-match-parent; }

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: none !important;
  border-style: none !important;
  border-width: 0; }

body {
  background-color: white !important;
  font-family: "Uber Move" !important; }

.Feature_pointer {
  cursor: pointer; }

.date-style {
  border: solid #cecccc 1px !important; }

.dashboard-div {
  background-color: #fff !important; }

.dashboard-blue {
  color: #1a4cc0 !important;
  font-weight: 700;
  font-size: 32px; }

.dashboard-Muted-text {
  font-size: 17px;
  font-weight: 500;
  color: #bfc6d7; }

.dashboard-table {
  padding: 0px 10px; }

.dashboard-table td {
  vertical-align: middle; }

.dashboard-table > .row:nth-child(2) > div {
  border-radius: 0px !important; }

.dashboard-table > .row:nth-child(2) {
  padding-top: 0px !important; }

.dashboard-table > .row:nth-child {
  padding: 0px !important; }

.dashboard-table > .row:nth-child(2) > div div .dataTable thead tr > th:first-child {
  border-top-left-radius: 0px !important; }

.dashboard-table > .row:nth-child(2) > div div .dataTable thead tr > th:last-child {
  border-top-right-radius: 0px !important; }

.complete-status {
  background-color: #e9faf7;
  border-radius: 10px;
  color: #1a9882;
  padding: 8px 25px;
  font-weight: 600; }

.cancelled-status {
  background-color: #ffe0e3;
  color: #f43d4f;
  border-radius: 10px;
  padding: 8px 25px;
  font-weight: 600; }

.time-range-picker {
  display: flex;
  flex-direction: row; }

.time-picker {
  margin-right: 20px; }

.bx-error-alt {
  cursor: pointer; }

.image-container-reduced-size {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  grid-gap: 10px; }

.image-fix-reduced-size {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcdcde;
  position: relative;
  border-radius: 15px; }

.image-fix-reduced-size-index {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 5px; }

.background-color {
  background-color: #d51920; }

.view-all-design {
  height: 70px;
  width: 70px !important;
  border-radius: 15px;
  margin-top: 16px !important;
  background-color: #1a4cc0;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; }

.board-seller-0 {
  background-color: #fef6e9; }

.board-seller-1 {
  background-color: #fbf0fe; }

.board-seller-2 {
  background-color: #e9fbf9; }

.board-seller-0-btn {
  border: 2px solid #f09e23;
  background-color: #fef6e9;
  color: #f09e23;
  padding: 5px 35px;
  border-radius: 10px; }

.board-seller-1-btn {
  border: 2px solid #cf64f4;
  background-color: #fbf0fe;
  color: #cf64f4;
  padding: 5px 35px;
  border-radius: 10px; }

.board-seller-2-btn {
  border: 2px solid #1bbcb2;
  background-color: #e9fbf9;
  color: #1bbcb2;
  padding: 5px 35px;
  border-radius: 10px; }

.display-flex {
  display: flex;
  justify-content: center; }

.circle-border-0 {
  border-radius: 50% !important;
  border: 2px solid #f09e23; }

.circle-border-1 {
  border-radius: 50% !important;
  border: 2px solid #cf64f4; }

.circle-border-2 {
  border-radius: 50% !important;
  border: 2px solid #1bbcb2; }

.bold-text {
  font-weight: bold; }

.ml-2 {
  margin-left: 10% !important; }

.cardheight {
  height: 117px !important; }

.cardpadding {
  padding: 10px !important; }

.eventimgsize {
  width: 35px !important;
  height: 35px !important; }

.menuSlidersize {
  width: 50px !important;
  height: 50px !important; }

.mt-rem {
  margin-top: 0.5rem !important; }

.ta-center {
  text-align: center; }

.image-index-size {
  width: 35px !important;
  height: 35px !important;
  border-radius: 6px !important; }

.report-alignment {
  display: flex;
  align-items: center; }

.font-weight-1000 {
  font-weight: 1000; }

.apexcharts-legend {
  display: flex !important;
  justify-content: flex-end !important; }

.waves-effect img {
  width: 20px;
  height: 20px; }

.datatable-input {
  width: 100%; }

.dataTables_info {
  display: flex !important;
  padding-left: 0.6rem;
  justify-content: flex-start !important; }

.header-profile-user {
  height: 45px !important;
  width: 45px !important; }

.mdb-datatable-filter {
  width: 100%; }

.wrapperClassName {
  border: solid #d2d2d2 1px; }

.slider-div {
  position: relative !important; }

.menuImg-div {
  position: relative !important; }

.rec-arrow-left {
  position: absolute !important;
  top: 20px !important;
  right: 60px !important;
  border: 0px !important;
  background: transparent !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  line-height: 30px !important;
  color: #b5b3b3 !important; }

.rec-arrow-left:hover {
  color: #000000 !important; }

.rec-arrow-right:hover {
  color: #000000 !important; }

.rec-arrow-right {
  position: absolute !important;
  top: 20px !important;
  right: 15px !important;
  background: transparent !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  line-height: 30px !important;
  color: #b5b3b3 !important; }

.menuImg-div button.rec-arrow-left {
  border: 0px;
  z-index: 200 !important;
  position: absolute !important;
  top: 8px !important;
  left: 0px !important;
  box-shadow: none !important; }

.menuImg-div button.rec-arrow-right {
  border: 0px;
  z-index: 200 !important;
  position: absolute !important;
  top: 8px !important;
  right: 0px !important;
  box-shadow: none !important; }

.rec-pagination {
  display: none !important; }

.ProfileSizeSlider {
  width: 55px !important;
  height: 55px !important; }

.font-wght-700 {
  font-weight: 700; }

#sidebar-menu ul li ul.sub-menu li a {
  padding: 8px 0px !important; }

.plugin-width {
  width: 286px !important;
  border: solid #dedede 1px !important;
  border-radius: 20px; }

.plugin-header {
  border-radius: 20px 20px 0px 0px; }

.plugin-body {
  border-radius: 0px 0px 20px 20px; }

.card {
  box-shadow: none !important; }

#sidebar-menu ul li a {
  font-weight: 500; }

.sidebar-menu-scroll .simplebar-wrapper #side-menu ul li.mm-active > a {
  font-weight: 500; }

.width-40 {
  width: 400px; }

.width-20 {
  width: 200px; }

.width-30 {
  width: 300px; }

.width-10 {
  width: 100px; }

.PlusIconSize {
  width: 15px; }

.labelWithIcon {
  cursor: pointer; }

.card {
  border-radius: 16px !important; }

.titlecard {
  color: black !important;
  font-family: Public Sans !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 30px !important;
  /* 150% */
  letter-spacing: 0.2px !important; }

.topsellercard {
  height: 239px;
  width: 190px;
  border-radius: 20px; }

.eRMflP {
  margin: 0px 0px 14px 0px !important; }

.view-all-position {
  text-align: center; }

.category-card {
  min-height: 328px; }

.textOnInput .form-controler .input-wrapper {
  position: relative; }

.textOnInput .form-controler .input-wrapper input {
  width: 100%;
  height: 56px;
  padding: 0.5rem;
  border-radius: 3px;
  border: 1px solid #d6dade; }

.textOnInput .form-controler .input-wrapper label {
  position: absolute;
  top: -0.7rem;
  left: 0.5rem;
  pointer-events: none;
  transition: 0.2s ease all;
  color: var(--text, #222) !important;
  font-family: "Uber Move";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  background-color: #fff !important;
  padding: 0 0.3rem;
  font-size: 0.8rem; }

.textOnInput .form-controler .input-wrapper input:focus ~ label,
.textOnInput .form-controler .input-wrapper input:not(:placeholder-shown) ~ label {
  top: -0.7rem;
  font-size: 0.7rem;
  color: #333; }

.textOnInput .form-controll .input-wrapper input {
  width: 100% !important;
  height: 40px;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 10px;
  border-radius: 3px;
  font-size: 16px;
  border: 1px solid rgba(173, 181, 189, 0.5); }

.textOnInput .form-controll .input-wrapper .invoice-input {
  width: 100% !important; }

.textOnInput .form-controll .input-wrapper .h-55 {
  height: 55px !important; }

.textOnInput .form-controll .input-wrapper label {
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  pointer-events: none;
  transition: 0.2s ease all;
  color: var(--text, #222) !important;
  font-family: "Uber Move";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  background-color: #fff !important;
  padding: 0 0.3rem;
  font-size: 0.8rem; }

.textOnInput .form-controll .input-wrapper input:focus ~ label,
.textOnInput .form-controll .input-wrapper input:not(:placeholder-shown) ~ label {
  top: -0.7rem;
  font-size: 0.7rem;
  color: #333; }

.textOnInput1 .form-controll1 .input-wrapper1 label {
  position: absolute;
  top: -0.7rem;
  left: 0.5rem;
  pointer-events: none;
  transition: 0.2s ease all;
  color: var(--text, #222) !important;
  font-family: "Uber Move";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  background-color: #fff !important;
  padding: 0 0.3rem;
  font-size: 0.8rem; }

.textOnInput1 .form-controll1 .input-wrapper1 input:focus ~ label,
.textOnInput1 .form-controll1 .input-wrapper1 input:not(:placeholder-shown) ~ label {
  top: -0.7rem;
  font-size: 0.7rem;
  color: #333; }

.w-360 {
  width: 360px; }

.w-460 {
  width: 460px; }

@media (min-width: 1200px) {
  .vertical-menu {
    width: 238px;
    z-index: 1005;
    background: #fff;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .vertical-menu .vertical-menu-btn {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: none; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .vertical-menu {
    width: 238px;
    z-index: 1005;
    background: #fff;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .vertical-menu .vertical-menu-btn {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: none; } }

@media (max-width: 767px) {
  .vertical-menu {
    width: 238px;
    z-index: 1005;
    background: #fff;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .vertical-menu .vertical-menu-btn {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: none; } }

@media (max-width: 575.98px) {
  .vertical-menu {
    width: 238px;
    z-index: 1005;
    background: #fff;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .vertical-menu .vertical-menu-btn {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: none; } }

.submitbtn {
  background-color: #fff;
  color: #d51920;
  height: 36px;
  display: flex;
  border: 1px solid #d51920;
  padding: 8px;
  font-family: "Uber Move";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px; }

.filterbtn {
  background-color: #fff;
  color: #53545c;
  height: 36px;
  display: flex;
  border: 1px solid #53545c;
  padding: 8px;
  font-family: "Uber Move";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px; }

.filterclass {
  height: 18px !important;
  width: 18px !important;
  padding: 3px; }

.margin-top20 {
  margin-top: 15rem !important; }

.login-btn {
  width: 443px;
  height: 56px;
  border-radius: 3px !important;
  background: var(--Primary, #d51920) !important;
  color: var(--White, #fff) !important;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500; }

.Cancel-btn {
  background-color: black !important;
  color: white !important; }

.mar-5 {
  margin-right: 1.5rem !important;
  border-radius: 8px !important;
  margin-left: 1% !important; }

.magin {
  border-radius: 8px !important;
  margin-left: 1% !important; }

.profile-user {
  height: 90px !important;
  width: 90px !important;
  background-color: var(--bs-tertiary-bg);
  padding: 3px; }

.image-edit-icon {
  position: absolute;
  right: 25px;
  top: 85px;
  transform: translate(50%, -50%); }

.pro-fix-size {
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  overflow: hidden; }

.pro-fix-size img {
  width: 100%;
  /* Make sure the image takes up the entire container */
  height: auto;
  /* Maintain aspect ratio */ }

.uploader-file-border {
  border-radius: 5px;
  border: 1px solid var(--Stroke, #d3d3d3);
  background: var(--White, #fff);
  height: auto;
  width: 370px;
  padding: 5%; }

.existing-files {
  border-radius: 5px;
  border: 1px solid var(--Stroke, #d3d3d3);
  background: var(--White, #fff);
  width: fit-content;
  padding: 5%;
  white-space: nowrap;
  margin-right: 8px;
  margin-top: 10px;
  position: relative; }

.delete-icon {
  position: absolute;
  right: 8px;
  top: 2px;
  cursor: pointer; }

.borderchef {
  border: 1px solid rgba(173, 181, 189, 0.5);
  border-radius: 3px; }

.pdfbtn {
  background: transparent;
  border: none; }

.padding {
  padding-left: 20px !important;
  padding-right: 20px !important; }

.br-3 {
  border-radius: 3px !important; }

.chefheader {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; }

.pr-4 {
  padding-right: 4% !important; }

.labeltext {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0px !important; }

@media (max-width: 575.98px) {
  body {
    font-size: 14px; }
  .justify-content-end {
    justify-content: flex-start !important; }
  .col-sm {
    justify-content: flex-start !important; }
  .textOnInput .form-controll .input-wrapper input {
    width: 100% !important;
    height: 40px;
    padding-top: 1.6rem;
    padding-left: 10px;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); }
  .page-content {
    padding: calc(110px + 1.25rem) calc(1.25rem / 2) 60px calc(1.25rem / 2);
    padding-left: 2rem !important;
    padding-bottom: 1px; }
  .w-360 {
    width: 100%; }
  .w-460 {
    width: 100%; } }

@media (min-width: 768px) {
  body {
    font-size: 14px; }
  .col-sm {
    justify-content: flex-start !important; }
  .w-360 {
    width: 100%; }
  .w-460 {
    width: 100%; }
  .justify-content-end {
    justify-content: flex-end !important; }
  .textOnInput .form-controll .input-wrapper input {
    width: 100% !important;
    height: 40px;
    padding-top: 1.6rem;
    padding-left: 10px;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); } }

@media (min-width: 992px) {
  body {
    font-size: 16px; }
  .justify-content-end {
    justify-content: flex-end !important; }
  .textOnInput .form-controll .input-wrapper input {
    width: 100% !important;
    height: 40px;
    padding-top: 1.6rem;
    padding-left: 10px;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); }
  .textOnInput .form-controll .input-wrapper .invoice-input {
    width: 100% !important; }
  .w-360 {
    width: 360px; }
  .w-460 {
    width: 460px; } }

@media (min-width: 1200px) {
  body {
    font-size: 18px; }
  .justify-content-end {
    justify-content: flex-end !important; }
  .textOnInput1 .form-controll1 .input-wrapper1 input {
    width: 100%;
    height: 40px;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); }
  .input-wrapper .invoice-input {
    width: 100% !important; }
  .input-invoice {
    padding: 16px 10px !important; }
  .textOnInput .form-controll .input-wrapper input {
    width: 100% !important;
    height: 40px;
    padding-top: 1.6rem;
    padding-left: 10px;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); }
  .w-360 {
    width: 360px; }
  .w-460 {
    width: 460px; } }

.activeclass {
  color: #1a9882 !important;
  text-align: center;
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400; }

.inactiveclass {
  color: #de4841 !important;
  text-align: center;
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400; }

.deactiveclass {
  color: #693598 !important;
  text-align: center;
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400; }

.with-dot {
  margin-left: 5px !important;
  font-size: 14px !important;
  vertical-align: middle; }

.fs-sm {
  font-size: 0.5rem;
  margin-right: 5px; }

.flex-container {
  display: flex;
  align-items: center; }

.status-text {
  margin-left: 5px; }

.cardbg {
  background-color: #f4f0f1;
  border-radius: 8px !important;
  padding: 10px !important; }

.cardtext {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500; }

.cardsubtext {
  color: var(--Primary, #000);
  font-family: "Uber Move";
  font-size: 36px;
  font-style: normal;
  font-weight: 700; }

.chefimagetext {
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; }

.chefviewmaintext {
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; }

.chefviewsubtext {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; }

.table-padding {
  padding-left: 1rem;
  padding-right: 1rem; }

.titletext {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal; }

.pagination_DD {
  border: solid #bfc6d7 1px;
  padding: 4px 10px;
  border-radius: 7px;
  font-size: 14px;
  opacity: 50%; }

.pagination-details {
  font-size: 14px;
  font-weight: 500;
  color: #717171; }

.items-padding {
  margin: 0px 20px; }

.left-pagination-button,
.right-pagination-button {
  border: solid #bfc6d7 1px;
  padding: 7px 9px;
  border-radius: 6px;
  background-color: white;
  display: inline-flex; }

.left-pagination-button {
  margin: 15px; }

.table_row {
  font-size: 14px; }

.css-rzimkc-Table {
  border-bottom: solid #bfc6d7 1px; }

.css-fkzo2x-CELL_CONTAINER_STYLE-Cell {
  margin: 8px 0px !important; }

.css-67dx9u-HEADER_CELL_CONTAINER_STYLE-HeaderCell {
  border-bottom: solid #f4f0f1 1px !important;
  border-top: solid #f4f0f1 1px !important;
  padding: 20px 0px !important; }

.dropdown-menu.show {
  position: unset !important; }

.table > :not(caption) > * > * {
  padding: 0.75rem 0rem !important; }

.table-popup {
  font-size: 14px;
  cursor: pointer; }

.table-popup-content {
  padding: 5px 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: black; }

.table-popup-content:hover {
  color: #d51920; }

.popover-body {
  box-shadow: 0 2px 4px rgba(38, 44, 73, 0.3);
  background-color: white;
  padding: 2px 15px !important; }

.css-ctxmxi-Table {
  border-bottom: solid #f4f0f1 1px !important; }

.mainheader {
  color: #222;
  font-family: "Uber Move";
  font-size: 32px;
  font-style: normal;
  font-weight: 700; }

.breadcrumbmenu {
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; }

.breadcrumbsubmenu {
  color: var(--paragraph, #222);
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; }

.pt-20 {
  padding-top: 20%; }

.w-130 {
  width: 130px; }

.w-180 {
  width: 160px; }

.w-120 {
  width: 120px; }

.w-320 {
  width: 320px !important; }

.font-16 {
  font-size: 16px; }

.popover-body {
  font-family: "Uber Move";
  font-size: 14px; }

.w-350 {
  width: 350px; }

.pointer {
  cursor: pointer; }

.h-50 {
  height: 50px !important; }

.no-data {
  padding: 15px; }

.noradius {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important; }

.stepper .line {
  width: 2px;
  background-color: #d51920 !important; }

.stepper .lead {
  font-size: 1.1rem; }

.ratingclass {
  border: 1px solid #eff2f7 !important;
  border-radius: 20px;
  padding: 7px; }

.rating-color {
  color: #e4a400;
  font-size: 12px; }

.upcoming-grocery-text {
  font-size: 10px;
  color: #1a9882;
  cursor: pointer; }

.pending-pay-text {
  font-size: 10px;
  color: #4f70e7;
  cursor: pointer; }

.arrow-image {
  width: 16px;
  margin: 0px 2px; }

.grocery-btn-height {
  height: 100% !important;
  display: flex; }

.grocery-btn {
  color: white;
  background-color: #d51920;
  border: none;
  border-radius: 3px;
  padding: 4px 15px;
  font-size: 14px; }

.priority-text {
  color: #d51920; }

.grocery-pay-box {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 15px; }

.grocery-pay-head {
  font-size: 20px;
  font-weight: 600; }

.grocery-pay-body {
  font-size: 16px;
  padding: 10px 0px; }

.grocery-pay-border-top {
  border-top: 1px solid #dddddd; }

.grocery-pay-footer {
  font-size: 16px;
  padding: 20px 0px 10px; }

.grocery-img {
  width: 111px;
  height: 115px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px; }

.table-padding {
  padding: 10px 0px; }

.card-width {
  width: 100%; }

.check-radio {
  border: solid black 1px !important; }

.check-label {
  color: #383838;
  padding-right: 30px; }

.payment-radio .form-check-input:checked,
.form-check-input:disabled {
  border-color: #d9d9d9;
  background-color: #ffffff; }

.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url(/images/circle-dark.png?72093ad47a34afbfd3a93fc0d0492661) !important; }

.grocery-pay-btn {
  color: white;
  background-color: #d51920;
  border: none;
  border-radius: 3px;
  padding: 4px 15px;
  font-size: 16px; }

.grocery-paypal-btn {
  color: white;
  background-color: #000;
  border: none;
  border-radius: 3px;
  padding: 4px 15px;
  font-size: 18px;
  font-weight: 500; }

.grocery-manual-btn {
  color: white;
  background-color: #d51920;
  border: none;
  border-radius: 3px;
  padding: 4px 15px;
  font-size: 18px;
  font-weight: 500; }

.css-16xfy0z-control {
  background-color: transparent !important; }

.page-content .form-control:disabled {
  background-color: transparent !important; }

.pad-right-3 {
  padding-right: 3rem !important; }

.h-115 {
  min-height: 115px; }

.text-2 {
  color: #222222; }

.text-grey {
  color: #717171; }

.invoice-border-bottom {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 30px; }

.text-new {
  color: #21a0b2; }

.text-payment-issue {
  color: #de4841; }

.text-refund {
  color: #4f70e7; }

.text-confirmed {
  color: #1a9882; }

.text-cancell {
  color: #de4841; }

.text-grocery {
  color: #1a9882; }

.text-completed {
  color: #1a982e; }

.text-payment {
  color: #4f70e7; }

.text-review {
  color: #4f70e7; }

.payment-receipt .inv-header {
  background-color: #f3f3f3;
  border-radius: 10px; }

.payment-receipt .full-div {
  border-radius: 25px;
  border: solid #d3d3d3 1px; }

.payment-receipt .light-font {
  font-size: var(--text-14);
  color: #717171; }

.payment-receipt .main-heading {
  font-size: 20px;
  font-weight: 600; }

.text-info {
  color: #334bc8; }

.amount-div {
  margin-top: -25px; }

.inv-botn {
  margin-bottom: 200px; }

.password-div {
  position: relative; }

.password-icon {
  position: absolute;
  right: 0px;
  top: 10px;
  margin-right: 25px; }

@media print {
  .inv-header {
    background-color: #f3f3f3;
    border-radius: 10px; }
  .full-div {
    border-radius: 25px;
    border: solid #d3d3d3 1px; }
  .light-font {
    font-size: var(--text-14);
    color: #717171; }
  .main-heading {
    font-size: 20px;
    font-weight: 600; }
  .print-footer {
    position: fixed;
    bottom: 0;
    left: 0; } }

.pac-container {
  inset: 0px auto auto 0px;
  margin: 0px;
  transform: translate(0px, 15px);
  min-width: 300px;
  background-color: #fff;
  position: absolute !important;
  z-index: 1000;
  border-radius: 2px;
  border-top: 1px solid #d9d9d9;
  font-family: Arial, sans-serif;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  box-shadow: 0 0 5px 2px #e9e9e9;
  margin-top: -9px;
  border: none;
  border-radius: 10px; }

.pac-item {
  cursor: default;
  padding: 10px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
  text-align: left;
  font-size: 11px;
  border-top: none !important;
  color: #515151; }

.pac-logo:after {
  content: "";
  height: 0px !important;
  background-image: none !important; }

.red-text {
  color: #d51920; }

.Modal-padding {
  padding: 2rem !important; }

.cursor {
  cursor: pointer; }

.btn-green {
  background-color: #1a9882 !important;
  color: white !important;
  font-size: 17px !important; }

.white-text {
  color: white;
  font-weight: 500;
  font-size: 16; }

.black-text {
  color: black;
  font-weight: 500;
  font-size: 16; }

.elevate-dropdownMonth .css-tr4s17-option {
  padding: 3px 8px; }

.elevate-dropdownMonth .css-13cymwt-control {
  border: none !important;
  height: 10px;
  background: transparent !important; }

.elevate-dropdownMonth .react-select__placeholder {
  color: #adb5bd;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px; }

.elevate-dropdownMonth .css-1dimb5e-singleValue {
  color: white !important; }

.elevate-dropdownMonth .__value-container {
  font-size: 10px; }

.elevate-dropdownMonth .__control--is-focused {
  background: transparent !important;
  outline: none !important; }

.elevate-dropdownMonth .__control--is-focused:active {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .__control--is-focused:focus {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .__control--is-focused:focus-within {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .css-t3ipsp-control:active {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .css-t3ipsp-control:focus {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .css-t3ipsp-control:focus-within {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .__control--menu-is-open:active {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .__control--menu-is-open:focus {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .__control--menu-is-open:focus-within {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important; }

.elevate-dropdownMonth .__control--is-focused:focus {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important; }

.elevate-dropdownMonth .__control--is-focused:focus-within {
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  border: none !important; }

.elevate-dropdownMonth .css-1nmdiq5-menu {
  background: white !important;
  line-height: 1;
  font-size: 10px;
  color: black !important; }

.elevate-dropdownMonth .css-1u9des2-indicatorSeparator {
  display: none !important; }

.elevate-dropdownMonth .__clear-indicator {
  display: none !important; }

.elevate-dropdownMonthblack .css-13cymwt-control {
  border: none !important;
  height: 10px;
  background: transparent !important; }

.elevate-dropdownMonthblack .react-select__placeholder {
  color: #adb5bd;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px; }

.elevate-dropdownMonthblack .css-1dimb5e-singleValue {
  color: black !important; }

.elevate-dropdownMonthblack .__value-container {
  font-size: 10px; }

.elevate-dropdownMonthblack .__control--is-focused {
  background: transparent !important;
  outline: none !important; }

.elevate-dropdownMonthblack .css-1nmdiq5-menu {
  background: white !important;
  line-height: 1;
  font-size: 10px;
  color: black !important; }

.elevate-dropdownMonthblack .css-1u9des2-indicatorSeparator {
  display: none !important; }

.elevate-dropdownMonthblack .__clear-indicator {
  display: none !important; }

.elevate-dropdownMonthborder .css-13cymwt-control {
  border: 1px solid #d3d3d3 !important;
  height: 10px;
  width: 200px;
  background: white !important; }

.elevate-dropdownMonthborder .w-80 {
  width: 80px; }

.elevate-dropdownMonthborder .react-select__placeholder {
  color: #adb5bd;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px; }

.elevate-dropdownMonthborder .css-1dimb5e-singleValue {
  color: black !important; }

.elevate-dropdownMonthborder .__value-container {
  font-size: 10px; }

.elevate-dropdownMonthborder .__control--is-focused {
  background: transparent !important;
  outline: none !important; }

.elevate-dropdownMonthborder .css-1nmdiq5-menu {
  background: white !important;
  line-height: 1;
  font-size: 10px;
  color: black !important; }

.elevate-dropdownMonthborder .css-1u9des2-indicatorSeparator {
  display: none !important; }

.elevate-dropdownMonthborder .__clear-indicator {
  display: none !important; }

.elevate-dropdownMonthchart .css-13cymwt-control {
  border: 1px solid #d3d3d3 !important;
  height: 10px;
  width: 80px;
  background: white !important; }

.elevate-dropdownMonthchart .w-80 {
  width: 80px; }

.elevate-dropdownMonthchart .react-select__placeholder {
  color: #adb5bd;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px; }

.elevate-dropdownMonthchart .css-1dimb5e-singleValue {
  color: black !important; }

.elevate-dropdownMonthchart .__value-container {
  font-size: 10px; }

.elevate-dropdownMonthchart .__control--is-focused {
  background: transparent !important;
  outline: none !important; }

.elevate-dropdownMonthchart .css-13cymwt-control {
  width: 130px; }

.elevate-dropdownMonthchart .css-1nmdiq5-menu {
  background: white !important;
  line-height: 1;
  font-size: 10px;
  color: black !important; }

.elevate-dropdownMonthchart .css-1u9des2-indicatorSeparator {
  display: none !important; }

.elevate-dropdownMonthchart .__clear-indicator {
  display: none !important; }

.smallinc {
  height: 10px;
  width: 10px; }

.inc {
  color: #18bfa2; }

.whiteop {
  color: white;
  opacity: 0.7; }

.red-text {
  color: #d51920;
  font-size: 14px;
  font-weight: 400; }

.h-400 {
  height: 400px; }

.h-440 {
  height: 440px; }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block; }

.dot-black {
  background-color: #000000; }

.dot-red {
  background-color: #d51920; }

.w-80 {
  width: 80px !important; }

.uber {
  font-family: "Uber Move"; }

.apexcharts-toolbar {
  display: none !important; }

.radio-input {
  accent-color: red !important;
  width: 12px !important; }

.flatpickr-months .flatpickr-month,
span.flatpickr-weekday {
  background-color: #d51920 !important; }

.confirmation-popup {
  top: 233px;
  padding: 20px; }

.confirmation-popup .modal-content {
  padding: 20px; }

.confirm-popup-text {
  font-size: 16px;
  font-weight: 400;
  padding-top: 20px; }

.confirmation-popup-header {
  border-bottom: solid gray 1px; }

.elevate-dropdownMonthchart .css-13cymwt-control {
  width: 100%; }

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

.width-90 {
  width: 90%; }

.css-b62m3t-container:active {
  box-shadow: none;
  outline: none;
  background: transparent; }

.css-b62m3t-container:hover {
  box-shadow: none; }

.css-b62m3t-container:focus {
  box-shadow: none; }

.css-b62m3t-container:focus-visible {
  box-shadow: none; }

.css-b62m3t-container:active {
  box-shadow: none;
  outline: none;
  background: transparent; }

.react-select __control--is-focused:hover {
  box-shadow: none; }

.react-select __control--is-focused:focus {
  box-shadow: none; }

.react-select __control--is-focused:focus-visible {
  box-shadow: none; }

.react-select __control--is-focused {
  box-shadow: none; }

.elevate-dropdownMonthchart .css-13cymwt-control {
  background: transparent !important;
  width: 130px; }

.elevate-dropdownMonthchart .css-13cymwt-control {
  background: transparent !important; }

.dashboard .elevate-dropdownMonth .__control--is-focused {
  background: transparent !important; }

.dashboard .css-t3ipsp-control {
  background: transparent !important; }

.elevate-dropdownMonth .css-13cymwt-control:active {
  box-shadow: none;
  outline: none;
  border: none !important; }

.elevate-dropdownMonth .css-13cymwt-control:focus {
  box-shadow: none;
  outline: none;
  border: none !important; }

.elevate-dropdownMonth .css-13cymwt-control {
  width: 130px; }

.css-1fdsijx-ValueContainer {
  align-items: center;
  display: grid;
  flex: 1;
  -webkit-box-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-overflow-scrolling: touch;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0px 10px !important; }

.elevate-dropdownMonthblack .__control--is-focused:active {
  background: transparent !important;
  outline: none !important;
  border: none;
  box-shadow: none; }

.elevate-dropdownMonthblack .__control--is-focused:focus {
  background: transparent !important;
  outline: none !important;
  border: none;
  box-shadow: none; }

.elevate-dropdownMonthblack .__control--is-focused:focus-visible {
  background: transparent !important;
  outline: none !important;
  border: none;
  box-shadow: none; }

.css-t3ipsp-control:hover {
  border-color: none !important; }

.css-t3ipsp-control:active {
  border-color: none !important; }

.css-t3ipsp-control:focus {
  border-color: none !important; }

.w-9__value-container {
  font-size: 10px; }

.w-9__clear-indicator {
  display: none !important; }

.css-t3ipsp-control {
  align-items: center;
  cursor: default;
  display: flex;
  -webkit-box-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 38px;
  outline: 0 !important;
  position: relative;
  transition: all 100ms;
  background-color: white;
  border-color: #d3d3d3 !important;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  box-shadow: none !important;
  box-sizing: border-box; }

@font-face {
  font-family: "Uber Move";
  src: url(/fonts/UberMove-Regular.ttf?b87d88b271d5b5713d16abb77c93e3b1) format("truetype");
  font-weight: 400;
  font-style: normal; }

@font-face {
  font-family: "Uber Move";
  src: url(/fonts/UberMove-Bold.ttf?3107ceed5e03f0d66d62afb1c3678dd7) format("truetype");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: "Uber Move";
  src: url(/fonts/UberMove-Medium.ttf?c7040bde5c33c869b1fd82e9628b64ce) format("truetype");
  font-weight: 500;
  font-style: normal; }

body {
  font-family: "Uber Move" !important; }

.fw-bold-400 {
  font-weight: 400 !important; }

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

.fw-bold-900 {
  font-weight: 900 !important; }

.text-grey-700 {
  color: #495057; }

.flexDisplay {
  display: flex; }

.first-cell {
  color: #fff !important;
  font-weight: 400 !important; }

.blue-text {
  color: #d51920; }
  .blue-text.downloadable-file {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.font-size-10 {
  font-size: 10px; }

.font-size-12 {
  font-size: 12px; }

.font-size-14 {
  font-size: 14px; }

.font-size-18 {
  font-size: 18px; }

.font-size-20 {
  font-size: 20px; }

.font-size-24 {
  font-size: 24px; }

.font-size-28 {
  font-size: 28px; }

.font-size-40 {
  font-size: 40px; }

.btn-blue,
.btn-blue:active {
  background: #d51920 !important; }

.add-dropdown,
.profile-dropdown {
  width: max-content;
  box-shadow: 0px 4px 20px rgba(13, 88, 193, 0.25); }
  .add-dropdown .submenu,
  .profile-dropdown .submenu {
    color: #d51920; }

.dashboard-container .chart-head {
  position: absolute;
  top: 22px;
  left: 25px;
  font-size: 16px;
  font-weight: 700; }
  .dashboard-container .chart-head.donut {
    top: 15px;
    left: 15px; }

.dashboard-container .sales-chart {
  font-family: "Uber Move"; }
  .dashboard-container .sales-chart .apexcharts-legend.apx-legend-position-top {
    right: 28px !important;
    top: 0px !important;
    left: unset !important; }

.dashboard-container .total-profit-wrapper {
  height: 330px; }

.dashboard-container .due-solid-border {
  border-bottom: 1px solid #e4e4e4;
  margin: 10px -13px 4px; }

.dashboard-container .bottom-wrapper {
  height: 199px; }

.dashboard-container .invoice-text {
  color: #5b5b5b; }

.dashboard-container .due-border {
  border-bottom: 1px dashed #e4e4e4; }
  .dashboard-container .due-border .due-date {
    color: #5b5b5b; }

.dashboard-container .filter-border {
  border: 1px solid #e9e9ea;
  border-radius: 50px;
  padding: 4px 10px; }

.dashboard-container .most-selling .apexcharts-legend-marker {
  margin-right: 10px;
  float: left; }

.dashboard-container .most-selling .apexcharts-canvas text {
  fill: #2a2a2a !important;
  font-weight: 600;
  font-size: 13px; }

.dashboard-container .most-selling .seriesWrapper {
  width: 135px;
  float: left; }
  .dashboard-container .most-selling .seriesWrapper .seriesLabel {
    width: 70%;
    float: left;
    margin-top: -4px; }
  .dashboard-container .most-selling .seriesWrapper .seriesValue {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    float: left;
    margin-top: -4px; }

.dashboard-container .most-selling .apexcharts-tooltip-title,
.dashboard-container .most-selling .apexcharts-tooltip-text {
  color: #ffffff;
  font-size: 12px; }

.notfound-conatainer .notfound-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }

.notfound-conatainer .notfound-left {
  max-width: 70%; }

.notfound-conatainer .notfound-title {
  font-size: 120px;
  color: #d51920 !important;
  line-height: 120px; }

.notfound-conatainer .notfound-sub-title {
  font-size: 40px; }

.notfound-conatainer .notfound-desc {
  font-size: 18px;
  color: #495057 !important; }

.notfound-conatainer .notfound-button {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700; }

.download-container {
  display: flex;
  justify-content: center; }

.highlight-background {
  background: #ffffff !important; }

.card-pad {
  padding: 0.8rem !important; }

.pad12 {
  padding: 12px; }

.white {
  color: #ffffff !important; }

.white-bg {
  background: #ffffff !important; }

.primary-bg {
  background: #d51920 !important; }

.login-wrapper input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important; }

.login-wrapper .login-logo {
  height: 20vh;
  float: right; }
  .login-wrapper .login-logo img {
    margin: 3em 1em;
    width: auto; }

.login-wrapper .form-control {
  border: 1px solid rgba(196, 196, 196, 0.8);
  padding: 15px;
  color: #000;
  border-radius: 4px; }
  .login-wrapper .form-control::placeholder {
    color: #dee2e6; }
  .login-wrapper .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #dee2e6; }
  .login-wrapper .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #dee2e6; }

.login-wrapper .login-title {
  font-weight: 600; }

.login-wrapper .legend-label {
  position: absolute;
  top: -9px;
  font-size: 12px;
  left: 12px;
  color: #d51920;
  background: #ffffff;
  padding: 0 3px; }

.login-wrapper .login-button {
  border-radius: 100px;
  padding: 5px 20px; }

.login-wrapper .form-check-input {
  border: 1px solid #fff; }

.footer {
  background: #ffffff; }

.table-responsive {
  overflow-x: clip !important;
  -webkit-overflow-scrolling: touch; }

.table-responsive td {
  vertical-align: middle; }

#layout-wrapper #page-topbar {
  box-shadow: none !important; }

#layout-wrapper .vertical-menu .navbar-brand-box {
  background-color: #ffffff;
  box-shadow: none !important; }

.sidebar-logo {
  margin-top: 10px; }

.vertical-collpsed .contact-wrapper {
  display: none !important; }

.btn-dark {
  color: #fff;
  background-color: #000;
  border-color: #000; }

.btn-dark:hover {
  color: #fff;
  background-color: #000;
  border-color: #000; }

.side-menu-icon {
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 20px;
  height: 30px;
  margin-right: 10px;
  background-position: center; }

.modal .invalid-feedback {
  color: #f25c54; }

.modal .form-control {
  color: #fff;
  border: 1px solid #d51920;
  border-radius: 5px; }
  .modal .form-control.is-invalid {
    border-color: #d51920; }
  .modal .form-control::placeholder {
    color: #8a9197; }
  .modal .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8a9197; }
  .modal .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #8a9197; }

body {
  font-size: 14px;
  /* Default font size for all screens */ }

/* Additional styles for larger screens */
.elevate-dropdown .react-select__control {
  border: none; }

.elevate-dropdown .react-select__indicator-separator {
  background-color: #ffffff; }

.elevate-dropdown .react-select__placeholder {
  color: #8a9197;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px; }

.elevate-dropdown .react-select__value-container {
  font-size: 12px; }

.elevate-dropdown .react-select__indicator {
  color: #adb5bd; }

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #d51920;
  color: #ffffff; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #d51920; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #d51920; }

span.flatpickr-weekday,
.flatpickr-weekdays {
  background: #d51920; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #d51920;
  border-color: #d51920;
  color: #ffffff; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  box-shadow: -10px 0 0 #d51920; }

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #d51920, 5px 0 0 #d51920; }

.flatpickr-day.inRange {
  background: #fef7f4;
  box-shadow: -5px 0 0 #fef7f4, 5px 0 0 #fef7f4;
  border-color: #fef7f4; }

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background: #ffffff; }

.table {
  border: #ffff;
  margin-top: -10px; }
  .table th {
    font-size: 14px; }

.card {
  border-radius: 0.5rem; }

.page-content {
  /*.dashboard-report{
        .card{
            border-radius: .50rem;
            box-shadow: 1px 15px 30px #FBE1D4;
            &:hover {
                box-shadow: 1px 15px 30px #F9D2BF;
            }
        }
    }*/ }
  .page-content .role-container tr td:first-child {
    text-transform: capitalize; }
  .page-content .comment-description {
    border-left: 1px dotted lightgrey; }
  .page-content .invalid-feedback {
    color: #f25c54;
    overflow: hidden;
    text-overflow: ellipsis; }
  .page-content .react-bootstrap-table .expand-cell-header,
  .page-content .react-bootstrap-table .expand-cell {
    cursor: pointer; }
  .page-content .react-calendar {
    border: unset;
    min-height: 320px;
    color: #fff; }
    .page-content .react-calendar .react-calendar__navigation button {
      min-width: 30px; }
    .page-content .react-calendar .react-calendar__tile--now {
      border-radius: 50%;
      color: #d51920 !important;
      background: #ffffff; }
    .page-content .react-calendar .react-calendar__tile {
      padding: 7px 5px;
      color: #fff; }
    .page-content .react-calendar .react-calendar__month-view__days__day--neighboringMonth {
      color: hwb(19 58% 4%) !important; }
    .page-content .react-calendar abbr[title] {
      text-decoration: none !important; }
    .page-content .react-calendar .react-calendar__month-view__days__day--weekend {
      color: #d51920; }
    .page-content .react-calendar .react-calendar__tile--active,
    .page-content .react-calendar .react-calendar__tile:enabled:hover {
      border-radius: 50%;
      background: #d51920;
      color: #ffffff !important; }
    .page-content .react-calendar .react-calendar__navigation__arrow {
      color: #d51920; }
  .page-content .right-bar.task-filter {
    z-index: 1009;
    background: #e9f5ff !important; }
    .page-content .right-bar.task-filter .right-bar-toggle,
    .page-content .right-bar.task-filter .right-bar-toggle:hover {
      background-image: url(/images/closebutton.svg?8d40d9c84161f7b8e46c14dd165d2499);
      background-color: unset;
      background-repeat: no-repeat;
      background-size: contain; }
    .page-content .right-bar.task-filter .react-select__placeholder {
      font-size: 12px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    .page-content .right-bar.task-filter .react-select__control {
      border-color: #ffffff;
      background: #ffffff; }
    .page-content .right-bar.task-filter .react-select__single-value {
      color: #d51920; }
    .page-content .right-bar.task-filter .react-select__indicator-separator {
      background-color: #ffffff; }
    .page-content .right-bar.task-filter .react-select__placeholder,
    .page-content .right-bar.task-filter .react-select__indicator {
      color: #dee2e6; }
    .page-content .right-bar.task-filter .form-control {
      background: #ffffff;
      border-color: #ffffff;
      color: #000; }
      .page-content .right-bar.task-filter .form-control::placeholder {
        font-size: 12px;
        color: #dee2e6; }
      .page-content .right-bar.task-filter .form-control:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        font-size: 12px;
        color: #dee2e6; }
      .page-content .right-bar.task-filter .form-control::-ms-input-placeholder {
        /* Microsoft Edge */
        font-size: 12px;
        color: #dee2e6; }
  .page-content .upload-logo img {
    max-width: 150px;
    max-height: 100px; }
  .page-content .form-label {
    font-size: 12px;
    font-weight: 600; }
  .page-content .form-control {
    color: #fff;
    border: none;
    border-radius: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
    padding-top: 14px;
    padding-bottom: 10px; }
    .page-content .form-control.product-texarea {
      padding-top: 14px;
      padding-bottom: 0px;
      line-height: 1; }
    .page-content .form-control.is-invalid {
      border-color: #d51920; }
    .page-content .form-control.date-field.is-invalid + input {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F25C54'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F25C54' stroke='none'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.235rem) center;
      background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem); }
    .page-content .form-control::placeholder {
      color: #8a9197; }
    .page-content .form-control:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #8a9197; }
    .page-content .form-control::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #8a9197; }
    .page-content .form-control.date-field {
      background-color: #ffffff; }
    .page-content .form-control:disabled {
      background-color: #f2f2f2; }
  .page-content #excel,
  .page-content #pdf,
  .page-content .cloud-upload,
  .page-content .dash-icon {
    padding: 0px 10px;
    border-radius: 10px;
    margin: 0;
    font-size: 1.5em; }
  .page-content .dashboard-icon {
    padding: 4px 20px 12px;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    border-radius: 10px;
    margin: 0;
    font-size: 1.5em; }
  .page-content .total-income {
    background: rgba(243, 155, 155, 0.25);
    background-image: url(/images/income.svg?0f577865103b67d5fad7a2c9da237fad);
    background-position: 9px 10px !important; }
  .page-content .total-expense {
    background: rgba(128, 167, 222, 0.25);
    background-image: url(/images/expense.svg?b8865f2c5d023911e80db9f8560bdd65);
    background-position: 9px 12px !important; }
  .page-content .customer-container {
    background: #ffedec;
    box-shadow: none; }
    .page-content .customer-container .total-customer {
      background: #f4d1cf;
      background-image: url(/images/customer-icon.svg?169975184476e68af9b3415d85c2508b) !important;
      background-position: 50% !important; }
  .page-content .mute-container {
    border: none !important;
    background-image: url(/images/mutecard.svg?7f8a17b6ef5c840da0c0507dd2f258fd) !important;
    background-size: 175%;
    background-repeat: no-repeat; }
  .page-content .black-container {
    background-image: url(/images/blackcard.svg?11e2c1793c73a711f495d125c72847c2) !important;
    background-size: 175%;
    background-repeat: no-repeat; }
  .page-content .invoice-container {
    background: #dce3ec;
    box-shadow: none; }
    .page-content .invoice-container .total-invoice {
      background: #b8c0ce;
      background-image: url(/images/invoice-icon.svg?4f0e47e00bc9e62a1c1278925c40fb4d) !important;
      background-position: 50% !important; }
  .page-content .dropzone {
    min-height: unset;
    border: none;
    background: #ffffff;
    border-radius: 5px; }
    .page-content .dropzone .upload-wrapper {
      position: relative;
      min-height: 37px; }
      .page-content .dropzone .upload-wrapper .no-file-label {
        background: #e9ecef;
        border-radius: 50px;
        padding: 0px 10px;
        width: 123px; }
      .page-content .dropzone .upload-wrapper h5, .page-content .dropzone .upload-wrapper .h5 {
        font-size: 1rem; }
      .page-content .dropzone .upload-wrapper .cloud-upload {
        position: absolute;
        right: 0.5rem;
        top: 0.7rem;
        z-index: 1;
        background-image: url(/images/upload.svg?c0783164b7809f3063ecc8b38ca094c0);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px; }
      .page-content .dropzone .upload-wrapper .downloadable-file {
        max-width: 70%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
  .page-content .table-card-wrapper {
    overflow-x: auto; }
  .page-content .simplebar-scrollbar:before {
    background: #d51920; }
  .page-content .right-bar {
    width: 380px;
    max-width: 100% !important; }
  .page-content .search-wrapper {
    position: relative; }
    .page-content .search-wrapper .serach-icon {
      position: absolute;
      right: 10px;
      top: 9px;
      font-size: 20px; }
    .page-content .search-wrapper .search-input {
      background: #ffffff;
      border: unset; }
      .page-content .search-wrapper .search-input::placeholder {
        color: #d51920;
        opacity: 1;
        /* Firefox */ }
      .page-content .search-wrapper .search-input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #d51920; }
      .page-content .search-wrapper .search-input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #d51920; }
  .page-content .pagination .page-item {
    display: none; }
    .page-content .pagination .page-item:first-child, .page-content .pagination .page-item:last-child {
      display: block; }
  .page-content .pagination .active.page-item .page-link {
    color: #d51920;
    border: 1 px solid #d51920;
    cursor: pointer; }
  .page-content .pagination .disabled {
    cursor: pointer; }
  .page-content .pagination .page-item .page-link {
    border: unset;
    background: inherit;
    cursor: pointer;
    margin-top: -15%; }

.total-wrapper {
  background: #ffffff;
  border-radius: 10px; }
  .total-wrapper .total-divider {
    border-bottom: 1px solid rgba(173, 181, 189, 0.2); }

.notfound-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(113.76deg, #d51920 -0.49%, rgba(233, 103, 41, 0.8) 55.21%); }
  .notfound-container .card {
    border-radius: 50px;
    height: 60vh;
    box-shadow: 10px 20px 25px rgba(0, 0, 0, 0.15); }
    .notfound-container .card .card-body {
      padding: 5px !important;
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column; }

@media (min-width: 769px) {
  .vertical-collpsed {
    min-height: 500px; } }

.actionButtonAlign {
  display: flex;
  justify-content: space-around; }

.term {
  margin-top: 50px;
  margin-bottom: 10px; }

.terms {
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600; }

.py-6 {
  padding-top: 0.5rem !important;
  padding-bottom: 6rem !important; }

.productDetail {
  margin-top: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px; }

.payable {
  margin-top: 10px; }

.other {
  margin-top: 10px; }

.subTotal {
  margin-top: 25px; }

.vat {
  margin-top: 10px; }

.shippingCharge {
  margin-top: 10px; }

.addButton {
  background-color: #1dd3b0;
  background-image: url(/images/addRow.svg?3fa31b2985fd57524ff7dd921f9c6b9f);
  background-repeat: no-repeat;
  border: none;
  padding: 5px 10px !important;
  width: 22px;
  height: 22px; }

.removeButton {
  background-color: #f25c54;
  background-image: url(/images/removeRow.svg?a01f09ae26a6991f9e3c5e8eedbf01b3);
  background-repeat: no-repeat;
  border: none;
  padding: 5px 10px !important;
  width: 22px;
  height: 22px; }

.editorClassName {
  height: 100px;
  background-color: #fff; }

.expenseDetail {
  background-color: #fff;
  margin: 5px;
  padding: 30px;
  border-radius: 8px; }

.supplierDetailTitle {
  margin-bottom: 30px; }

.CustomerFirstSection {
  background-color: #fff;
  border-radius: 20px;
  margin: 5px;
  padding: 25px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.customDetails {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px; }

.CustomerSecondSection {
  background-color: #1dd3b0; }

.pass {
  top: 17px;
  position: absolute;
  right: 20px; }

.accountdetails {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px; }

.supplierdetails {
  font-size: 20px;
  font-weight: 600;
  color: #0d58c1;
  margin-top: 15px;
  margin-left: 20px; }

.filenames {
  width: 90px;
  height: 23px;
  background-color: #c5d6f0;
  border-radius: 30px;
  text-align: center; }

.iconlist {
  display: flex; }

.icondown {
  margin-left: 20px; }

.totalQuotation {
  background-color: #f4d6d5;
  border-radius: 20px;
  padding: 20px;
  margin: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.totalinvoice {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: #caeee7;
  border-radius: 20px;
  padding: 20px;
  margin: 5px; }

.nav-link {
  color: #0d58c1;
  cursor: pointer; }

.detailActive {
  width: 100px;
  height: 27px;
  background-color: #1dd3b0;
  color: #fff;
  border-radius: 50px;
  text-align: center; }

.mico-table {
  border-collapse: separate;
  border-spacing: 0 1em; }
  .mico-table thead th {
    color: #d51920; }
  .mico-table .table-header__no-accessor,
  .mico-table .table-header__name {
    color: #d51920;
    font-size: 14px; }
  .mico-table .mico-row {
    background: #ffffff; }
    .mico-table .mico-row th:first-child {
      border-top-left-radius: 5px; }
    .mico-table .mico-row td:last-child {
      border-top-right-radius: 5px; }
    .mico-table .mico-row th:first-child {
      border-bottom-left-radius: 5px; }
    .mico-table .mico-row td:last-child {
      border-bottom-right-radius: 5px; }
  .mico-table > :not(caption) > * > * {
    border-top-width: 0px; }

.proforma-textarea {
  min-height: 96px !important; }

.filter-buttons {
  position: fixed;
  right: 10px;
  bottom: 20px; }
  .filter-buttons .primarybtn {
    background: #fff !important;
    color: #d51920;
    border: 1px solid #d51920;
    width: 95px;
    height: 36px;
    font-family: "Uber Move";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal; }
  .filter-buttons .btn-primary {
    background: #fff !important;
    color: #d51920;
    width: 95px;
    height: 36px;
    font-family: "Uber Move";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 3px !important; }
  .filter-buttons .btn-secondary {
    background: #000; }

.btn {
  padding: 8px 35px !important;
  border-radius: 10px !important;
  border: unset; }

.invoice-detail-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.purchase-detail-page {
  position: relative; }
  .purchase-detail-page .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .purchase-detail-page .table-striped td,
  .purchase-detail-page .table-striped th {
    padding: 10px;
    font-weight: 100; }
  .purchase-detail-page .table-striped th {
    background-color: #0d58c1; }
  .purchase-detail-page .invoicePurchase {
    font-weight: 800;
    font-size: 32px; }
  .purchase-detail-page .invoiceOrder {
    font-weight: 600;
    font-size: 32px; }
  .purchase-detail-page .font-size-20 {
    font-weight: 700;
    font-size: 20px;
    color: #fff; }
  .purchase-detail-page .purchaseOrderTo {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px; }
  .purchase-detail-page .purchaseOrderShipping {
    font-weight: 700;
    color: #fff;
    margin-top: 35px; }
  .purchase-detail-page .purchaseDetailsToAddress {
    font-weight: 700;
    color: #fff; }
  .purchase-detail-page .purchaseOrderPoNo {
    font-weight: 600;
    font-size: 14px;
    color: #fff !important;
    width: 50%; }
  .purchase-detail-page .purchaseDetails-table {
    background-color: #0d58c1;
    color: #fff;
    font-size: 16px; }
  .purchase-detail-page .purchaseDetails-Values {
    color: #fff;
    font-weight: 600;
    font-size: 14px; }
  .purchase-detail-page .purchaseDetailsAmount {
    margin-top: 30px;
    font-weight: 700;
    font-size: 14px;
    color: #fff; }
  .purchase-detail-page .purchaseDetailsAmountWords {
    margin-bottom: 60px;
    color: #adb5bd; }
  .purchase-detail-page .purchaseDetailsTerm {
    margin-bottom: 40px;
    color: #adb5bd;
    font-size: 12px;
    font-weight: 400; }
  .purchase-detail-page .purchaseDetailsMicohr {
    border: none;
    border-top: 1.5px solid #0d58c1;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .purchase-detail-page .purchaseDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .purchase-detail-page .vl {
    border-left: 1px solid #adb5bd; }
  .purchase-detail-page .purchaseDetailsFooter {
    margin-bottom: 25px; }
  .purchase-detail-page .purchaseDetailsThankYou {
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 12px; }
  .purchase-detail-page .purchase-footer-details {
    font-size: 10px;
    font-weight: 500; }
  .purchase-detail-page .purchaseOrderFindTotal {
    width: 50%; }
  .purchase-detail-page .purchaseOrderSubTotals {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    width: 70%; }
  .purchase-detail-page .purchaseOrderFindTotalnet {
    font-weight: 700;
    color: #fff;
    width: 50%; }
  .purchase-detail-page .purchaseOrderShippingAddress {
    margin-bottom: 25px; }
  .purchase-detail-page .purchaseDetailsPrepare {
    color: #adb5bd;
    font-size: 12px;
    text-align: left;
    width: 50%; }
  .purchase-detail-page .purchaseDetailsSign {
    float: right;
    font-size: 14px;
    font-weight: 700;
    color: #fff; }
  .purchase-detail-page .purchaseDetailsNetTotal {
    color: #fff;
    font-weight: 700;
    width: 70%; }
  .purchase-detail-page .table {
    --bs-table-striped-bg: #f0f7fb; }

.dash-recent-quote > tbody > tr:nth-of-type(even) > td {
  background: #f0f7fb; }

.dash-recent-quote th {
  background: #c4e0f9; }

.purchase-detail-card {
  max-width: 1300px; }

.purchase-detail-card-body {
  padding: 35px 60px; }

.tax-invoice-container {
  position: relative; }
  .tax-invoice-container .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .tax-invoice-container .table-striped td,
  .tax-invoice-container .table-striped th {
    padding: 10px;
    word-wrap: break-word; }
  .tax-invoice-container .table-striped th {
    background-color: #0d58c1;
    font-weight: 100; }
  .tax-invoice-container .tax-invoice-tax {
    font-size: 32px;
    font-weight: 800; }
  .tax-invoice-container .tax-invoice-invoice {
    font-size: 32px;
    font-weight: 600; }
  .tax-invoice-container .tax-address {
    font-size: 12px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px !important; }
  .tax-invoice-container .tax-invoice-number {
    font-size: 12px;
    font-weight: 700 !important;
    text-align: right;
    width: 67%;
    color: #fff; }
  .tax-invoice-container .tax-invoice-value {
    width: 27%;
    text-align: left; }
  .tax-invoice-container .tax-detail-table {
    background-color: #0d58c1;
    color: #fff;
    font-size: 16px; }
  .tax-invoice-container .tax-Amount {
    margin-top: 30px;
    font-weight: 700 !important;
    font-size: 14px;
    color: #fff; }
  .tax-invoice-container .tax-sub-total {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    width: 50%; }
  .tax-invoice-container .tax-amount-words {
    font-size: 12px;
    font-weight: 600;
    color: #adb5bd; }
  .tax-invoice-container .proforma-to {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .tax-invoice-container .proforma-too {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .tax-invoice-container .proforma-table {
    background-color: #0d58c1;
    color: #fff; }
  .tax-invoice-container .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .tax-invoice-container .proforma-table-border {
    border-color: #e9ecef;
    margin-top: 30px;
    margin-bottom: 50px; }
    .tax-invoice-container .proforma-table-border td,
    .tax-invoice-container .proforma-table-border th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .tax-invoice-container .tax-detail-container {
    border: 2px solid black; }
  .tax-invoice-container .tax-table-bordered {
    border: 2px solid #e9ecef;
    margin-bottom: 40px; }
    .tax-invoice-container .tax-table-bordered td,
    .tax-invoice-container .tax-table-bordered th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .tax-invoice-container .invoicecompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .tax-invoice-container .taxDetailsMicohr {
    border: none;
    border-top: 1.5px solid #d51920;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .tax-invoice-container .taxDetailsMicohr:after {
    background: #fff;
    padding: 0 4px 0 0;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #d51920;
    font-weight: 700; }
  .tax-invoice-container .tax-computer-bill {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    font-weight: 400;
    color: #495057; }
  .tax-invoice-container .tax-invoice-footer {
    font-weight: 500;
    font-size: 10px; }
  .tax-invoice-container .tax-detail-button {
    background-color: #0d58c1;
    color: #fff;
    width: 100px;
    height: 30px; }
  .tax-invoice-container .taxvl {
    border-left: 1px solid #adb5bd; }
  .tax-invoice-container .tax-total-values {
    margin-top: 30px; }
  .tax-invoice-container .tax-title {
    color: #212529; }
  .tax-invoice-container .tax-detail-address {
    color: #fff; }
  .tax-invoice-container .tax-invoice-section {
    margin-top: -25px; }
  .tax-invoice-container .tax-invoice {
    padding-top: 0px; }
  .tax-invoice-container .table {
    --bs-table-striped-bg: #f0f7fb; }
  .tax-invoice-container .tax-bank-name {
    font-weight: 700; }
  .tax-invoice-container .tax-net-weight {
    font-weight: 700;
    font-size: 12px; }
  .tax-invoice-container .tax-netweight {
    font-weight: 400;
    font-size: 12px; }

.bankdetail {
  line-height: 20px; }

.tax-detail-card {
  max-width: 1200px; }

.tax-detail-card-body {
  padding: 30px 60px; }

.back-logo {
  position: absolute;
  top: 35%;
  left: 150px; }

.proforma-detail-page {
  position: relative; }
  .proforma-detail-page .proforma-proforma {
    font-size: 32px;
    font-weight: 800;
    color: #212529; }
  .proforma-detail-page .proforma-invoice {
    font-size: 32px;
    font-weight: 600; }
  .proforma-detail-page .proforma-to {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .proforma-detail-page .proforma-too {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .proforma-detail-page .proforma-table {
    background-color: #0d58c1;
    color: #fff; }
  .proforma-detail-page .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .proforma-detail-page .proforma-table-border {
    border-color: #e9ecef;
    margin-bottom: 50px; }
    .proforma-detail-page .proforma-table-border td,
    .proforma-detail-page .proforma-table-border th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .proforma-detail-page .companystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .purcompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #f25c54;
    font-weight: 700; }
  .proforma-detail-page .proformacompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformaDetailscompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformaDetailsMicohr {
    border: none;
    border-top: 1.5px solid #0d58c1;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .proforma-detail-page .proformaDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformavl {
    border-left: 1px solid #adb5bd;
    height: 30px; }
  .proforma-detail-page .proforma-computer {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #495057; }
  .proforma-detail-page .proforma-detail-invoice-footer {
    font-size: 10px;
    font-weight: 500; }
  .proforma-detail-page .proforma-quote {
    font-size: 12px;
    width: 50%;
    font-weight: 700;
    color: #fff; }
    .proforma-detail-page .proforma-quote.cal-section {
      width: 82% !important; }
    .proforma-detail-page .proforma-quote.certificate-analysis {
      width: 60%; }
  .proforma-detail-page .proforma-quotes {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    width: 55%; }
    .proforma-detail-page .proforma-quotes.cal-section {
      width: 45% !important; }
  .proforma-detail-page .proforma-proforma-invoice {
    margin-top: 30px;
    margin-bottom: 30px; }
  .proforma-detail-page .proforma-table-head {
    margin-top: 30px; }
    .proforma-detail-page .proforma-table-head td,
    .proforma-detail-page .proforma-table-head th {
      padding: 10px;
      font-weight: 100; }
    .proforma-detail-page .proforma-table-head th {
      background-color: #0d58c1; }
  .proforma-detail-page .proforma-quote-proforma {
    margin-top: 30px; }
  .proforma-detail-page .proforma-amt {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    margin-top: 20px; }
  .proforma-detail-page .proforma-amt-words {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd; }
  .proforma-detail-page .proforma-net-weight {
    font-weight: 700;
    font-size: 12px; }
  .proforma-detail-page .proforma-net-hscode {
    font-weight: 400;
    font-size: 12px;
    color: #adb5bd; }

.proforma-detail-card {
  max-width: 1200px; }
  .proforma-detail-card.certificate-analysis {
    min-height: 297mm; }

.proforma-detail-card-body {
  padding: 30px 60px; }

.detail-button-pdf {
  width: 100px;
  height: 30px;
  background-color: #0d58c1;
  color: #fff;
  margin-left: 85%;
  border-radius: 5px; }

.popup-lpo {
  font-size: 16px;
  font-weight: 600; }

.popup-title input {
  color: #f25c54; }

.popup-cancel {
  background: #f25c54;
  border-radius: 5px;
  color: #fff; }

.other-charge-section {
  margin-bottom: 10px; }

.quotation-details {
  position: relative; }
  .quotation-details .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .quotation-details .table-striped td,
  .quotation-details .table-striped th {
    padding: 10px;
    font-weight: 100; }
  .quotation-details .table-striped th {
    background-color: #0d58c1; }
  .quotation-details .quotation-title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 0px;
    color: #212529; }
  .quotation-details .table {
    --bs-table-striped-bg: #f0f7fb; }
  .quotation-details .quotation-detail-names {
    font-weight: 700;
    color: #fff; }
  .quotation-details .quotation-class-number {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    width: 100%;
    text-align: left; }
  .quotation-details .quotation-class-number-right {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: right;
    line-height: 22px; }
  .quotation-details .quotation-class-number-left {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: left;
    line-height: 22px; }
  .quotation-details .quotation-font-color {
    color: #000000;
    margin-bottom: 0px;
    line-height: 20px;
    color: #212529; }
  .quotation-details .fr {
    align-items: right;
    text-align: right; }
  .quotation-details .quotation-detail-table-value {
    font-weight: 700;
    color: #000000; }
  .quotation-details .quotation-detail-name {
    margin-bottom: 0px;
    line-height: 20px;
    font-weight: 700;
    color: #fff; }
    .quotation-details .quotation-detail-name.quotation-detail-width {
      width: 100%; }
  .quotation-details span.quotation-detail-name {
    text-align: right; }
  .quotation-details .quotation-data {
    font-weight: 600;
    color: #fff; }
  .quotation-details .quotation-sign-right {
    font-weight: 700;
    float: right;
    color: #fff; }
  .quotation-details .quotation-sign-left {
    font-weight: 700;
    float: left;
    color: #fff; }
  .quotation-details .quotation-detail-table {
    background: #0d58c1;
    color: #fff; }
  .quotation-details .quotation-amount {
    font-weight: 600;
    color: #fff; }
  .quotation-details .companystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .quotation-details .QuotationDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .quotation-details .quotation-computer-bill {
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    margin-top: 40px; }
  .quotation-details .quotationvl {
    border-left: 1px solid #adb5bd;
    height: 40px; }
  .quotation-details .quotation-electric {
    font-size: 10px;
    font-weight: 500;
    color: #fff; }
  .quotation-details .ta {
    text-align: center; }
  .quotation-details .textb {
    font-weight: bold; }
  .quotation-details .for-left-side {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    line-height: 22px; }
  .quotation-details .quotation-class-number-left {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: left;
    line-height: 22px; }
  .quotation-details .invoice-electric {
    font-size: 10px;
    font-weight: 500;
    color: #fff; }
  .quotation-details .quotation-right {
    margin-bottom: 50px; }
  .quotation-details .quotation-footer {
    margin-top: 30px; }
  .quotation-details .quotation-sub-total {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    width: 60%;
    margin-top: 5px; }
  .quotation-details .quotation-sub-total-shipping {
    margin-right: 4%;
    margin-bottom: 0px;
    font-weight: 700;
    width: 40%;
    text-align: right;
    color: #212529; }
  .quotation-details .quotation-sub-totals {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-right: 12px;
    text-align: right;
    width: 40%; }
  .quotation-details .quotation-sub-total-net {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    width: 60%;
    color: #fff; }
  .quotation-details .quotation-ten-amount {
    font-size: 12px;
    font-weight: 400; }
  .quotation-details .quotation-ten-amount p {
    margin: 0; }
  .quotation-details .quotation-sub-totals-net {
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    color: #fff;
    width: 40%; }
  .quotation-details .quotation-footer-terms {
    margin-bottom: 40px; }
  .quotation-details .table {
    margin-top: 0px !important; }

.quotation-detail-card {
  max-width: 1200px; }

.quotation-detail-card-body {
  padding: 30px 60px; }

.term-condition {
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; }

.term-condition-custom-tab {
  width: 98%;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  color: #000000;
  line-height: 30px;
  margin-bottom: 20px; }

.form-label {
  font-size: 14px;
  font-weight: 400; }

.rdw-editor-toolbar {
  margin-bottom: 0px !important; }

.rdw-editor-toolbar {
  padding: 5px 10px 0px;
  border-radius: 0px 0px 5px 5px;
  font-size: 0px;
  border: none !important; }

.rdw-option-wrapper,
.rdw-dropdown-wrapper {
  border: none; }
  .rdw-option-wrapper img,
  .rdw-dropdown-wrapper img {
    width: 11px; }
  .rdw-option-wrapper .rdw-dropdown-optionwrapper,
  .rdw-option-wrapper .rdw-dropdown-selectedtext,
  .rdw-dropdown-wrapper .rdw-dropdown-optionwrapper,
  .rdw-dropdown-wrapper .rdw-dropdown-selectedtext {
    font-size: 11px; }

.rdw-editor-wrapper {
  display: flex;
  flex-direction: column-reverse; }

.rdw-editor-main {
  height: auto !important;
  padding: 0px 20px 20px;
  border-radius: 5px 5px 0px 0px;
  border: none !important;
  font-size: 12px;
  color: #adb5bd; }
  .rdw-editor-main::-webkit-scrollbar {
    width: 6px; }
  .rdw-editor-main::-webkit-scrollbar-track:hover {
    border-radius: 10px; }
  .rdw-editor-main:hover::-webkit-scrollbar-thumb {
    background: #8697b0;
    border-radius: 10px; }

.edit-customer-footer-button {
  margin-right: 9%; }

.edit-customer-quotation-primary-label {
  margin-left: 10px;
  font-weight: 400;
  font-size: 12px;
  color: #0d58c1; }

.view-customer-detail-page .col-sm-12 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px; }

.view-customer-detail-page .active-button {
  border-radius: 20px;
  color: #fff; }

.view-customer-detail-page .title {
  font-size: 12px;
  font-weight: 400; }

.view-customer-detail-page .value {
  font-size: 14px;
  font-weight: 600; }

.view-customer-detail-page .bank-detail-card {
  background-color: #caeee7;
  line-height: 19px; }
  .view-customer-detail-page .bank-detail-card .title {
    font-size: 14px;
    font-weight: 400;
    color: #495057; }
  .view-customer-detail-page .bank-detail-card .value {
    font-size: 14px;
    font-weight: 700;
    color: #495057; }

.view-customer-detail-page .enquiry-card {
  background-color: #f4d6d5;
  line-height: 19px; }
  .view-customer-detail-page .enquiry-card .title {
    font-size: 14px;
    font-weight: 400;
    color: #495057; }
  .view-customer-detail-page .enquiry-card .value {
    font-size: 14px;
    font-weight: 700;
    color: #495057; }
  .view-customer-detail-page .enquiry-card .view-customer-pending-amt {
    font-size: 14px;
    font-weight: 400;
    color: #f25c54; }
  .view-customer-detail-page .enquiry-card .view-customer-pending-amt-value {
    font-size: 14px;
    font-weight: 700;
    color: #f25c54; }
  .view-customer-detail-page .enquiry-card .view-hr {
    color: #fff; }
  .view-customer-detail-page .enquiry-card .view-customer-invoice-value {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    margin-left: 12px; }
  .view-customer-detail-page .enquiry-card .view-coustomer-invoice-title {
    padding: 5px;
    margin-bottom: 15px; }

.edit-quotation-total-details {
  height: 35px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 2px;
  padding: 7px; }

.label-lpo-no {
  font-weight: 600;
  font-size: 14px; }

#ev-form {
  padding: 20px; }

.add-purchase-cancel-title {
  font-weight: 600;
  font-size: 16px;
  color: #fff; }

.purchase-edit-purchase .edit-purchase-sub-total {
  margin-top: 5%; }

.purchase-edit-purchase .edit-supplier-close-save {
  margin-left: 15px; }

.purchase-edit-purchase .purchase-footer {
  margin-left: 15px; }

.purchase-edit-purchase .saveSubmit {
  margin-left: 25px; }

.purchase-edit-purchase .purchase-bill .form-label {
  margin-left: 14px; }

.first-cell {
  font-weight: 800; }

.category-edit-category-button {
  float: left;
  margin-left: 33%;
  margin-top: 2%; }

.edit-category-close-button {
  margin-left: 15px; }

.edit-customer-check-box-primary {
  margin-bottom: -16px; }

.form-check-input {
  color: #0d58c1; }

.edit-quotation-shipping-charge {
  margin-left: -11px; }

.quotation-button-save-pdf {
  width: 100px;
  height: 30px;
  color: #fff;
  background-color: #0d58c1;
  float: right;
  margin-right: 84px;
  border: none;
  border-radius: 5px;
  margin-bottom: 34px;
  margin-top: 20px; }

.custom-search-box {
  background: #ffffff url(/images/icons-search.svg?09c6581af29dbcc272396f5c91ea20be) no-repeat scroll 18px 10px;
  padding-left: 43px; }
  .custom-search-box::placeholder {
    color: rgba(13, 88, 193, 0.5) !important; }
  .custom-search-box:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(13, 88, 193, 0.5) !important; }
  .custom-search-box::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(13, 88, 193, 0.5) !important; }

.f-text-right {
  text-align: right; }

.edit-supplier-primary {
  font-weight: 400;
  font-size: 12px;
  color: #adb5bd;
  margin-top: 2px;
  margin-left: 8px; }

.parent-edit-supplier-primary {
  color: #0d58c1;
  font-weight: 400;
  font-size: 14px;
  margin-top: 4px;
  margin-left: 8px; }

.form-check-input:checked + .edit-supplier-primary {
  color: #585c5f !important; }

.edit-supplier-check-box {
  margin-bottom: -16px; }

.edit-supplier-close-save {
  margin-bottom: 10px;
  margin-right: 33%;
  margin-top: 10px;
  margin-left: 15px; }

.saveSubmit {
  width: 100px;
  height: 33px; }

.supplier-details-title {
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  margin-bottom: 30px;
  margin-top: 30px; }

.view-minheight {
  line-height: 19px;
  min-height: 420px; }

.credit-period-footer-button {
  margin-left: 17%; }

.credit-period-footer-cancel {
  margin-left: 15px; }

.settings-general-index .header-profile-user {
  height: 36px !important;
  width: 35px !important;
  padding: 3px;
  margin-bottom: 30px;
  margin-right: 55px; }

.settings-general-index .general-cancel-button {
  width: 110px;
  background: #d51920;
  border-radius: 5px;
  margin-left: 35px; }

.settings-general-index .general-save-button {
  width: 110px;
  background: #0d58c1;
  border-radius: 5px; }

.settings-general-index .general-button-footer {
  margin-right: 27px;
  margin-bottom: 20px; }

.edit-tax-head .edit-tax-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-tax-head .switch-button {
  margin-top: 7px; }

.edit-tax-head .tax-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-tax-head .tax-cancel-button {
  margin-left: 20px;
  background: #d51920;
  border-radius: 5px; }

.edit-tax-head .tax-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-country-head .edit-country-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-country-head .country-cancel-button {
  margin-left: 20px;
  width: 25%;
  background: #d51920;
  border-radius: 5px; }

.edit-country-head .country-save-button {
  background: #0d58c1;
  border-radius: 5px;
  width: 25%; }

.edit-country-head .edit-country-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-country-head .header-profile-user {
  height: 45px !important;
  width: 45px !important; }

.edit-country-head .country-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-country-head .switch-button {
  margin-top: 7px; }

.edit-currency-head .edit-currency-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-currency-head .currency-cancel-button {
  margin-left: 20px;
  background: #d51920;
  border-radius: 5px; }

.edit-currency-head .currency-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-currency-head .edit-currency-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-currency-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-currency-head .currency-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-currency-head .switch-button {
  margin-top: 7px; }

.edit-payment-head .edit-payment-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-payment-head .payment-cancel-button {
  margin-left: 20px;
  width: 19%;
  background: #d51920;
  border-radius: 5px; }

.edit-payment-head .payment-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-payment-head .edit-payment-footer-button {
  margin-left: 33%;
  margin-top: 15px; }

.edit-payment-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-payment-head .payment-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-payment-head .switch-button {
  margin-top: 7px; }

.edit-payment-head .edit-payment-footer {
  margin-left: 33%;
  margin-top: 25px; }

.edit-payment-head .edit-payment-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-payment-head .edit-payment-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-desigination-head .edit-desigination-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-desigination-head .desigination-cancel-button {
  margin-left: 20px;
  width: 10%;
  background: #d51920;
  border-radius: 5px; }

.edit-desigination-head .desigination-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-desigination-head .edit-desigination-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-desigination-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-desigination-head .desigination-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-desigination-head .switch-button {
  margin-top: 7px; }

.edit-department-head .edit-department-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-department-head .department-cancel-button {
  margin-left: 20px;
  width: 10%;
  background: #d51920;
  border-radius: 5px; }

.edit-department-head .department-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-department-head .edit-department-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-department-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-department-head .department-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-department-head .switch-button {
  margin-top: 7px; }

.edit-credit-head .edit-credit-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-credit-head .edit-credit-footer-cancel {
  margin-left: 20px;
  width: 21%;
  background: #d51920;
  border-radius: 5px; }

.edit-credit-head .credit-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-credit-head .credit-period-footer-cancel {
  background: #d51920;
  border-radius: 5px; }

.edit-credit-head .credit-period-footer-button {
  margin-left: 16%;
  margin-top: 15px; }

.edit-credit-head .header-profile-user {
  margin-left: 20px; }

.edit-credit-head .credit-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-credit-head .tax-status {
  margin-left: 20%; }

.edit-credit-head .switch-button {
  margin-top: 7px; }

.add-customer-main-page .edit-customer-quotation-primary-label {
  margin-top: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #adb5bd; }

.add-customer-main-page .header-profile-user {
  margin-left: 35px; }

.add-customer-main-page .form-check-input {
  border: 1px solid #adb5bd; }

.add-customer-main-page .tax-status {
  margin-left: 77px; }

.add-customer-main-page .customer-back-button {
  margin-left: 20px;
  width: 100px; }

.add-customer-main-page .customer-save-button {
  width: 100px; }

.add-customer-main-page .customHeading {
  font-weight: 600;
  font-size: 14px;
  color: #212529;
  margin-top: 36px; }

.add-customer-main-page .edit-customer-footer-button {
  margin-right: 82px;
  margin-top: 10px; }

.edit-supplier-page .header-profile-user {
  margin-right: 68px;
  margin-bottom: 20px; }

.edit-supplier-page .supplier-status {
  margin-right: 10px; }

.edit-supplier-page .supplier-image {
  margin-left: 34px; }

.edit-supplier-page .supplier-bottom-page {
  margin-right: 50px;
  margin-top: 20px;
  margin-bottom: 20px; }

.edit-supplier-page .supplier-cancel-button {
  margin-left: 24px;
  width: 100px;
  background: #d51920;
  border-radius: 5px; }

.edit-supplier-page .supplier-save-button {
  width: 100px;
  background: #0d58c1;
  border-radius: 5px; }

.product-title-page .product-footer-page {
  margin-left: 221px; }

.product-title-page .product-cancel-button {
  margin-left: 22px;
  width: 115px; }

.product-title-page .footer-edit-product {
  margin-top: 20px; }

.account-detail-head .account-table {
  text-align: center;
  background: #c4e0f9; }
  .account-detail-head .account-table th {
    background: #c4e0f9;
    padding-top: 13px;
    padding-bottom: 13px; }
    .account-detail-head .account-table th:first-child {
      border-radius: 10px 0px 0px 0px; }
    .account-detail-head .account-table th:last-child {
      border-radius: 0px 10px 0px 0px; }

.account-detail-head .docLabel {
  margin-top: 7px; }
  .account-detail-head .docLabel .bg-grey {
    background: #e9ecef !important;
    color: #fff !important;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px !important;
    padding: 4px 10px; }

.account-detail-head .no-data-found {
  padding: 15px;
  border-bottom: 1px solid #f4f0f1;
  border-top: 1px solid #f4f0f1; }

.account-detail-head .detail-data {
  text-align: center; }
  .account-detail-head .detail-data td {
    border-bottom: 1px solid #e9ecef; }
  .account-detail-head .detail-data:last-child td {
    border: none; }

.proforma-edit-total {
  padding: 9px;
  background-color: #fff;
  border-radius: 5px; }

.proforma-edit-form .form-label {
  margin-left: 10px; }

.proforma-edit-form .payable {
  font-size: 12px;
  font-weight: 600;
  color: #212529; }

.proforma-edit-form .proforma-edit-footer {
  margin-right: 32%; }

.proforma-edit-form .bottom-save-button {
  margin-right: 20px; }

.edit-department-header-page .settings-department-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-department-header-page .tax-status {
  margin-left: 20%; }

.edit-department-header-page .settings-department-close-button {
  margin-left: 1%;
  background: #d51920;
  border-radius: 5px; }

.edit-department-header-page .header-profile-user {
  margin-left: 20px; }

.edit-department-header-page .edit-department-footer-button-design {
  margin-top: 10px;
  margin-left: 15%; }

.settings-desigination-edit .settings-desigination-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.settings-desigination-edit .settings-desigination-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.settings-desigination-edit .settings-desigination-footer-button {
  margin-left: 16%;
  margin-top: 10px; }

.settings-desigination-edit .header-profile-user {
  margin-left: 30px; }

.settings-desigination-edit .tax-status {
  margin-left: 20%; }

.edit-tax-header-section .edit-footer-tax {
  margin-top: 10px;
  margin-left: 15%; }

.edit-tax-header-section .tax-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-tax-header-section .tax-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-tax-header-section .tax-switch-button {
  margin-left: 10%; }

.edit-currency-page .currency-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-currency-page .currency-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-currency-page .currency-footer-button {
  margin-top: 10px;
  margin-left: 15%; }

.edit-currency-page .currency-switch-button {
  margin-left: 10%; }

.edit-countery-head .edit-country-footer {
  margin-top: 10px;
  margin-left: 14%; }

.edit-countery-head .country-cancel-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 5%; }

.edit-countery-head .country-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-countery-head .header-profile-user {
  margin-left: 23px; }

.edit-countery-head .tax-status {
  margin-left: 25%; }

.term-and-condition-header .nav-link.active {
  background-color: #c4e0f9;
  border-radius: 5px;
  color: #212529; }

.term-and-condition-header .nav-link {
  color: #212529;
  margin-top: 10px; }

.term-and-condition-header .tandc-footer-button {
  margin-bottom: 30%; }

.term-and-condition-header .edit-footer-termandcondition {
  margin-top: 15%;
  margin-left: 25px; }

.term-and-condition-header .tac-save-button {
  margin-right: 3%;
  background: #0d58c1;
  border-radius: 5px; }

.term-and-condition-header .tac-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.term-and-condition-header .rdw-editor-main {
  height: 270px; }

.term-and-condition-header .header-profile-user {
  margin-left: 5%;
  margin-bottom: 5%; }

.edit-payment-head .edit-payment-save-button {
  background: #0d58c1;
  border-radius: 5px;
  margin-left: 5%; }

.edit-payment-head .edit-payment-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.intro-pre-head .intro-footer-button {
  margin-top: 20px;
  margin-left: 38%; }

.intro-pre-head .intro-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.intro-pre-head .intro-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.intro-pre-head .intro-form-section {
  margin-top: 20px; }

.cat-header .cat-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.cat-header .cat-close-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 5%; }

.cat-header .cat-footer-section {
  margin-left: 29%;
  margin-top: 20px; }

.cat-header .cat-toggle {
  display: flex; }

.cat-header .tax-status {
  margin-right: 25px; }

.cat-header .tax-switch-button {
  margin-left: 30px; }

.product-header .product-status {
  margin-right: 25px; }

.product-header .pro-toggle {
  display: flex; }

.product-header .product-switch-button {
  margin-left: 30px; }

.product-header .footer-edit-product {
  margin-left: 33%;
  margin-top: 20px; }

.product-header .product-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.product-header .product-cancel-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 2%; }

.product-header .product-footer-section {
  margin-left: 15%;
  margin-top: 10px; }

.settings-general-head .setting-general {
  margin-right: 2%;
  margin-top: 2%; }

.settings-general-head .header-profile-user {
  margin-right: 8%;
  margin-bottom: 3%; }

.settings-general-head .css-1s2u09g-control {
  border: none;
  font-family: Open Sans; }

.quotation-head .footer-value .form-control {
  width: 50%;
  text-align: center; }

.quotation-head .footer-value .form-label {
  margin-left: 37px; }

.quotation-head .footer-value .quotation-footer {
  margin-top: 20px;
  margin-left: 8%; }

.report-head .approved {
  font-size: 12px;
  font-weight: 600; }

.report-head .customer-form {
  margin-top: 52px; }

.report-head .report-save-button {
  margin-right: 3%;
  margin-top: 1%; }

.reportpdf-head .sales {
  font-size: 32px;
  font-weight: 700; }

.reportpdf-head .report {
  font-size: 32px;
  font-weight: 600; }

.reportpdf-head .report-state {
  margin-top: 4%;
  margin-bottom: 2%; }

.reportpdf-head .py-2 {
  min-height: 300px; }

.reportpdf-head .quotation-detail-card-body {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px;
  padding-bottom: 5px; }

.report-detail-pdf .report-save-button {
  margin-left: 54%; }

.statement-head .quotation-detail-table {
  background-color: #a8d3ff;
  border-radius: 5px; }

.statement-head .table {
  margin-top: 0px; }

.statement-head .table-responsive {
  border-radius: 20px 20px 0 0; }

.statement-head .py-2 {
  min-height: 400px; }

.statement-approved {
  margin-left: 78%;
  margin-bottom: 10%;
  font-weight: 600; }

.statement-pdf-statement {
  margin-top: 6%;
  margin-bottom: 2%; }

.tax-filter-head .tax-name {
  margin-bottom: 15px; }

.currency-filter-head .currency-filter {
  margin-bottom: 20px; }

.payment-filter-head .filter-buttons {
  position: fixed;
  right: 44px;
  bottom: 20px; }

.payment-filter-head .btn-secondary {
  margin-right: 20px; }

.edit-customer-head .edit-customer-bottom {
  margin-right: 9%;
  margin-top: 1%; }

.w-15 {
  width: 15%; }

.h-90 {
  height: 90px; }

.pr-40 {
  padding-right: 40px; }

.pr-5 {
  padding-right: 5px; }

.proforma-detail-page .tax-net-weight {
  font-weight: 700 !important;
  font-size: 12px !important; }

.quotation-details .table-striped th {
  background-color: #d51920; }

.quotation-details .companystyle {
  color: #d51920; }

.quotation-details .table-striped td,
.quotation-details .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.quotation-details .quotation-footer-terms {
  margin-bottom: 0px; }

.tt {
  text-transform: capitalize; }

.purchase-details .table-striped th {
  background-color: #d51920; }

.purchase-detail-page .table-striped th {
  background-color: #d51920; }

.purchase-details .companystyle {
  color: #d51920; }

.purchase-details .QuotationDetailsMicohr {
  background: url(/images/footer-line.svg?4a0781b5b642bd2dc78025cabfcd9c8e) no-repeat;
  background-size: 750px;
  height: 15px; }

.purchase-detail-page .table-striped td,
.purchase-detail-page .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.purchase-detail-page .purchaseDetailsMicohr:after {
  background: #fff;
  padding: 0 4px;
  position: relative;
  top: -15px;
  font-size: 18px;
  color: #d51920;
  font-weight: 700; }

.purchase-detail-page .purchaseDetailsMicohr {
  border: none;
  border-top: 1.5px solid #d51920;
  color: #333;
  overflow: visible;
  height: 5px;
  opacity: 1; }

.purchasecompanystyle {
  padding: 0 4px;
  position: relative;
  top: -5px;
  font-size: 18px;
  color: #0d58c1;
  font-weight: 700; }

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

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

.oemcol-1 {
  display: none; }

.pad0 {
  padding: 0 !important; }

.tax-invoice-container .table-striped td .tax-invoice-container .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.tax-invoice-container .table-striped th {
  background-color: #d51920; }

.tax-invoice-container .invoicecompanystyle {
  padding: 0 4px;
  position: relative;
  top: -5px;
  font-size: 18px;
  color: #d51920;
  font-weight: 700; }

.input-border .form-control {
  border: 1px solid #e9ecef;
  width: 80px;
  display: inline; }

.card_height {
  height: 120px; }

.justification-end {
  display: flex;
  justify-content: flex-end; }

.justification-center {
  display: flex;
  justify-content: center; }

.aternative-row:nth-of-type(2n - 1) {
  background: #ffffff; }

.customBorder {
  border-bottom: solid #cbcbcb 0.2px; }

.producthrstyle {
  border-top: 1px solid #ccd0d6; }

.producthrstyle:after {
  background: #383838;
  content: "Stock Details\00a0\00a0\00a0\00a0";
  padding: 0 4px;
  position: relative;
  top: -15px;
  font-size: 18px;
  color: #234066;
  font-weight: 700; }

.productviewheading {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700; }

.edit-credit-footer-cancel .productcardheader {
  background-color: #0e4d86; }

.productcardbg {
  background-color: #f3f6f9; }

.projectcardbg {
  background-color: #f3f6f9;
  height: 80px;
  padding: 10px 10px; }

.align-center {
  display: flex;
  align-items: center; }

.fw-weight-550 {
  font-weight: 550; }

.fw-weight-500 {
  font-weight: 500; }

.custom-border-color {
  border-color: #779bbb !important; }

.custom-input {
  background: #e3ebf1 !important; }

.inner-container {
  background-color: #dde6ee; }

.tag-title {
  color: #0e4d86; }

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  transition: width 0.5s ease-in-out;
  /* Transition on width property */
  padding-top: 90px; }

.sidenav .side-content {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 24px;
  color: #333;
  transition: 0.3s; }

.element {
  position: relative; }

.element::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 0;
  padding: 5px;
  background-color: #ffb500;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease; }

.element:hover::before {
  opacity: 1;
  visibility: visible;
  width: 200px; }

.profile-background {
  border-bottom: 1px solid #f4f0f1; }

.tablinks {
  color: black;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer; }

.tablinks.active {
  background-color: #0e4d86;
  color: white; }

.tabcontent {
  display: none;
  padding: 15px; }

.tabcontent.active {
  display: block; }

.emp-tittle-color {
  color: #0e4d86; }

.custom-tab-pane.active {
  background-color: #333; }

.projectinvcard {
  height: 40px;
  background-color: #eff0f2;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 10px;
  padding: 7px; }

.active.customColor {
  border-bottom: 2px solid #d51920;
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: center; }

.customColor {
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  text-align: center; }

.active.text {
  color: #222; }

.payment-term-total {
  background-color: #e1e9ef;
  padding-top: 15px;
  border-radius: 10px; }

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

.text-grey-700 {
  color: #495057; }

.flexDisplay {
  display: flex; }

.first-cell {
  color: #212529 !important;
  font-weight: 400 !important; }

.blue-text {
  color: #d51920; }
  .blue-text.downloadable-file {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }

.font-size-10 {
  font-size: 10px; }

.font-size-12 {
  font-size: 12px; }

.font-size-14 {
  font-size: 14px; }

.font-size-24 {
  font-size: 24px; }

.font-size-28 {
  font-size: 28px; }

.btn-blue,
.btn-blue:active {
  background: #d51920 !important; }

.add-dropdown,
.profile-dropdown {
  width: max-content;
  box-shadow: 0px 4px 20px rgba(13, 88, 193, 0.25); }
  .add-dropdown .submenu,
  .profile-dropdown .submenu {
    color: #d51920; }

.dashboard-container .chart-head {
  position: absolute;
  top: 22px;
  left: 25px;
  font-size: 16px;
  font-weight: 700; }
  .dashboard-container .chart-head.donut {
    top: 15px;
    left: 15px; }

.dashboard-container .sales-chart .apexcharts-legend.apx-legend-position-top {
  right: 28px !important;
  top: 0px !important;
  left: unset !important; }

.dashboard-container .total-profit-wrapper {
  height: 330px; }

.dashboard-container .due-solid-border {
  border-bottom: 1px solid #e4e4e4;
  margin: 10px -13px 4px; }

.dashboard-container .bottom-wrapper {
  height: 199px; }

.dashboard-container .invoice-text {
  color: #5b5b5b; }

.dashboard-container .due-border {
  border-bottom: 1px dashed #e4e4e4; }
  .dashboard-container .due-border .due-date {
    color: #5b5b5b; }

.dashboard-container .filter-border {
  border: 1px solid #e9e9ea;
  border-radius: 50px;
  padding: 4px 10px; }

.dashboard-container .most-selling .apexcharts-legend-marker {
  margin-right: 10px;
  float: left; }

.dashboard-container .most-selling .apexcharts-canvas text {
  fill: #2a2a2a !important;
  font-weight: 600;
  font-size: 13px; }

.dashboard-container .most-selling .seriesWrapper {
  width: 135px;
  float: left; }
  .dashboard-container .most-selling .seriesWrapper .seriesLabel {
    width: 70%;
    float: left;
    margin-top: -4px; }
  .dashboard-container .most-selling .seriesWrapper .seriesValue {
    color: #212529;
    font-size: 14px;
    font-weight: 600;
    float: left;
    margin-top: -4px; }

.dashboard-container .most-selling .apexcharts-tooltip-title,
.dashboard-container .most-selling .apexcharts-tooltip-text {
  color: #ffffff;
  font-size: 12px; }

.notfound-conatainer .notfound-wrapper {
  display: flex;
  align-items: center;
  justify-content: center; }

.notfound-conatainer .notfound-left {
  max-width: 70%; }

.notfound-conatainer .notfound-title {
  font-size: 120px;
  color: #d51920 !important;
  line-height: 120px; }

.notfound-conatainer .notfound-sub-title {
  font-size: 40px; }

.notfound-conatainer .notfound-desc {
  font-size: 18px;
  color: #495057 !important; }

.notfound-conatainer .notfound-button {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 700; }

.download-container {
  display: flex;
  justify-content: center; }

.highlight-background {
  background: #ffffff !important; }

.card-pad {
  padding: 0.8rem !important; }

.pad12 {
  padding: 12px; }

.white {
  color: #ffffff !important; }

.white-bg {
  background: #ffffff !important; }

.primary-bg {
  background: #d51920 !important; }

.login-background {
  background: url(/images/sign-in-mask.png?befe99fe3c52ba8c63667cb00fb81084);
  height: 100vh;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; }

.logintxt {
  color: var(--text, #222);
  font-family: Uber Move;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; }

.footer {
  background: #ffffff;
  margin-top: 20px; }

.table-responsive {
  -webkit-overflow-scrolling: touch; }

#layout-wrapper #page-topbar {
  box-shadow: none !important; }

#layout-wrapper .vertical-menu {
  box-shadow: none !important; }
  #layout-wrapper .vertical-menu .navbar-brand-box {
    background-color: #ffffff;
    box-shadow: none !important; }

.sidebar-logo {
  margin-top: 10px; }

.vertical-collpsed .contact-wrapper {
  display: none !important; }

.side-menu-icon {
  background-repeat: no-repeat;
  background-size: 18px 18px;
  width: 20px;
  height: 30px;
  margin-right: 10px;
  background-position: center; }

.modal .invalid-feedback {
  color: #f25c54; }

.modal .form-control {
  color: #212529;
  border: 1px solid #d51920;
  border-radius: 5px; }
  .modal .form-control.is-invalid {
    border-color: #d51920; }
  .modal .form-control::placeholder {
    color: #8a9197; }
  .modal .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8a9197; }
  .modal .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #8a9197; }

.elevate-dropdown .react-select__control {
  border: none; }

.elevate-dropdown .react-select__indicator-separator {
  background-color: #ffffff; }

.elevate-dropdown .react-select__placeholder {
  color: #8a9197;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px; }

.elevate-dropdown .react-select__value-container {
  font-size: 12px; }

.elevate-dropdown .react-select__indicator {
  color: #adb5bd; }

.flatpickr-months .flatpickr-month,
.flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #d51920;
  color: #ffffff; }

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #d51920; }

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #d51920; }

span.flatpickr-weekday,
.flatpickr-weekdays {
  background: #d51920; }

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #d51920;
  border-color: #d51920;
  color: #ffffff; }

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n + 1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n + 1)) {
  box-shadow: -10px 0 0 #d51920; }

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #d51920, 5px 0 0 #d51920; }

.flatpickr-day.inRange {
  background: #fef7f4;
  box-shadow: -5px 0 0 #fef7f4, 5px 0 0 #fef7f4;
  border-color: #fef7f4; }

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background: #ffffff; }

.table {
  border: #ffff;
  margin-top: -10px; }
  .table th {
    font-size: 14px; }

.card {
  border-radius: 0.5rem; }

.page-content {
  /*.dashboard-report{
        .card{
            border-radius: .50rem;
            box-shadow: 1px 15px 30px #FBE1D4;
            &:hover {
                box-shadow: 1px 15px 30px #F9D2BF;
            }
        }
    }*/ }
  .page-content .role-container tr td:first-child {
    text-transform: capitalize; }
  .page-content .comment-description {
    border-left: 1px dotted lightgrey; }
  .page-content .invalid-feedback {
    color: #f25c54;
    overflow: hidden;
    text-overflow: ellipsis; }
  .page-content .react-bootstrap-table .expand-cell-header,
  .page-content .react-bootstrap-table .expand-cell {
    cursor: pointer; }
  .page-content .react-calendar {
    border: unset;
    min-height: 320px;
    color: #212529; }
    .page-content .react-calendar .react-calendar__navigation button {
      min-width: 30px; }
    .page-content .react-calendar .react-calendar__tile--now {
      border-radius: 50%;
      color: #d51920 !important;
      background: #ffffff; }
    .page-content .react-calendar .react-calendar__tile {
      padding: 7px 5px;
      color: #212529; }
    .page-content .react-calendar .react-calendar__month-view__days__day--neighboringMonth {
      color: hwb(19 58% 4%) !important; }
    .page-content .react-calendar abbr[title] {
      text-decoration: none !important; }
    .page-content .react-calendar .react-calendar__month-view__days__day--weekend {
      color: #d51920; }
    .page-content .react-calendar .react-calendar__tile--active,
    .page-content .react-calendar .react-calendar__tile:enabled:hover {
      border-radius: 50%;
      background: #d51920;
      color: #ffffff !important; }
    .page-content .react-calendar .react-calendar__navigation__arrow {
      color: #d51920; }
  .page-content .right-bar.task-filter {
    z-index: 1009;
    background: #e9f5ff !important; }
    .page-content .right-bar.task-filter .right-bar-toggle,
    .page-content .right-bar.task-filter .right-bar-toggle:hover {
      background-image: url(/images/closebutton.svg?8d40d9c84161f7b8e46c14dd165d2499);
      background-color: unset;
      background-repeat: no-repeat;
      background-size: contain; }
    .page-content .right-bar.task-filter .react-select__placeholder {
      font-size: 12px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    .page-content .right-bar.task-filter .react-select__control {
      border-color: #ffffff;
      background: #ffffff; }
    .page-content .right-bar.task-filter .react-select__single-value {
      color: #d51920; }
    .page-content .right-bar.task-filter .react-select__indicator-separator {
      background-color: #ffffff; }
    .page-content .right-bar.task-filter .react-select__placeholder,
    .page-content .right-bar.task-filter .react-select__indicator {
      color: #dee2e6; }
    .page-content .right-bar.task-filter .form-control {
      background: #ffffff;
      border-color: #ffffff;
      color: #717171; }
      .page-content .right-bar.task-filter .form-control::placeholder {
        font-size: 12px;
        color: #dee2e6; }
      .page-content .right-bar.task-filter .form-control:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        font-size: 12px;
        color: #dee2e6; }
      .page-content .right-bar.task-filter .form-control::-ms-input-placeholder {
        /* Microsoft Edge */
        font-size: 12px;
        color: #dee2e6; }
  .page-content .upload-logo img {
    max-width: 150px;
    max-height: 100px; }
  .page-content .form-label {
    font-size: 12px;
    font-weight: 600; }
  .page-content .form-control {
    color: #212529;
    border: none;
    border-radius: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    padding-top: 14px;
    padding-bottom: 10px; }
    .page-content .form-control.product-texarea {
      padding-top: 14px;
      padding-bottom: 0px;
      line-height: 1; }
    .page-content .form-control.is-invalid {
      border-color: #d51920; }
    .page-content .form-control.date-field.is-invalid + input {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23F25C54'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F25C54' stroke='none'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.235rem) center;
      background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem); }
    .page-content .form-control::placeholder {
      color: #8a9197; }
    .page-content .form-control:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #8a9197; }
    .page-content .form-control::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #8a9197; }
    .page-content .form-control.date-field {
      background-color: #ffffff; }
    .page-content .form-control:disabled {
      background-color: #f2f2f2; }
  .page-content #excel,
  .page-content #pdf,
  .page-content .cloud-upload,
  .page-content .dash-icon {
    padding: 0px 10px;
    border-radius: 10px;
    margin: 0;
    font-size: 1.5em; }
  .page-content .dashboard-icon {
    padding: 4px 20px 12px;
    background-size: auto !important;
    background-repeat: no-repeat !important;
    border-radius: 10px;
    margin: 0;
    font-size: 1.5em; }
  .page-content .total-income {
    background: rgba(243, 155, 155, 0.25);
    background-image: url(/images/income.svg?0f577865103b67d5fad7a2c9da237fad);
    background-position: 9px 10px !important; }
  .page-content .total-expense {
    background: rgba(128, 167, 222, 0.25);
    background-image: url(/images/expense.svg?b8865f2c5d023911e80db9f8560bdd65);
    background-position: 9px 12px !important; }
  .page-content .customer-container {
    background: #ffedec;
    box-shadow: none; }
    .page-content .customer-container .total-customer {
      background: #f4d1cf;
      background-image: url(/images/customer-icon.svg?169975184476e68af9b3415d85c2508b) !important;
      background-position: 50% !important; }
  .page-content .supplier-container {
    background: #ccf2eb;
    box-shadow: none; }
    .page-content .supplier-container .total-supplier {
      background: #b5e3db;
      background-image: url(/images/supplier-icon.svg?85fffb4497f3e150350db7975d9c3952) !important;
      background-position: 50% !important; }
  .page-content .quotation-container {
    background: #e2e9fc;
    box-shadow: none; }
    .page-content .quotation-container .total-quotation {
      background: #ced9f6;
      background-image: url(/images/quote-icon.svg?021db08cb268ba13aaba0b1328dbd27d) !important;
      background-position: 50% !important; }
  .page-content .invoice-container {
    background: #dce3ec;
    box-shadow: none; }
    .page-content .invoice-container .total-invoice {
      background: #b8c0ce;
      background-image: url(/images/invoice-icon.svg?4f0e47e00bc9e62a1c1278925c40fb4d) !important;
      background-position: 50% !important; }
  .page-content .dropzone {
    min-height: unset;
    border: none;
    background: #ffffff;
    border-radius: 5px; }
    .page-content .dropzone .upload-wrapper {
      position: relative;
      min-height: 37px; }
      .page-content .dropzone .upload-wrapper .no-file-label {
        background: #e9ecef;
        border-radius: 50px;
        padding: 0px 10px;
        width: 123px; }
      .page-content .dropzone .upload-wrapper h5, .page-content .dropzone .upload-wrapper .h5 {
        font-size: 1rem; }
      .page-content .dropzone .upload-wrapper .cloud-upload {
        position: absolute;
        right: 0.5rem;
        top: 0.7rem;
        z-index: 1;
        background-image: url(/images/upload.svg?c0783164b7809f3063ecc8b38ca094c0);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px; }
      .page-content .dropzone .upload-wrapper .downloadable-file {
        max-width: 70%;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
  .page-content .table-card-wrapper {
    overflow-x: auto; }
  .page-content .simplebar-scrollbar:before {
    background: #d51920; }
  .page-content .right-bar {
    width: 380px;
    max-width: 100% !important; }
  .page-content .search-wrapper {
    position: relative; }
    .page-content .search-wrapper .serach-icon {
      position: absolute;
      right: 10px;
      top: 9px;
      font-size: 20px; }
    .page-content .search-wrapper .search-input {
      background: #ffffff;
      border: unset; }
      .page-content .search-wrapper .search-input::placeholder {
        color: #d51920;
        opacity: 1;
        /* Firefox */ }
      .page-content .search-wrapper .search-input:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #d51920; }
      .page-content .search-wrapper .search-input::-ms-input-placeholder {
        /* Microsoft Edge */
        color: #d51920; }
  .page-content .pagination .active.page-item .page-link {
    color: #d51920;
    border: 1 px solid #d51920; }
  .page-content .pagination .page-item .page-link {
    border: unset;
    background: inherit; }

.total-wrapper {
  background: #ffffff;
  border-radius: 10px; }
  .total-wrapper .total-divider {
    border-bottom: 1px solid rgba(173, 181, 189, 0.2); }

.notfound-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(113.76deg, #d51920 -0.49%, rgba(233, 103, 41, 0.8) 55.21%); }
  .notfound-container .card {
    border-radius: 50px;
    height: 60vh;
    box-shadow: 10px 20px 25px rgba(0, 0, 0, 0.15); }
    .notfound-container .card .card-body {
      justify-content: center;
      align-items: center;
      display: flex;
      flex-direction: column; }

@media (min-width: 769px) {
  .vertical-collpsed {
    min-height: 500px; } }

.actionButtonAlign {
  display: flex;
  justify-content: space-around; }

.term {
  margin-top: 50px;
  margin-bottom: 10px; }

.terms {
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600; }

.py-6 {
  padding-top: 0.5rem !important;
  padding-bottom: 6rem !important; }

.productDetail {
  margin-top: 30px;
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  margin-bottom: 16px; }

.payable {
  margin-top: 10px; }

.other {
  margin-top: 10px; }

.subTotal {
  margin-top: 25px; }

.vat {
  margin-top: 10px; }

.shippingCharge {
  margin-top: 10px; }

.addButton {
  background-color: #1dd3b0;
  background-image: url(/images/addRow.svg?3fa31b2985fd57524ff7dd921f9c6b9f);
  background-repeat: no-repeat;
  border: none;
  padding: 5px 10px !important;
  width: 22px;
  height: 22px; }

.removeButton {
  background-color: #f25c54;
  background-image: url(/images/removeRow.svg?a01f09ae26a6991f9e3c5e8eedbf01b3);
  background-repeat: no-repeat;
  border: none;
  padding: 5px 10px !important;
  width: 22px;
  height: 22px; }

.editorClassName {
  height: 100px;
  background-color: #fff; }

.expenseDetail {
  background-color: #fff;
  margin: 5px;
  padding: 30px;
  border-radius: 8px; }

.supplierDetailTitle {
  margin-bottom: 30px; }

.CustomerFirstSection {
  background-color: #fff;
  border-radius: 20px;
  margin: 5px;
  padding: 25px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.customDetails {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px; }

.CustomerSecondSection {
  background-color: #1dd3b0; }

.pass {
  top: 17px;
  position: absolute;
  right: 20px; }

.accountdetails {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px; }

.supplierdetails {
  font-size: 20px;
  font-weight: 600;
  color: #0d58c1;
  margin-top: 15px;
  margin-left: 20px; }

.filenames {
  width: 90px;
  height: 23px;
  background-color: #c5d6f0;
  border-radius: 30px;
  text-align: center; }

.iconlist {
  display: flex; }

.icondown {
  margin-left: 20px; }

.totalQuotation {
  background-color: #f4d6d5;
  border-radius: 20px;
  padding: 20px;
  margin: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px; }

.totalinvoice {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: #caeee7;
  border-radius: 20px;
  padding: 20px;
  margin: 5px; }

.nav-link {
  color: #0d58c1;
  cursor: pointer; }

.detailActive {
  width: 100px;
  height: 27px;
  background-color: #1dd3b0;
  color: #fff;
  border-radius: 50px;
  text-align: center; }

.mico-table {
  border-collapse: separate;
  border-spacing: 0 1em; }
  .mico-table thead th {
    color: #d51920; }
  .mico-table .table-header__no-accessor,
  .mico-table .table-header__name {
    color: #d51920;
    font-size: 14px; }
  .mico-table .mico-row {
    background: #ffffff; }
    .mico-table .mico-row th:first-child {
      border-top-left-radius: 5px; }
    .mico-table .mico-row td:last-child {
      border-top-right-radius: 5px; }
    .mico-table .mico-row th:first-child {
      border-bottom-left-radius: 5px; }
    .mico-table .mico-row td:last-child {
      border-bottom-right-radius: 5px; }
  .mico-table > :not(caption) > * > * {
    border-top-width: 0px; }

.proforma-textarea {
  min-height: 96px !important; }

.filter-buttons {
  position: fixed;
  right: 10px;
  bottom: 20px; }
  .filter-buttons .btn-primary {
    background: #fff !important;
    color: #d51920;
    width: 95px;
    height: 36px;
    font-family: "Uber Move";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-color: #d51920 !important;
    border-radius: 3px !important; }
  .filter-buttons .btn-secondary {
    background: #000; }

.btn {
  padding: 5px 25px;
  border-radius: 5px;
  border: unset; }

.invoice-detail-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.purchase-detail-page {
  position: relative; }
  .purchase-detail-page .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .purchase-detail-page .table-striped td,
  .purchase-detail-page .table-striped th {
    padding: 10px;
    font-weight: 100; }
  .purchase-detail-page .table-striped th {
    background-color: #0d58c1; }
  .purchase-detail-page .invoicePurchase {
    font-weight: 800;
    font-size: 32px; }
  .purchase-detail-page .invoiceOrder {
    font-weight: 600;
    font-size: 32px; }
  .purchase-detail-page .font-size-20 {
    font-weight: 700;
    font-size: 20px;
    color: #212529; }
  .purchase-detail-page .purchaseOrderTo {
    font-size: 12px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 6px; }
  .purchase-detail-page .purchaseOrderShipping {
    font-weight: 700;
    color: #212529;
    margin-top: 35px; }
  .purchase-detail-page .purchaseDetailsToAddress {
    font-weight: 700;
    color: #212529; }
  .purchase-detail-page .purchaseOrderPoNo {
    font-weight: 600;
    font-size: 14px;
    color: #212529 !important;
    width: 50%; }
  .purchase-detail-page .purchaseDetails-table {
    background-color: #0d58c1;
    color: #fff;
    font-size: 16px; }
  .purchase-detail-page .purchaseDetails-Values {
    color: #212529;
    font-weight: 600;
    font-size: 14px; }
  .purchase-detail-page .purchaseDetailsAmount {
    margin-top: 30px;
    font-weight: 700;
    font-size: 14px;
    color: #212529; }
  .purchase-detail-page .purchaseDetailsAmountWords {
    margin-bottom: 60px;
    color: #adb5bd; }
  .purchase-detail-page .purchaseDetailsTerm {
    margin-bottom: 40px;
    color: #adb5bd;
    font-size: 12px;
    font-weight: 400; }
  .purchase-detail-page .purchaseDetailsMicohr {
    border: none;
    border-top: 1.5px solid #0d58c1;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .purchase-detail-page .purchaseDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .purchase-detail-page .vl {
    border-left: 1px solid #adb5bd; }
  .purchase-detail-page .purchaseDetailsFooter {
    margin-bottom: 25px; }
  .purchase-detail-page .purchaseDetailsThankYou {
    text-align: center;
    color: #212529;
    font-weight: 400;
    font-size: 12px; }
  .purchase-detail-page .purchase-footer-details {
    font-size: 10px;
    font-weight: 500; }
  .purchase-detail-page .purchaseOrderFindTotal {
    width: 50%; }
  .purchase-detail-page .purchaseOrderSubTotals {
    font-size: 20px;
    font-weight: 500;
    color: #212529;
    width: 70%; }
  .purchase-detail-page .purchaseOrderFindTotalnet {
    font-weight: 700;
    color: #212529;
    width: 50%; }
  .purchase-detail-page .purchaseOrderShippingAddress {
    margin-bottom: 25px; }
  .purchase-detail-page .purchaseDetailsPrepare {
    color: #adb5bd;
    font-size: 12px;
    text-align: left;
    width: 50%; }
  .purchase-detail-page .purchaseDetailsSign {
    float: right;
    font-size: 14px;
    font-weight: 700;
    color: #212529; }
  .purchase-detail-page .purchaseDetailsNetTotal {
    color: #212529;
    font-weight: 700;
    width: 70%; }
  .purchase-detail-page .table {
    --bs-table-striped-bg: #f0f7fb; }

.dash-recent-quote > tbody > tr:nth-of-type(even) > td {
  background: #f0f7fb; }

.dash-recent-quote th {
  background: #c4e0f9; }

.purchase-detail-card {
  max-width: 1300px; }

.purchase-detail-card-body {
  padding: 35px 60px; }

.tax-invoice-container {
  position: relative; }
  .tax-invoice-container .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .tax-invoice-container .table-striped td,
  .tax-invoice-container .table-striped th {
    padding: 10px;
    word-wrap: break-word; }
  .tax-invoice-container .table-striped th {
    background-color: #0d58c1;
    font-weight: 100; }
  .tax-invoice-container .tax-invoice-tax {
    font-size: 32px;
    font-weight: 800; }
  .tax-invoice-container .tax-invoice-invoice {
    font-size: 32px;
    font-weight: 600; }
  .tax-invoice-container .tax-address {
    font-size: 12px !important;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0px !important; }
  .tax-invoice-container .tax-invoice-number {
    font-size: 12px;
    font-weight: 700 !important;
    text-align: right;
    width: 67%;
    color: #212529; }
  .tax-invoice-container .tax-invoice-value {
    width: 27%;
    text-align: left; }
  .tax-invoice-container .tax-detail-table {
    background-color: #0d58c1;
    color: #fff;
    font-size: 16px; }
  .tax-invoice-container .tax-Amount {
    margin-top: 30px;
    font-weight: 700 !important;
    font-size: 14px;
    color: #212529; }
  .tax-invoice-container .tax-sub-total {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    width: 50%; }
  .tax-invoice-container .tax-amount-words {
    font-size: 12px;
    font-weight: 600;
    color: #adb5bd; }
  .tax-invoice-container .proforma-to {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .tax-invoice-container .proforma-too {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .tax-invoice-container .proforma-table {
    background-color: #0d58c1;
    color: #fff; }
  .tax-invoice-container .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .tax-invoice-container .proforma-table-border {
    border-color: #e9ecef;
    margin-top: 30px;
    margin-bottom: 50px; }
    .tax-invoice-container .proforma-table-border td,
    .tax-invoice-container .proforma-table-border th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .tax-invoice-container .tax-detail-container {
    border: 2px solid black; }
  .tax-invoice-container .tax-table-bordered {
    border: 2px solid #e9ecef;
    margin-bottom: 40px; }
    .tax-invoice-container .tax-table-bordered td,
    .tax-invoice-container .tax-table-bordered th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .tax-invoice-container .invoicecompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .tax-invoice-container .taxDetailsMicohr {
    border: none;
    border-top: 1.5px solid #d51920;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .tax-invoice-container .taxDetailsMicohr:after {
    background: #fff;
    padding: 0 4px 0 0;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #d51920;
    font-weight: 700; }
  .tax-invoice-container .tax-computer-bill {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    font-weight: 400;
    color: #495057; }
  .tax-invoice-container .tax-invoice-footer {
    font-weight: 500;
    font-size: 10px; }
  .tax-invoice-container .tax-detail-button {
    background-color: #0d58c1;
    color: #fff;
    width: 100px;
    height: 30px; }
  .tax-invoice-container .taxvl {
    border-left: 1px solid #adb5bd; }
  .tax-invoice-container .tax-total-values {
    margin-top: 30px; }
  .tax-invoice-container .tax-title {
    color: #212529; }
  .tax-invoice-container .tax-detail-address {
    color: #212529; }
  .tax-invoice-container .tax-invoice-section {
    margin-top: -25px; }
  .tax-invoice-container .tax-invoice {
    padding-top: 0px; }
  .tax-invoice-container .table {
    --bs-table-striped-bg: #f0f7fb; }
  .tax-invoice-container .tax-bank-name {
    font-weight: 700; }
  .tax-invoice-container .tax-net-weight {
    font-weight: 700;
    font-size: 12px; }
  .tax-invoice-container .tax-netweight {
    font-weight: 400;
    font-size: 12px; }

.bankdetail {
  line-height: 20px; }

.tax-detail-card {
  max-width: 1200px; }

.tax-detail-card-body {
  padding: 30px 60px; }

.back-logo {
  position: absolute;
  top: 35%;
  left: 150px; }

.proforma-detail-page {
  position: relative; }
  .proforma-detail-page .proforma-proforma {
    font-size: 32px;
    font-weight: 800;
    color: #212529; }
  .proforma-detail-page .proforma-invoice {
    font-size: 32px;
    font-weight: 600; }
  .proforma-detail-page .proforma-to {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .proforma-detail-page .proforma-too {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px; }
  .proforma-detail-page .proforma-table {
    background-color: #0d58c1;
    color: #fff; }
  .proforma-detail-page .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .proforma-detail-page .proforma-table-border {
    border-color: #e9ecef;
    margin-bottom: 50px; }
    .proforma-detail-page .proforma-table-border td,
    .proforma-detail-page .proforma-table-border th {
      padding: 12px 15px;
      border: 1px solid #e9ecef; }
  .proforma-detail-page .companystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .purcompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #f25c54;
    font-weight: 700; }
  .proforma-detail-page .proformacompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformaDetailscompanystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformaDetailsMicohr {
    border: none;
    border-top: 1.5px solid #0d58c1;
    color: #333;
    overflow: visible;
    height: 5px;
    opacity: 1; }
  .proforma-detail-page .proformaDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .proforma-detail-page .proformavl {
    border-left: 1px solid #adb5bd;
    height: 30px; }
  .proforma-detail-page .proforma-computer {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #495057; }
  .proforma-detail-page .proforma-detail-invoice-footer {
    font-size: 10px;
    font-weight: 500; }
  .proforma-detail-page .proforma-quote {
    font-size: 12px;
    width: 50%;
    font-weight: 700;
    color: #212529; }
    .proforma-detail-page .proforma-quote.cal-section {
      width: 82% !important; }
    .proforma-detail-page .proforma-quote.certificate-analysis {
      width: 60%; }
  .proforma-detail-page .proforma-quotes {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    width: 55%; }
    .proforma-detail-page .proforma-quotes.cal-section {
      width: 45% !important; }
  .proforma-detail-page .proforma-proforma-invoice {
    margin-top: 30px;
    margin-bottom: 30px; }
  .proforma-detail-page .proforma-table-head {
    margin-top: 30px; }
    .proforma-detail-page .proforma-table-head td,
    .proforma-detail-page .proforma-table-head th {
      padding: 10px;
      font-weight: 100; }
    .proforma-detail-page .proforma-table-head th {
      background-color: #0d58c1; }
  .proforma-detail-page .proforma-quote-proforma {
    margin-top: 30px; }
  .proforma-detail-page .proforma-amt {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0px;
    margin-top: 20px; }
  .proforma-detail-page .proforma-amt-words {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd; }
  .proforma-detail-page .proforma-net-weight {
    font-weight: 700;
    font-size: 12px; }
  .proforma-detail-page .proforma-net-hscode {
    font-weight: 400;
    font-size: 12px;
    color: #adb5bd; }

.proforma-detail-card {
  max-width: 1200px; }
  .proforma-detail-card.certificate-analysis {
    min-height: 297mm; }

.proforma-detail-card-body {
  padding: 30px 60px; }

.detail-button-pdf {
  width: 100px;
  height: 30px;
  background-color: #0d58c1;
  color: #fff;
  margin-left: 85%;
  border-radius: 5px; }

.popup-lpo {
  font-size: 16px;
  font-weight: 600; }

.popup-title input {
  color: #f25c54; }

.popup-cancel {
  background: #f25c54;
  border-radius: 5px;
  color: #fff; }

.other-charge-section {
  margin-bottom: 10px; }

.quotation-details {
  position: relative; }
  .quotation-details .table-striped > tbody > tr:nth-of-type(even) > td {
    background: #f0f7fb; }
  .quotation-details .table-striped td,
  .quotation-details .table-striped th {
    padding: 10px;
    font-weight: 100; }
  .quotation-details .table-striped th {
    background-color: #0d58c1; }
  .quotation-details .quotation-title {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 0px;
    color: #212529; }
  .quotation-details .table {
    --bs-table-striped-bg: #f0f7fb; }
  .quotation-details .quotation-detail-names {
    font-weight: 700;
    color: #212529; }
  .quotation-details .quotation-class-number {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    width: 100%;
    text-align: left; }
  .quotation-details .quotation-class-number-right {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: right;
    line-height: 22px; }
  .quotation-details .for-left-side {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    line-height: 22px; }
  .quotation-details .quotation-class-number-left {
    font-size: 12px;
    font-weight: 400;
    color: #adb5bd;
    margin-bottom: 0px;
    text-align: left;
    line-height: 22px; }
  .quotation-details .quotation-font-color {
    color: #000000;
    margin-bottom: 0px;
    line-height: 20px;
    color: #212529; }
  .quotation-details .fr {
    align-items: right;
    text-align: right; }
  .quotation-details .quotation-detail-table-value {
    font-weight: 700;
    color: #000000; }
  .quotation-details .quotation-detail-name {
    margin-bottom: 0px;
    line-height: 20px;
    font-weight: 700;
    color: #212529; }
    .quotation-details .quotation-detail-name.quotation-detail-width {
      width: 100%; }
  .quotation-details span.quotation-detail-name {
    text-align: right; }
  .quotation-details .quotation-data {
    font-weight: 600;
    color: #212529; }
  .quotation-details .quotation-sign-right {
    font-weight: 700;
    float: right;
    color: #212529; }
  .quotation-details .quotation-sign-left {
    font-weight: 700;
    float: left;
    color: #212529; }
  .quotation-details .quotation-detail-table {
    background: #0d58c1;
    color: #fff; }
  .quotation-details .quotation-amount {
    font-weight: 600;
    color: #212529; }
  .quotation-details .companystyle {
    padding: 0 4px;
    position: relative;
    top: -5px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .quotation-details .QuotationDetailsMicohr:after {
    background: #fff;
    padding: 0 4px;
    position: relative;
    top: -15px;
    font-size: 18px;
    color: #0d58c1;
    font-weight: 700; }
  .quotation-details .quotation-computer-bill {
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    margin-top: 40px; }
  .quotation-details .quotationvl {
    border-left: 1px solid #adb5bd;
    height: 40px; }
  .quotation-details .quotation-electric {
    font-size: 10px;
    font-weight: 500;
    color: #212529; }
  .quotation-details .ta {
    text-align: center; }
  .quotation-details .textb {
    font-weight: bold; }
  .quotation-details .invoice-electric {
    font-size: 10px;
    font-weight: 500;
    color: #212529; }
  .quotation-details .quotation-right {
    margin-bottom: 50px; }
  .quotation-details .quotation-footer {
    margin-top: 30px; }
  .quotation-details .quotation-sub-total {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    width: 60%;
    margin-top: 5px; }
  .quotation-details .quotation-sub-total-shipping {
    margin-right: 4%;
    margin-bottom: 0px;
    font-weight: 700;
    width: 40%;
    text-align: right;
    color: #212529; }
  .quotation-details .quotation-sub-totals {
    font-weight: 500;
    font-size: 14px;
    color: #212529;
    margin-right: 12px;
    text-align: right;
    width: 40%; }
  .quotation-details .quotation-sub-total-net {
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    width: 60%;
    color: #212529; }
  .quotation-details .quotation-ten-amount {
    font-size: 12px;
    font-weight: 400; }
  .quotation-details .quotation-ten-amount p {
    margin: 0; }
  .quotation-details .quotation-sub-totals-net {
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    color: #212529;
    width: 40%; }
  .quotation-details .quotation-footer-terms {
    margin-bottom: 40px; }
  .quotation-details .table {
    margin-top: 0px !important; }

.quotation-detail-card {
  max-width: 1200px; }

.quotation-detail-card-body {
  padding: 30px 60px; }

.term-condition {
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; }

.term-condition-custom-tab {
  width: 98%;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  color: #000000;
  line-height: 30px;
  margin-bottom: 20px; }

.form-label {
  font-size: 14px;
  font-weight: 400; }

.rdw-editor-toolbar {
  margin-bottom: 0px !important; }

.rdw-editor-toolbar {
  padding: 5px 10px 0px;
  border-radius: 0px 0px 5px 5px;
  font-size: 0px;
  border: none !important; }

.rdw-option-wrapper,
.rdw-dropdown-wrapper {
  border: none; }
  .rdw-option-wrapper img,
  .rdw-dropdown-wrapper img {
    width: 11px; }
  .rdw-option-wrapper .rdw-dropdown-optionwrapper,
  .rdw-option-wrapper .rdw-dropdown-selectedtext,
  .rdw-dropdown-wrapper .rdw-dropdown-optionwrapper,
  .rdw-dropdown-wrapper .rdw-dropdown-selectedtext {
    font-size: 11px; }

.rdw-editor-wrapper {
  display: flex;
  flex-direction: column-reverse; }

.rdw-editor-main {
  height: auto !important;
  padding: 0px 20px 20px;
  border-radius: 5px 5px 0px 0px;
  border: none !important;
  font-size: 12px;
  color: #adb5bd; }
  .rdw-editor-main::-webkit-scrollbar {
    width: 6px; }
  .rdw-editor-main::-webkit-scrollbar-track:hover {
    border-radius: 10px; }
  .rdw-editor-main:hover::-webkit-scrollbar-thumb {
    background: #8697b0;
    border-radius: 10px; }

.edit-customer-footer-button {
  margin-right: 9%; }

.edit-customer-quotation-primary-label {
  margin-left: 10px;
  font-weight: 400;
  font-size: 12px;
  color: #0d58c1; }

.view-customer-detail-page .col-sm-12 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px; }

.view-customer-detail-page .active-button {
  border-radius: 20px;
  color: #fff; }

.view-customer-detail-page .title {
  font-size: 12px;
  font-weight: 400; }

.view-customer-detail-page .value {
  font-size: 14px;
  font-weight: 600; }

.view-customer-detail-page .bank-detail-card {
  background-color: #caeee7;
  line-height: 19px; }
  .view-customer-detail-page .bank-detail-card .title {
    font-size: 14px;
    font-weight: 400;
    color: #495057; }
  .view-customer-detail-page .bank-detail-card .value {
    font-size: 14px;
    font-weight: 700;
    color: #495057; }

.view-customer-detail-page .enquiry-card {
  background-color: #f4d6d5;
  line-height: 19px; }
  .view-customer-detail-page .enquiry-card .title {
    font-size: 14px;
    font-weight: 400;
    color: #495057; }
  .view-customer-detail-page .enquiry-card .value {
    font-size: 14px;
    font-weight: 700;
    color: #495057; }
  .view-customer-detail-page .enquiry-card .view-customer-pending-amt {
    font-size: 14px;
    font-weight: 400;
    color: #f25c54; }
  .view-customer-detail-page .enquiry-card .view-customer-pending-amt-value {
    font-size: 14px;
    font-weight: 700;
    color: #f25c54; }
  .view-customer-detail-page .enquiry-card .view-hr {
    color: #fff; }
  .view-customer-detail-page .enquiry-card .view-customer-invoice-value {
    color: #212529;
    font-weight: 700;
    font-size: 14px;
    margin-left: 12px; }
  .view-customer-detail-page .enquiry-card .view-coustomer-invoice-title {
    padding: 5px;
    margin-bottom: 15px; }

.edit-quotation-total-details {
  height: 35px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 2px;
  padding: 7px; }

.label-lpo-no {
  font-weight: 600;
  font-size: 14px; }

#ev-form {
  padding: 20px; }

.add-purchase-cancel-title {
  font-weight: 600;
  font-size: 16px;
  color: #212529; }

.purchase-edit-purchase .edit-purchase-sub-total {
  margin-top: 5%; }

.purchase-edit-purchase .edit-supplier-close-save {
  margin-left: 15px; }

.purchase-edit-purchase .purchase-footer {
  margin-left: 15px; }

.purchase-edit-purchase .saveSubmit {
  margin-left: 25px; }

.purchase-edit-purchase .purchase-bill .form-label {
  margin-left: 14px; }

.first-cell {
  font-weight: 800; }

.category-edit-category-button {
  float: left;
  margin-left: 33%;
  margin-top: 2%; }

.edit-category-close-button {
  margin-left: 15px; }

.edit-customer-check-box-primary {
  margin-bottom: -16px; }

.form-check-input {
  color: #0d58c1; }

.edit-quotation-shipping-charge {
  margin-left: -11px; }

.quotation-button-save-pdf {
  width: 100px;
  height: 30px;
  color: #fff;
  background-color: #0d58c1;
  float: right;
  margin-right: 84px;
  border: none;
  border-radius: 5px;
  margin-bottom: 34px;
  margin-top: 20px; }

.custom-search-box {
  background: #ffffff url(/images/icons-search.svg?09c6581af29dbcc272396f5c91ea20be) no-repeat scroll 18px 10px;
  padding-left: 43px; }
  .custom-search-box::placeholder {
    color: rgba(13, 88, 193, 0.5) !important; }
  .custom-search-box:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(13, 88, 193, 0.5) !important; }
  .custom-search-box::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(13, 88, 193, 0.5) !important; }

.f-text-right {
  text-align: right; }

.edit-supplier-primary {
  font-weight: 400;
  font-size: 12px;
  color: #adb5bd;
  margin-top: 2px;
  margin-left: 8px; }

.parent-edit-supplier-primary {
  color: #0d58c1;
  font-weight: 400;
  font-size: 14px;
  margin-top: 4px;
  margin-left: 8px; }

.form-check-input:checked + .edit-supplier-primary {
  color: #585c5f !important; }

.edit-supplier-check-box {
  margin-bottom: -16px; }

.edit-supplier-close-save {
  margin-bottom: 10px;
  margin-right: 33%;
  margin-top: 10px;
  margin-left: 15px; }

.saveSubmit {
  width: 100px;
  height: 33px; }

.supplier-details-title {
  font-weight: 600;
  font-size: 16px;
  color: #212529;
  margin-bottom: 30px;
  margin-top: 30px; }

.view-minheight {
  line-height: 19px;
  min-height: 420px; }

.credit-period-footer-button {
  margin-left: 17%; }

.credit-period-footer-cancel {
  margin-left: 15px; }

.settings-general-index .header-profile-user {
  height: 36px;
  width: 35px;
  padding: 3px;
  margin-bottom: 30px;
  margin-right: 55px; }

.settings-general-index .general-cancel-button {
  width: 110px;
  background: #d51920;
  border-radius: 5px;
  margin-left: 35px; }

.settings-general-index .general-save-button {
  width: 110px;
  background: #0d58c1;
  border-radius: 5px; }

.settings-general-index .general-button-footer {
  margin-right: 27px;
  margin-bottom: 20px; }

.edit-tax-head .edit-tax-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-tax-head .switch-button {
  margin-top: 7px; }

.edit-tax-head .tax-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-tax-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-tax-head .tax-cancel-button {
  margin-left: 20px;
  background: #d51920;
  border-radius: 5px; }

.edit-tax-head .tax-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-country-head .edit-country-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-country-head .country-cancel-button {
  margin-left: 20px;
  width: 25%;
  background: #d51920;
  border-radius: 5px; }

.edit-country-head .country-save-button {
  background: #0d58c1;
  border-radius: 5px;
  width: 25%; }

.edit-country-head .edit-country-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-country-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-country-head .country-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-country-head .switch-button {
  margin-top: 7px; }

.edit-currency-head .edit-currency-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-currency-head .currency-cancel-button {
  margin-left: 20px;
  background: #d51920;
  border-radius: 5px; }

.edit-currency-head .currency-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-currency-head .edit-currency-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-currency-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-currency-head .currency-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-currency-head .switch-button {
  margin-top: 7px; }

.edit-payment-head .edit-payment-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-payment-head .payment-cancel-button {
  margin-left: 20px;
  width: 19%;
  background: #d51920;
  border-radius: 5px; }

.edit-payment-head .payment-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-payment-head .edit-payment-footer-button {
  margin-left: 33%;
  margin-top: 15px; }

.edit-payment-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-payment-head .payment-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-payment-head .switch-button {
  margin-top: 7px; }

.edit-payment-head .edit-payment-footer {
  margin-left: 33%;
  margin-top: 25px; }

.edit-payment-head .edit-payment-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-payment-head .edit-payment-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-desigination-head .edit-desigination-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-desigination-head .desigination-cancel-button {
  margin-left: 20px;
  width: 10%;
  background: #d51920;
  border-radius: 5px; }

.edit-desigination-head .desigination-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-desigination-head .edit-desigination-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-desigination-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-desigination-head .desigination-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-desigination-head .switch-button {
  margin-top: 7px; }

.edit-department-head .edit-department-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-department-head .department-cancel-button {
  margin-left: 20px;
  width: 10%;
  background: #d51920;
  border-radius: 5px; }

.edit-department-head .department-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-department-head .edit-department-footer-button {
  margin-left: 17%;
  margin-top: 15px; }

.edit-department-head .header-profile-user {
  height: 45px;
  width: 45px; }

.edit-department-head .department-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-department-head .switch-button {
  margin-top: 7px; }

.edit-credit-head .edit-credit-head-left {
  display: flex;
  margin-bottom: 15px; }

.edit-credit-head .edit-credit-footer-cancel {
  margin-left: 20px;
  width: 21%;
  background: #d51920;
  border-radius: 5px; }

.edit-credit-head .credit-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-credit-head .credit-period-footer-cancel {
  background: #d51920;
  border-radius: 5px; }

.edit-credit-head .credit-period-footer-button {
  margin-left: 16%;
  margin-top: 15px; }

.edit-credit-head .header-profile-user {
  margin-left: 20px; }

.edit-credit-head .credit-status {
  margin-right: 26px;
  font-size: 14px;
  font-weight: 600;
  color: #212529; }

.edit-credit-head .tax-status {
  margin-left: 20%; }

.edit-credit-head .switch-button {
  margin-top: 7px; }

.add-customer-main-page .edit-customer-quotation-primary-label {
  margin-top: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #adb5bd; }

.add-customer-main-page .header-profile-user {
  margin-left: 35px; }

.add-customer-main-page .form-check-input {
  border: 1px solid #adb5bd; }

.add-customer-main-page .tax-status {
  margin-left: 77px; }

.add-customer-main-page .customer-back-button {
  margin-left: 20px;
  width: 100px; }

.add-customer-main-page .customer-save-button {
  width: 100px; }

.add-customer-main-page .customHeading {
  font-weight: 600;
  font-size: 14px;
  color: #212529;
  margin-top: 36px; }

.add-customer-main-page .edit-customer-footer-button {
  margin-right: 82px;
  margin-top: 10px; }

.edit-supplier-page .header-profile-user {
  margin-right: 68px;
  margin-bottom: 20px; }

.edit-supplier-page .supplier-status {
  margin-right: 10px; }

.edit-supplier-page .supplier-image {
  margin-left: 34px; }

.edit-supplier-page .supplier-bottom-page {
  margin-right: 50px;
  margin-top: 20px;
  margin-bottom: 20px; }

.edit-supplier-page .supplier-cancel-button {
  margin-left: 24px;
  width: 100px;
  background: #d51920;
  border-radius: 5px; }

.edit-supplier-page .supplier-save-button {
  width: 100px;
  background: #0d58c1;
  border-radius: 5px; }

.product-title-page .product-footer-page {
  margin-left: 221px; }

.product-title-page .product-cancel-button {
  margin-left: 22px;
  width: 115px; }

.product-title-page .footer-edit-product {
  margin-top: 20px; }

.account-detail-head .account-table {
  text-align: center;
  background: #c4e0f9; }
  .account-detail-head .account-table th {
    background: #c4e0f9;
    padding-top: 13px;
    padding-bottom: 13px; }
    .account-detail-head .account-table th:first-child {
      border-radius: 10px 0px 0px 0px; }
    .account-detail-head .account-table th:last-child {
      border-radius: 0px 10px 0px 0px; }

.account-detail-head .docLabel {
  margin-top: 7px; }
  .account-detail-head .docLabel .bg-grey {
    background: #e9ecef !important;
    color: #212529 !important;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px !important;
    padding: 4px 10px; }

.account-detail-head .no-data-found {
  padding: 15px;
  border-bottom: 1px solid #f4f0f1;
  border-top: 1px solid #f4f0f1; }

.account-detail-head .detail-data {
  text-align: center; }
  .account-detail-head .detail-data td {
    border-bottom: 1px solid #e9ecef; }
  .account-detail-head .detail-data:last-child td {
    border: none; }

.proforma-edit-total {
  padding: 9px;
  background-color: #fff;
  border-radius: 5px; }

.proforma-edit-form .form-label {
  margin-left: 10px; }

.proforma-edit-form .payable {
  font-size: 12px;
  font-weight: 600;
  color: #212529; }

.proforma-edit-form .proforma-edit-footer {
  margin-right: 32%; }

.proforma-edit-form .bottom-save-button {
  margin-right: 20px; }

.edit-department-header-page .settings-department-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-department-header-page .tax-status {
  margin-left: 20%; }

.edit-department-header-page .settings-department-close-button {
  margin-left: 1%;
  background: #d51920;
  border-radius: 5px; }

.edit-department-header-page .header-profile-user {
  margin-left: 20px; }

.edit-department-header-page .edit-department-footer-button-design {
  margin-top: 10px;
  margin-left: 15%; }

.settings-desigination-edit .settings-desigination-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.settings-desigination-edit .settings-desigination-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.settings-desigination-edit .settings-desigination-footer-button {
  margin-left: 16%;
  margin-top: 10px; }

.settings-desigination-edit .header-profile-user {
  margin-left: 30px; }

.settings-desigination-edit .tax-status {
  margin-left: 20%; }

.edit-tax-header-section .edit-footer-tax {
  margin-top: 10px;
  margin-left: 15%; }

.edit-tax-header-section .tax-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-tax-header-section .tax-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-tax-header-section .tax-switch-button {
  margin-left: 10%; }

.edit-currency-page .currency-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.edit-currency-page .currency-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-currency-page .currency-footer-button {
  margin-top: 10px;
  margin-left: 15%; }

.edit-currency-page .currency-switch-button {
  margin-left: 10%; }

.edit-countery-head .edit-country-footer {
  margin-top: 10px;
  margin-left: 14%; }

.edit-countery-head .country-cancel-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 5%; }

.edit-countery-head .country-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.edit-countery-head .header-profile-user {
  margin-left: 23px; }

.edit-countery-head .tax-status {
  margin-left: 25%; }

.term-and-condition-header .nav-link.active {
  background-color: #c4e0f9;
  border-radius: 5px;
  color: #212529; }

.term-and-condition-header .nav-link {
  color: #212529;
  margin-top: 10px; }

.term-and-condition-header .tandc-footer-button {
  margin-bottom: 30%; }

.term-and-condition-header .edit-footer-termandcondition {
  margin-top: 15%;
  margin-left: 25px; }

.term-and-condition-header .tac-save-button {
  margin-right: 3%;
  background: #0d58c1;
  border-radius: 5px; }

.term-and-condition-header .tac-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.term-and-condition-header .rdw-editor-main {
  height: 270px; }

.term-and-condition-header .header-profile-user {
  margin-left: 5%;
  margin-bottom: 5%; }

.edit-payment-head .edit-payment-save-button {
  background: #0d58c1;
  border-radius: 5px;
  margin-left: 5%; }

.edit-payment-head .edit-payment-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.intro-pre-head .intro-footer-button {
  margin-top: 20px;
  margin-left: 38%; }

.intro-pre-head .intro-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.intro-pre-head .intro-cancel-button {
  background: #d51920;
  border-radius: 5px; }

.intro-pre-head .intro-form-section {
  margin-top: 20px; }

.cat-header .cat-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.cat-header .cat-close-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 5%; }

.cat-header .cat-footer-section {
  margin-left: 29%;
  margin-top: 20px; }

.cat-header .cat-toggle {
  display: flex; }

.cat-header .tax-status {
  margin-right: 25px; }

.cat-header .tax-switch-button {
  margin-left: 30px; }

.product-header .product-status {
  margin-right: 25px; }

.product-header .pro-toggle {
  display: flex; }

.product-header .product-switch-button {
  margin-left: 30px; }

.product-header .footer-edit-product {
  margin-left: 33%;
  margin-top: 20px; }

.product-header .product-save-button {
  background: #0d58c1;
  border-radius: 5px; }

.product-header .product-cancel-button {
  background: #d51920;
  border-radius: 5px;
  margin-left: 2%; }

.product-header .product-footer-section {
  margin-left: 15%;
  margin-top: 10px; }

.settings-general-head .setting-general {
  margin-right: 2%;
  margin-top: 2%; }

.settings-general-head .header-profile-user {
  margin-right: 8%;
  margin-bottom: 3%; }

.settings-general-head .css-1s2u09g-control {
  border: none;
  font-family: Open Sans; }

.quotation-head .footer-value .form-control {
  width: 50%;
  text-align: center; }

.quotation-head .footer-value .form-label {
  margin-left: 37px; }

.quotation-head .footer-value .quotation-footer {
  margin-top: 20px;
  margin-left: 8%; }

.report-head .approved {
  font-size: 12px;
  font-weight: 600; }

.report-head .customer-form {
  margin-top: 52px; }

.report-head .report-save-button {
  margin-right: 3%;
  margin-top: 1%; }

.reportpdf-head .sales {
  font-size: 32px;
  font-weight: 700; }

.reportpdf-head .report {
  font-size: 32px;
  font-weight: 600; }

.reportpdf-head .report-state {
  margin-top: 4%;
  margin-bottom: 2%; }

.reportpdf-head .py-2 {
  min-height: 300px; }

.reportpdf-head .quotation-detail-card-body {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px;
  padding-bottom: 5px; }

.report-detail-pdf .report-save-button {
  margin-left: 54%; }

.statement-head .quotation-detail-table {
  background-color: #a8d3ff;
  border-radius: 5px; }

.statement-head .table {
  margin-top: 0px; }

.statement-head .table-responsive {
  border-radius: 20px 20px 0 0; }

.statement-head .py-2 {
  min-height: 400px; }

.statement-approved {
  margin-left: 78%;
  margin-bottom: 10%;
  font-weight: 600; }

.statement-pdf-statement {
  margin-top: 6%;
  margin-bottom: 2%; }

.tax-filter-head .tax-name {
  margin-bottom: 15px; }

.currency-filter-head .currency-filter {
  margin-bottom: 20px; }

.payment-filter-head .filter-buttons {
  position: fixed;
  right: 44px;
  bottom: 20px; }

.payment-filter-head .btn-secondary {
  margin-right: 20px; }

.edit-customer-head .edit-customer-bottom {
  margin-right: 9%;
  margin-top: 1%; }

.w-15 {
  width: 15%; }

.h-90 {
  height: 90px; }

.pr-40 {
  padding-right: 40px; }

.pr-5 {
  padding-right: 5px; }

.proforma-detail-page .tax-net-weight {
  font-weight: 700 !important;
  font-size: 12px !important; }

.quotation-details .table-striped th {
  background-color: #d51920; }

.quotation-details .companystyle {
  color: #d51920; }

.quotation-details .table-striped td,
.quotation-details .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.quotation-details .quotation-footer-terms {
  margin-bottom: 0px; }

.tt {
  text-transform: capitalize; }

.purchase-details .table-striped th {
  background-color: #d51920; }

.purchase-detail-page .table-striped th {
  background-color: #d51920; }

.purchase-details .companystyle {
  color: #d51920; }

.purchase-details .QuotationDetailsMicohr {
  background: url(/images/footer-line.svg?4a0781b5b642bd2dc78025cabfcd9c8e) no-repeat;
  background-size: 750px;
  height: 15px; }

.purchase-detail-page .table-striped td,
.purchase-detail-page .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.purchase-detail-page .purchaseDetailsMicohr:after {
  background: #fff;
  padding: 0 4px;
  position: relative;
  top: -15px;
  font-size: 18px;
  color: #d51920;
  font-weight: 700; }

.purchase-detail-page .purchaseDetailsMicohr {
  border: none;
  border-top: 1.5px solid #d51920;
  color: #333;
  overflow: visible;
  height: 5px;
  opacity: 1; }

.purchasecompanystyle {
  padding: 0 4px;
  position: relative;
  top: -5px;
  font-size: 18px;
  color: #0d58c1;
  font-weight: 700; }

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

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

.oemcol-1 {
  display: none; }

.pad0 {
  padding: 0 !important; }

.tax-invoice-container .table-striped td .tax-invoice-container .table-striped th {
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 100; }

.tax-invoice-container .table-striped th {
  background-color: #d51920; }

.tax-invoice-container .invoicecompanystyle {
  padding: 0 4px;
  position: relative;
  top: -5px;
  font-size: 18px;
  color: #d51920;
  font-weight: 700; }

.input-border .form-control {
  border: 1px solid #e9ecef;
  width: 80px;
  display: inline; }

.card_height {
  height: 120px; }

.justification-end {
  display: flex;
  justify-content: flex-end; }

.justification-center {
  display: flex;
  justify-content: center; }

.aternative-row:nth-of-type(2n - 1) {
  background: #ffffff; }

.customBorder {
  border-bottom: solid #cbcbcb 0.2px; }

.producthrstyle {
  border-top: 1px solid #ccd0d6; }

.producthrstyle:after {
  background: #383838;
  content: "Stock Details\00a0\00a0\00a0\00a0";
  padding: 0 4px;
  position: relative;
  top: -15px;
  font-size: 18px;
  color: #234066;
  font-weight: 700; }

.productviewheading {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700; }

.edit-credit-footer-cancel .productcardheader {
  background-color: #0e4d86; }

.productcardbg {
  background-color: #f3f6f9; }

.projectcardbg {
  background-color: #f3f6f9;
  height: 80px;
  padding: 10px 10px; }

.align-center {
  display: flex;
  align-items: center; }

.fw-weight-550 {
  font-weight: 550; }

.custom-border-color {
  border-color: #779bbb !important; }

.custom-input {
  background: #e3ebf1 !important; }

.inner-container {
  background-color: #dde6ee; }

.tag-title {
  color: #0e4d86; }

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  transition: width 0.5s ease-in-out;
  /* Transition on width property */
  padding-top: 90px; }

.sidenav.open {
  width: 600px !important;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px; }

.ot-adjust {
  margin-top: 35px; }

.ot-btn-adjust {
  margin-top: 16px; }

.sidenav .side-content {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 24px;
  color: #333;
  transition: 0.3s; }

.element {
  position: relative; }

.element::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 0;
  padding: 5px;
  background-color: #ffb500;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease; }

.element:hover::before {
  opacity: 1;
  visibility: visible;
  width: 200px; }

.tablinks {
  color: black;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer; }

.tablinks.active {
  background-color: #0e4d86;
  color: white; }

.tabcontent {
  display: none;
  padding: 15px; }

.tabcontent.active {
  display: block; }

.emp-tittle-color {
  color: #0e4d86; }

.custom-tab-pane.active {
  background-color: #333; }

.projectinvcard {
  height: 40px;
  background-color: #eff0f2;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 10px;
  padding: 7px; }

.active.customColor {
  border-bottom: 2px solid #d51920;
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: center; }

.active.text {
  color: #222; }

.payment-term-total {
  background-color: #e1e9ef;
  padding-top: 15px;
  border-radius: 10px; }

.product-view-bg {
  background-color: #0e4d86; }

.client-margin {
  margin-top: 160px; }

.material-bg {
  background-color: #f8fafb; }

.yellow-color {
  color: #ffb500; }

.yellow-bgcolor {
  background-color: #fef8ea; }

.red-color {
  color: #f25c54; }

.red-bgcolor {
  background-color: #feefee; }

.green-color {
  color: #32b175; }

.green-bgcolor {
  background-color: #e6f3ed; }

.blue-color {
  color: #0e4d86; }

.blue-bgcolor {
  background-color: #e7edf3; }

.input-box-border {
  border: 1px solid black; }

.border-adjust {
  border-bottom: 1px solid #ede9e8; }

.plugin-container-title {
  color: #c1c1c1; }

.plugin-container-by {
  color: #765fe6; }

.plugin-container-key {
  color: #818181; }

.email-set-input {
  width: 300px !important;
  height: 45px;
  background-color: #f0f0f0 !important; }

.email-set-select {
  width: 300px !important;
  height: 45px;
  background-color: #f0f0f0 !important; }

.email-set-select > .css-13cymwt-control {
  background-color: #f0f0f0 !important;
  border: none; }

.horizontal-line {
  border-top: 1px solid #e0e4e8;
  margin: 1rem 0; }

.input-fill {
  border: 1px solid rgba(173, 181, 189, 0.5) !important; }

.css-b62m3t-container {
  border-radius: 5px; }

.input-fill .css-13cymwt-control {
  border: none;
  border-radius: 5px; }

.label-spacing {
  font-size: 14px !important;
  padding-left: 50px; }

.category-set-select {
  width: 400px !important;
  height: 45px;
  background-color: #f0f0f0 !important; }

.category-set-select > .css-13cymwt-control {
  background-color: #f0f0f0 !important;
  border: none; }

.cat-img-adjust {
  padding-left: 223px; }

.cat-update-file {
  width: 400px !important;
  display: none; }

.grocery-document {
  width: 13px !important;
  display: none; }

.cat-update-file-label {
  color: #d51920;
  cursor: pointer; }

.cat-text-size {
  height: 200px; }

.media-check {
  width: 200px;
  height: 15px; }

.form-switch {
  padding-left: 0; }

.media-font-color {
  color: #c9c9c9; }

.media-dropdown > .css-13cymwt-control {
  width: 200px;
  background-color: #f0f0f0 !important;
  border: none; }

.media-search {
  width: 300px !important;
  background-color: #f0f0f0 !important; }

.img-frame {
  width: 180px;
  height: 180px; }

.img-frame > img {
  width: 180px;
  height: 180px; }

.drag-drop {
  border: dashed 3px #61a8f4;
  border-radius: 20px;
  padding: 30px; }

.text-blue {
  color: #61a8f4; }

.image-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 10px; }

.image-fix-size {
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcdcde;
  position: relative;
  border-radius: 5px; }

.image-close-icon {
  position: absolute;
  right: -7px;
  top: -8px;
  border-radius: 20px;
  padding-right: 5px;
  padding-left: 5px;
  background-color: #f5f5f5;
  border: 1px solid #dcdcde; }

.image-delete-icon {
  border-radius: 20px;
  padding-right: 5px;
  padding-left: 5px;
  background-color: #fff;
  border: 1px solid #dcdcde; }

.image-close-icon:hover {
  background-color: #5b73e8; }

.image-fix-size img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto; }

.no-input-field {
  border: none;
  width: 0px;
  height: 0px; }

.selected-img {
  padding: 10px;
  box-shadow: 0 0 5px #5b73e8; }

.MuiSwitch-colorSecondary.Mui-checked {
  color: #d51920 !important; }

.MuiSwitch-colorSecondary.Mui-checked + .MuiSwitch-track {
  background-color: #d51920 !important; }

.font-12 {
  font-size: 12px;
  font-weight: 600; }

.editor-hgt {
  height: 700px; }

.textarea-small {
  height: 60px;
  width: 100%; }

.textarea-medium {
  height: 80px;
  width: 100%; }

.textarea-large {
  height: 120px;
  width: 100%; }

.productFilterDrop > .css-1fdsijx-ValueContainer {
  background-color: #f0f0f0; }

.imagesize {
  width: 20%;
  height: 20%; }

.date-style {
  border: 10px solid red; }

.login-fix {
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; }

.bgPrimary {
  background-color: #1a4cc0 !important;
  color: white !important; }

.table-adjust table {
  margin-top: 20px; }

.mdb-datatable-filter {
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  width: 70%;
  background-color: white; }

.mdb-datatable-filter .pagination {
  background-color: red; }

.list-page-curve {
  border-radius: 20px; }

.WhiteDiv {
  border-radius: 25px;
  background-color: white;
  margin-bottom: 50px; }

.iframe-border {
  border-radius: 15px; }

.dataTables_wrapper .row {
  padding: 10px 0px 10px 0px; }

.pagination .page-item {
  border: solid #bfc6d7 1px;
  margin: 5px;
  border-radius: 10px;
  display: flex;
  align-items: center; }

.page-content .pagination .active.page-item .page-link {
  color: #bfc6d7 !important; }

.page-content .pagination .active {
  background-color: #fff !important; }

.pagination .page-item .page-link {
  font-weight: 500 !important;
  font-size: 16px !important;
  padding: 7px 7px 7px 7px !important; }

.page-item {
  padding: 2px 7px 2px 7px !important; }

.dataTables_wrapper div:nth-child(3) {
  display: flex;
  align-items: center; }

.danger-button {
  padding: 6px 25px 6px 25px;
  border-radius: 5px;
  border: 1px solid red;
  color: red;
  background-color: white; }

.Blue-button {
  padding: 6px 25px 6px 25px;
  border-radius: 5px;
  border: 1px solid #5b73e8;
  color: white;
  background-color: #5b73e8; }

.dataTable thead tr th {
  background-color: #fff;
  color: #222;
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: normal; }

.dataTable thead tr td {
  color: #383838;
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal; }

.dataTable {
  margin-top: 0px !important; }

.dataTable td {
  vertical-align: middle;
  color: var(--icon, #383838);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400; }

.dataTable thead {
  border-top: 1px solid #f4f0f1 !important;
  border-bottom: 1px solid #f4f0f1 !important; }

.dataTables_wrapper > .row:nth-child(2) > div {
  padding: 0px 0px 10px 0px; }

.upload-dotborder {
  border: 1px solid #d3d3d3;
  border-radius: 10px; }

.menu-img {
  width: 85px;
  height: 100%;
  object-fit: cover; }

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

.lh-1 {
  line-height: 1; }

.upload-btn {
  background-color: #f9f9fb;
  border: 1px solid #d3d3d3;
  border-radius: 12px;
  width: 112px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center; }

.menu-img-hover:hover .hover-btn {
  display: block; }

.menu-img-hover:hover .menu-img {
  opacity: 0.3; }

.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important; }

.menu-img-hover {
  position: relative;
  height: 132px; }

.menu-img-hgt-view {
  height: 132px; }

.hover-btn,
.hover-review-btn {
  position: absolute;
  right: 47%;
  display: none;
  cursor: pointer; }

.hover-btn {
  top: 38%; }

.dataTable thead tr th {
  background-color: #fff;
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal; }

table {
  caption-side: bottom; }

.dropdownmenu {
  position: absolute;
  /* inset: 0px auto auto 0px; */
  /* transform: translate(0px, 23px); */
  border-radius: 0px !important;
  left: -50px !important; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #74788d;
  text-align: right; }

th {
  text-align: inherit;
  text-align: -webkit-match-parent; }

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: none !important;
  border-style: none !important;
  border-width: 0; }

body {
  background-color: white !important;
  font-family: "Uber Move" !important; }

.Feature_pointer {
  cursor: pointer; }

.date-style {
  border: solid #cecccc 1px !important; }

.dashboard-div {
  background-color: #fff !important; }

.dashboard-blue {
  color: #1a4cc0 !important;
  font-weight: 700;
  font-size: 32px; }

.dashboard-Muted-text {
  font-size: 17px;
  font-weight: 500;
  color: #bfc6d7; }

.dashboard-table {
  padding: 0px 10px; }

.dashboard-table td {
  vertical-align: middle; }

.dashboard-table > .row:nth-child(2) > div {
  border-radius: 0px !important; }

.dashboard-table > .row:nth-child(2) {
  padding-top: 0px !important; }

.dashboard-table > .row:nth-child {
  padding: 0px !important; }

.dashboard-table > .row:nth-child(2) > div div .dataTable thead tr > th:first-child {
  border-top-left-radius: 0px !important; }

.dashboard-table > .row:nth-child(2) > div div .dataTable thead tr > th:last-child {
  border-top-right-radius: 0px !important; }

.complete-status {
  background-color: #e9faf7;
  border-radius: 10px;
  color: #1a9882;
  padding: 8px 25px;
  font-weight: 600; }

.cancelled-status {
  background-color: #ffe0e3;
  color: #f43d4f;
  border-radius: 10px;
  padding: 8px 25px;
  font-weight: 600; }

.time-range-picker {
  display: flex;
  flex-direction: row; }

.time-picker {
  margin-right: 20px; }

.bx-error-alt {
  cursor: pointer; }

.image-container-reduced-size {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  grid-gap: 10px; }

.image-fix-reduced-size {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcdcde;
  position: relative;
  border-radius: 15px; }

.image-fix-reduced-size-index {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 5px; }

.background-color {
  background-color: #d51920; }

.view-all-design {
  height: 70px;
  width: 70px !important;
  border-radius: 15px;
  margin-top: 16px !important;
  background-color: #1a4cc0;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center; }

.board-seller-0 {
  background-color: #fef6e9; }

.board-seller-1 {
  background-color: #fbf0fe; }

.board-seller-2 {
  background-color: #e9fbf9; }

.board-seller-0-btn {
  border: 2px solid #f09e23;
  background-color: #fef6e9;
  color: #f09e23;
  padding: 5px 35px;
  border-radius: 10px; }

.board-seller-1-btn {
  border: 2px solid #cf64f4;
  background-color: #fbf0fe;
  color: #cf64f4;
  padding: 5px 35px;
  border-radius: 10px; }

.board-seller-2-btn {
  border: 2px solid #1bbcb2;
  background-color: #e9fbf9;
  color: #1bbcb2;
  padding: 5px 35px;
  border-radius: 10px; }

.display-flex {
  display: flex;
  justify-content: center; }

.circle-border-0 {
  border-radius: 50% !important;
  border: 2px solid #f09e23; }

.circle-border-1 {
  border-radius: 50% !important;
  border: 2px solid #cf64f4; }

.circle-border-2 {
  border-radius: 50% !important;
  border: 2px solid #1bbcb2; }

.bold-text {
  font-weight: bold; }

.ml-2 {
  margin-left: 10% !important; }

.cardheight {
  height: 117px !important; }

.cardpadding {
  padding: 10px !important; }

.eventimgsize {
  width: 35px !important;
  height: 35px !important; }

.menuSlidersize {
  width: 50px !important;
  height: 50px !important; }

.mt-rem {
  margin-top: 0.5rem !important; }

.ta-center {
  text-align: center; }

.image-index-size {
  width: 27px !important;
  height: 27px !important;
  border-radius: 6px !important; }

.report-alignment {
  display: flex;
  align-items: center; }

.font-weight-1000 {
  font-weight: 1000; }

.apexcharts-legend {
  display: flex !important;
  justify-content: flex-end !important; }

.waves-effect img {
  width: 20px;
  height: 20px; }

.datatable-input {
  width: 100%; }

.dataTables_info {
  display: flex !important;
  padding-left: 0.6rem;
  justify-content: flex-start !important; }

.header-profile-user {
  height: 45px !important;
  width: 45px !important; }

.mdb-datatable-filter {
  width: 100%; }

.wrapperClassName {
  border: solid #d2d2d2 1px; }

.slider-div {
  position: relative !important; }

.menuImg-div {
  position: relative !important; }

.rec-arrow-left {
  position: absolute !important;
  top: 20px !important;
  right: 60px !important;
  border: 0px !important;
  background: transparent !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  line-height: 30px !important;
  color: #b5b3b3 !important; }

.rec-arrow-left:hover {
  color: #000000 !important; }

.rec-arrow-right:hover {
  color: #000000 !important; }

.rec-arrow-right {
  position: absolute !important;
  top: 20px !important;
  right: 15px !important;
  background: transparent !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  line-height: 30px !important;
  color: #b5b3b3 !important; }

.menuImg-div button.rec-arrow-left {
  border: 0px;
  z-index: 200 !important;
  position: absolute !important;
  top: 8px !important;
  left: 0px !important;
  box-shadow: none !important;
  display: none !important; }

.menuImg-div button.rec-arrow-right {
  border: 0px;
  z-index: 200 !important;
  position: absolute !important;
  top: 8px !important;
  right: 0px !important;
  box-shadow: none !important;
  display: none !important; }

.rec-pagination {
  display: none !important; }

.ProfileSizeSlider {
  width: 55px !important;
  height: 55px !important; }

.font-wght-700 {
  font-weight: 700; }

#sidebar-menu ul li ul.sub-menu li a {
  padding: 8px 0px !important; }

.plugin-width {
  width: 286px !important;
  border: solid #dedede 1px !important;
  border-radius: 20px; }

.plugin-header {
  border-radius: 20px 20px 0px 0px; }

.plugin-body {
  border-radius: 0px 0px 20px 20px; }

.card {
  box-shadow: none !important; }

#sidebar-menu ul li a {
  font-weight: 500; }

.sidebar-menu-scroll .simplebar-wrapper #side-menu ul li.mm-active > a {
  font-weight: 500; }

.width-40 {
  width: 400px; }

.width-20 {
  width: 200px; }

.width-30 {
  width: 300px; }

.width-10 {
  width: 100px; }

.PlusIconSize {
  width: 15px; }

.labelWithIcon {
  cursor: pointer; }

.card {
  border-radius: 16px !important; }

.titlecard {
  color: black !important;
  font-family: Public Sans !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 30px !important;
  /* 150% */
  letter-spacing: 0.2px !important; }

.topsellercard {
  height: 239px;
  width: 190px;
  border-radius: 20px; }

.eRMflP {
  margin: 0px 0px 14px 0px !important; }

.view-all-position {
  text-align: center; }

.category-card {
  min-height: 328px; }

.textOnInput .form-controler .input-wrapper {
  position: relative; }

.textOnInput .form-controler .input-wrapper input {
  width: 100%;
  height: 56px;
  padding: 0.5rem;
  border-radius: 3px;
  border: 1px solid #d6dade; }

.textOnInput .form-controler .input-wrapper label {
  position: absolute;
  top: -0.7rem;
  left: 0.5rem;
  pointer-events: none;
  transition: 0.2s ease all;
  color: var(--text, #222) !important;
  font-family: "Uber Move";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  background-color: #fff !important;
  padding: 0 0.3rem;
  font-size: 0.8rem; }

.textOnInput .form-controler .input-wrapper input:focus ~ label,
.textOnInput .form-controler .input-wrapper input:not(:placeholder-shown) ~ label {
  top: -0.7rem;
  font-size: 0.7rem;
  color: #333; }

.textOnInput .form-controll .input-wrapper input {
  width: 100% !important;
  height: 40px;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 10px;
  border-radius: 3px;
  border: 1px solid rgba(173, 181, 189, 0.5); }

.textOnInput .form-controll .input-wrapper .invoice-input {
  width: 100% !important; }

.textOnInput .form-controll .input-wrapper .h-55 {
  height: 55px !important; }

.textOnInput .form-controll .input-wrapper label {
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  pointer-events: none;
  transition: 0.2s ease all;
  color: var(--text, #222) !important;
  font-family: "Uber Move";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  background-color: #fff !important;
  padding: 0 0.3rem;
  font-size: 0.8rem;
  margin-bottom: 0px !important; }

.textOnInput .form-controll .input-wrapper input:focus ~ label,
.textOnInput .form-controll .input-wrapper input:not(:placeholder-shown) ~ label {
  top: -0.7rem;
  font-size: 0.7rem;
  color: #333; }

.textOnInput1 .form-controll1 .input-wrapper1 label {
  position: absolute;
  top: -0.7rem;
  left: 0.5rem;
  pointer-events: none;
  transition: 0.2s ease all;
  color: var(--text, #222) !important;
  font-family: "Uber Move";
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
  background-color: #fff !important;
  padding: 0 0.3rem;
  font-size: 0.8rem; }

.textOnInput1 .form-controll1 .input-wrapper1 input:focus ~ label,
.textOnInput1 .form-controll1 .input-wrapper1 input:not(:placeholder-shown) ~ label {
  top: -0.7rem;
  font-size: 0.7rem;
  color: #333; }

.w-360 {
  width: 360px; }

.w-460 {
  width: 460px; }

@media (min-width: 1200px) {
  .vertical-menu {
    width: 238px;
    z-index: 1005;
    background: #fff;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .vertical-menu .vertical-menu-btn {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: none; } }

@media (min-width: 992px) and (max-width: 1199.98px) {
  .vertical-menu {
    width: 238px;
    z-index: 1005;
    background: #fff;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .vertical-menu .vertical-menu-btn {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: none; } }

@media (max-width: 767px) {
  .vertical-menu {
    width: 238px;
    z-index: 1005;
    background: #fff;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .vertical-menu .vertical-menu-btn {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: none; } }

@media (max-width: 575.98px) {
  .vertical-menu {
    width: 238px;
    z-index: 1005;
    background: #fff;
    bottom: 0;
    margin-top: 0;
    position: fixed;
    top: 0;
    box-shadow: 0 2px 4px rgba(15, 34, 58, 0.12); }
    .vertical-menu .vertical-menu-btn {
      position: absolute;
      right: 0;
      top: 0;
      z-index: 2;
      display: none; } }

.submitbtn {
  background-color: #fff;
  color: #d51920;
  height: 36px;
  display: flex;
  border: 1px solid #d51920;
  padding: 8px;
  font-family: "Uber Move";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px; }

.filterbtn {
  background-color: #fff;
  color: #53545c;
  height: 36px;
  display: flex;
  border: 1px solid #53545c;
  padding: 8px;
  font-family: "Uber Move";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px; }

.filterclass {
  height: 18px !important;
  width: 18px !important;
  padding: 3px; }

.margin-top20 {
  margin-top: 15rem !important; }

.login-btn {
  width: 443px;
  height: 56px;
  border-radius: 3px !important;
  background: var(--Primary, #d51920) !important;
  color: var(--White, #fff) !important;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500; }

.Cancel-btn {
  background-color: black !important;
  color: white !important; }

.mar-5 {
  margin-right: 1.5rem !important;
  border-radius: 8px !important;
  margin-left: 1% !important; }

.magin {
  border-radius: 8px !important;
  margin-left: 1% !important; }

.profile-user {
  height: 90px !important;
  width: 90px !important;
  background-color: var(--bs-tertiary-bg);
  padding: 3px; }

.image-edit-icon {
  position: absolute;
  right: 25px;
  top: 85px;
  transform: translate(50%, -50%); }

.pro-fix-size {
  height: 120px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  overflow: hidden; }

.pro-fix-size img {
  width: 100%;
  /* Make sure the image takes up the entire container */
  height: auto;
  /* Maintain aspect ratio */ }

.uploader-file-border {
  border-radius: 5px;
  border: 1px solid var(--Stroke, #d3d3d3);
  background: var(--White, #fff);
  height: auto;
  width: 370px;
  padding: 5%; }

.existing-files {
  border-radius: 5px;
  border: 1px solid var(--Stroke, #d3d3d3);
  background: var(--White, #fff);
  width: fit-content;
  padding: 5%;
  white-space: nowrap;
  margin-right: 8px;
  margin-top: 10px;
  position: relative; }

.delete-icon {
  position: absolute;
  right: 8px;
  top: 2px;
  cursor: pointer; }

.borderchef {
  border: 1px solid rgba(173, 181, 189, 0.5);
  border-radius: 3px; }

.pdfbtn {
  background: transparent;
  border: none; }

.padding {
  padding-left: 20px !important;
  padding-right: 20px !important; }

.br-3 {
  border-radius: 3px !important; }

.chefheader {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; }

.pr-4 {
  padding-right: 4% !important; }

.labeltext {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; }

@media (max-width: 575.98px) {
  body {
    font-size: 14px; }
  .justify-content-end {
    justify-content: flex-start !important; }
  .col-sm {
    justify-content: flex-start !important; }
  .textOnInput .form-controll .input-wrapper input {
    width: 100% !important;
    height: 40px;
    padding-top: 1.6rem;
    padding-left: 10px;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); }
  .page-content {
    padding: calc(110px + 1.25rem) calc(1.25rem / 2) 60px calc(1.25rem / 2);
    padding-left: 2rem !important;
    padding-bottom: 1px; }
  .w-360 {
    width: 100%; }
  .w-460 {
    width: 100%; } }

@media (min-width: 768px) {
  body {
    font-size: 14px; }
  .col-sm {
    justify-content: flex-start !important; }
  .w-360 {
    width: 100%; }
  .w-460 {
    width: 100%; }
  .justify-content-end {
    justify-content: flex-end !important; }
  .textOnInput .form-controll .input-wrapper input {
    width: 100% !important;
    height: 40px;
    padding-top: 1.6rem;
    padding-left: 10px;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); } }

@media (min-width: 992px) {
  body {
    font-size: 16px; }
  .justify-content-end {
    justify-content: flex-end !important; }
  .textOnInput .form-controll .input-wrapper input {
    width: 100% !important;
    height: 40px;
    padding-top: 1.6rem;
    padding-left: 10px;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); }
  .textOnInput .form-controll .input-wrapper .invoice-input {
    width: 100% !important; }
  .w-360 {
    width: 360px; }
  .w-460 {
    width: 460px; } }

@media (min-width: 1200px) {
  body {
    font-size: 18px; }
  .justify-content-end {
    justify-content: flex-end !important; }
  .textOnInput1 .form-controll1 .input-wrapper1 input {
    width: 100%;
    height: 40px;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); }
  .input-wrapper .invoice-input {
    width: 100% !important; }
  .input-invoice {
    padding: 16px 10px !important; }
  .textOnInput .form-controll .input-wrapper input {
    width: 100% !important;
    height: 40px;
    font-size: 16px !important;
    padding-top: 1.6rem;
    padding-left: 10px;
    padding-bottom: 1.6rem;
    border-radius: 3px;
    border: 1px solid rgba(173, 181, 189, 0.5); }
  .w-360 {
    width: 360px; }
  .w-460 {
    width: 460px; } }

.activeclass {
  color: #1a9882 !important;
  text-align: center;
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400; }

.inactiveclass {
  color: #de4841 !important;
  text-align: center;
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400; }

.with-dot {
  margin-left: 5px !important;
  font-size: 14px !important;
  vertical-align: middle; }

.fs-sm {
  font-size: 0.5rem;
  margin-right: 5px; }

.flex-container {
  display: flex;
  align-items: center; }

.status-text {
  margin-left: 5px; }

.cardbg {
  background-color: #f4f0f1;
  border-radius: 8px !important;
  padding: 10px !important; }

.cardtext {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500; }

.cardsubtext {
  color: var(--Primary, #000);
  font-family: "Uber Move";
  font-size: 36px;
  font-style: normal;
  font-weight: 700; }

.chefimagetext {
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal; }

.chefviewmaintext {
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: capitalize; }

.chefviewsubtext {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; }

.table-padding {
  padding-left: 1rem;
  padding-right: 1rem; }

.titletext {
  color: var(--text, #222);
  font-family: "Uber Move";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal; }

.pagination_DD {
  border: solid #bfc6d7 1px;
  padding: 4px 14px;
  border-radius: 7px;
  font-size: 14px;
  opacity: 50%; }

.pagination-details {
  font-size: 14px;
  font-weight: 500;
  color: #717171; }

.items-padding {
  margin: 0px 10px; }

.left-pagination-button,
.right-pagination-button {
  border: solid #bfc6d7 1px;
  padding: 7px 9px;
  border-radius: 6px;
  background-color: white;
  display: inline-flex; }

.left-pagination-button {
  margin: 15px; }

.table_row {
  font-size: 14px; }

.css-rzimkc-Table {
  border-bottom: solid #bfc6d7 1px; }

.css-fkzo2x-CELL_CONTAINER_STYLE-Cell {
  margin: 0px 0px !important; }

.css-67dx9u-HEADER_CELL_CONTAINER_STYLE-HeaderCell {
  border-bottom: solid #f4f0f1 1px !important;
  border-top: solid #f4f0f1 1px !important;
  padding: 20px 0px !important; }

.dropdown-menu.show {
  position: unset !important; }

.table > :not(caption) > * > * {
  padding: 0.75rem 0rem !important; }

.table-popup {
  font-size: 14px;
  cursor: pointer; }

.table-popup-content {
  padding: 5px 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  color: black; }

.table-popup-content:hover {
  color: #d51920; }

.popover-body {
  box-shadow: 0 2px 4px rgba(38, 44, 73, 0.3);
  background-color: white;
  padding: 2px 15px !important; }

.css-ctxmxi-Table {
  border-bottom: solid #f4f0f1 1px !important; }

.mainheader {
  color: #222;
  font-family: "Uber Move";
  font-size: 32px;
  font-style: normal;
  font-weight: 700; }

.breadcrumbmenu {
  color: var(--paragraph, #717171);
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; }

.breadcrumbsubmenu {
  color: var(--paragraph, #222);
  font-family: "Uber Move";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; }

.pt-20 {
  padding-top: 20%; }

.w-130 {
  width: 130px; }

.w-180 {
  width: 160px; }

.w-120 {
  width: 120px; }

.w-320 {
  width: 320px !important; }

.font-16 {
  font-size: 16px; }

.popover-body {
  font-family: "Uber Move";
  font-size: 14px; }

.w-350 {
  width: 350px; }

.pointer {
  cursor: pointer; }

.h-50 {
  height: 50px !important; }

.no-data {
  padding: 15px; }

.noradius {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important; }

.stepper .line {
  width: 2px;
  background-color: #d51920 !important; }

.stepper .lead {
  font-size: 1.1rem; }

.ratingclass {
  border: 1px solid #eff2f7 !important;
  border-radius: 20px;
  padding: 7px; }

.rating-color {
  color: #e4a400;
  font-size: 12px; }

.upcoming-grocery-text {
  font-size: 13px;
  color: #1a9882;
  cursor: pointer; }

.pending-pay-text {
  font-size: 13px;
  color: #4f70e7;
  cursor: pointer; }

.arrow-image {
  width: 16px;
  margin: 0px 2px; }

.grocery-btn-height {
  height: 100% !important;
  display: flex; }

.grocery-btn {
  color: white;
  background-color: #d51920;
  border: none;
  border-radius: 3px;
  padding: 4px 15px;
  font-size: 14px; }

.priority-text {
  color: #d51920; }

.grocery-pay-box {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 15px; }

.grocery-pay-head {
  font-size: 20px;
  font-weight: 600; }

.grocery-pay-body {
  font-size: 16px;
  padding: 10px 0px; }

.grocery-pay-border-top {
  border-top: 1px solid #dddddd; }

.grocery-pay-footer {
  font-size: 16px;
  padding: 20px 0px 10px; }

.grocery-img {
  width: 111px;
  height: 115px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px; }

.table-padding {
  padding: 10px 0px; }

.card-width {
  width: 100%; }

.check-radio {
  border: solid black 1px !important; }

.check-label {
  color: #383838;
  padding-right: 30px; }

.payment-radio .form-check-input:checked,
.form-check-input:disabled {
  border-color: #d9d9d9;
  background-color: #ffffff; }

.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url(/images/circle-dark.png?72093ad47a34afbfd3a93fc0d0492661) !important; }

.grocery-pay-btn {
  color: white;
  background-color: #d51920;
  border: none;
  border-radius: 3px;
  padding: 4px 15px;
  font-size: 16px; }

.grocery-paypal-btn {
  color: white;
  background-color: #000;
  border: none;
  border-radius: 3px;
  padding: 4px 15px;
  font-size: 18px;
  font-weight: 500; }

.grocery-manual-btn {
  color: white;
  background-color: #d51920;
  border: none;
  border-radius: 3px;
  padding: 4px 15px;
  font-size: 18px;
  font-weight: 500; }

.css-16xfy0z-control {
  background-color: transparent !important; }

.page-content .form-control:disabled {
  background-color: transparent !important; }

.pad-right-3 {
  padding-right: 3rem !important; }

.h-115 {
  min-height: 115px; }

.text-2 {
  color: #222222; }

.text-grey {
  color: #717171; }

.invoice-border-bottom {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 30px; }

.text-new {
  color: #21a0b2; }

.text-payment-issue {
  color: #de4841; }

.text-refund {
  color: #4f70e7; }

.text-confirmed {
  color: #1a9882; }

.text-cancell {
  color: #de4841; }

.text-grocery {
  color: #1a9882; }

.text-completed {
  color: #1a982e; }

.text-payment {
  color: #4f70e7; }

.text-review {
  color: #4f70e7; }

.payment-receipt .inv-header {
  background-color: #f3f3f3;
  border-radius: 10px; }

.payment-receipt .full-div {
  border-radius: 25px;
  border: solid #d3d3d3 1px; }

.payment-receipt .light-font {
  font-size: var(--text-14);
  color: #717171; }

.payment-receipt .main-heading {
  font-size: 20px;
  font-weight: 600; }

.text-info {
  color: #334bc8; }

.amount-div {
  margin-top: -25px; }

.inv-botn {
  margin-bottom: 200px; }

.password-div {
  position: relative; }

.password-icon {
  position: absolute;
  right: 0px;
  top: 10px;
  margin-right: 25px; }

@media print {
  .inv-header {
    background-color: #f3f3f3;
    border-radius: 10px; }
  .full-div {
    border-radius: 25px;
    border: solid #d3d3d3 1px; }
  .light-font {
    font-size: var(--text-14);
    color: #717171; }
  .main-heading {
    font-size: 20px;
    font-weight: 600; }
  .print-footer {
    position: fixed;
    bottom: 0;
    left: 0; } }

.pac-container {
  inset: 0px auto auto 0px;
  margin: 0px;
  transform: translate(0px, 15px);
  min-width: 300px;
  background-color: #fff;
  position: absolute !important;
  z-index: 1000;
  border-radius: 2px;
  border-top: 1px solid #d9d9d9;
  font-family: Arial, sans-serif;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  box-shadow: 0 0 5px 2px #e9e9e9;
  margin-top: -9px;
  border: none;
  border-radius: 10px; }

.pac-item {
  cursor: default;
  padding: 10px 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
  text-align: left;
  font-size: 11px;
  border-top: none !important;
  color: #515151; }

.pac-logo:after {
  content: "";
  height: 0px !important;
  background-image: none !important; }

.red-text {
  color: #d51920; }

.Modal-padding {
  padding: 2rem !important; }

.cursor {
  cursor: pointer; }

.btn-green {
  background-color: #1a9882 !important;
  color: white !important;
  font-size: 17px !important; }

.white-text {
  color: white;
  font-weight: 500;
  font-size: 16; }

.black-text {
  color: black;
  font-weight: 500;
  font-size: 16; }

.elevate-dropdownMonth .css-tr4s17-option {
  padding: 3px 8px; }

.elevate-dropdownMonth .css-13cymwt-control {
  border: none !important;
  height: 10px;
  background: transparent !important; }

.elevate-dropdownMonth .react-select__placeholder {
  color: #adb5bd;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px; }

.elevate-dropdownMonth .css-1dimb5e-singleValue {
  color: white !important; }

.elevate-dropdownMonth .__value-container {
  font-size: 12px; }

.elevate-dropdownMonth .__control--is-focused {
  background: white !important;
  outline: none !important; }

.elevate-dropdownMonth .css-1nmdiq5-menu {
  background: white !important;
  line-height: 1;
  font-size: 12px;
  color: black !important; }

.elevate-dropdownMonth .css-1u9des2-indicatorSeparator {
  display: none !important; }

.elevate-dropdownMonth .__clear-indicator {
  display: none !important; }

.elevate-dropdownMonthblack .css-13cymwt-control {
  border: none !important;
  height: 10px;
  background: transparent !important; }

.elevate-dropdownMonthblack .react-select__placeholder {
  color: #adb5bd;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px; }

.elevate-dropdownMonthblack .css-1dimb5e-singleValue {
  color: black !important; }

.elevate-dropdownMonthblack .__value-container {
  font-size: 12px; }

.elevate-dropdownMonthblack .__control--is-focused {
  background: transparent !important;
  outline: none !important; }

.elevate-dropdownMonthblack .css-1nmdiq5-menu {
  background: white !important;
  line-height: 1;
  font-size: 12px;
  color: black !important; }

.elevate-dropdownMonthblack .css-1u9des2-indicatorSeparator {
  display: none !important; }

.elevate-dropdownMonthblack .__clear-indicator {
  display: none !important; }

.elevate-dropdownMonthborder .css-13cymwt-control {
  border: 1px solid #d3d3d3 !important;
  height: 10px;
  width: 200px;
  background: white !important; }

.elevate-dropdownMonthborder .w-80 {
  width: 80px; }

.elevate-dropdownMonthborder .react-select__placeholder {
  color: #adb5bd;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px; }

.elevate-dropdownMonthborder .css-1dimb5e-singleValue {
  color: black !important; }

.elevate-dropdownMonthborder .__value-container {
  font-size: 12px; }

.elevate-dropdownMonthborder .__control--is-focused {
  background: white !important;
  outline: none !important; }

.elevate-dropdownMonthborder .css-1nmdiq5-menu {
  background: white !important;
  line-height: 1;
  font-size: 12px;
  color: black !important; }

.elevate-dropdownMonthborder .css-1u9des2-indicatorSeparator {
  display: none !important; }

.elevate-dropdownMonthborder .__clear-indicator {
  display: none !important; }

.elevate-dropdownMonthchart .css-13cymwt-control {
  border: 1px solid #d3d3d3 !important;
  height: 10px;
  width: 80px;
  background: white !important; }

.elevate-dropdownMonthchart .w-80 {
  width: 80px; }

.elevate-dropdownMonthchart .react-select__placeholder {
  color: #adb5bd;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 12px; }

.elevate-dropdownMonthchart .css-1dimb5e-singleValue {
  color: black !important; }

.elevate-dropdownMonthchart .__value-container {
  font-size: 12px; }

.elevate-dropdownMonthchart .__control--is-focused {
  background: white !important;
  outline: none !important; }

.elevate-dropdownMonthchart .css-1nmdiq5-menu {
  background: white !important;
  line-height: 1;
  font-size: 12px;
  color: black !important; }

.elevate-dropdownMonthchart .css-1u9des2-indicatorSeparator {
  display: none !important; }

.elevate-dropdownMonthchart .__clear-indicator {
  display: none !important; }

.smallinc {
  height: 10px;
  width: 10px; }

.inc {
  color: #18bfa2; }

.whiteop {
  color: white;
  opacity: 0.7; }

.red-text {
  color: #d51920;
  font-size: 14px;
  font-weight: 400; }

.h-400 {
  height: 400px; }

.h-440 {
  height: 440px; }

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block; }

.dot-black {
  background-color: #000000; }

.dot-red {
  background-color: #d51920; }

.w-80 {
  width: 80px !important; }

.uber {
  font-family: "Uber Move"; }

.apexcharts-toolbar {
  display: none !important; }

.radio-input {
  accent-color: red !important;
  width: 12px !important; }

.flatpickr-months .flatpickr-month,
span.flatpickr-weekday {
  background-color: #d51920 !important; }

.confirmation-popup {
  top: 233px;
  padding: 20px; }

.confirmation-popup .modal-content {
  padding: 20px; }

.confirm-popup-text {
  font-size: 16px;
  font-weight: 400;
  padding-top: 20px; }

.confirmation-popup-header {
  border-bottom: solid gray 1px; }

.elevate-dropdownMonthchart .css-13cymwt-control {
  width: 100%; }

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

.width-90 {
  width: 90%; }

.padding-0-imp {
  padding: 0px !important; }

@media (max-width: 1441px) {
  .font-16 {
    font-size: 15px; } }

.pag-pad-70 {
  padding-right: 67px !important; }

.rec-item-wrapper {
  justify-content: start !important; }

#customcard .react-select.__indicator.react-select.__dropdown-indicator.css-15lsz6c-indicatorContainer:hover {
  color: white !important; }

.logo-lg-hgt {
  height: 85px; }

.notification-icon-sz {
  width: 30px; }

.elevate-dropdownMonthblack .css-13cymwt-control {
  width: 128px; }

.elevate-dropdownMonthblack .w-90.css-13cymwt-control {
  width: 90px; }

.w-90 {
  width: 90px; }

.react-select.w-9__control.css-13cymwt-control {
  width: 90px; }

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

textarea.form-control {
  min-height: calc(2.5em + 3.94rem + calc(var(--bs-border-width) * 2)) !important; }

.settingscard {
  border: 1px solid #F4F0F1;
  border-radius: 10px;
  padding: 10px;
  /* justify-content: center; */
  /* align-items: center; */
  color: black;
  font-weight: 500;
  font-size: 16px;
  padding-left: 20px; }

.settingscard:hover {
  color: #d51920;
  cursor: pointer; }

.settingscard:hover img {
  transition: 0.3s ease;
  filter: invert(59%) sepia(50%) saturate(3000%) hue-rotate(-50deg) brightness(89%) contrast(107%); }

.settingscard:hover i {
  transition: 0.3s ease;
  filter: invert(59%) sepia(50%) saturate(3000%) hue-rotate(-50deg) brightness(89%) contrast(107%); }

.page-color {
  color: #717171;
  font-weight: 300;
  font-size: 14px; }

.pt-15 {
  padding-top: 15%; }

.dropdown-menu.show {
  top: 75% !important;
  position: absolute !important;
  border-radius: 8px !important; }

.profile-view {
  border-radius: 8px; }

.pro-edit {
  width: 32px;
  height: 32px; }

.pro-name {
  font-size: 16px;
  font-weight: 500; }

.pro-email {
  font-size: 16px;
  font-weight: 400; }

.noti-desc {
  color: 23262F; }

.bold {
  font-weight: 700; }

.Toastify__toast--success {
  background: #fff;
  border-left: 3px solid green;
  color: #000; }

.Toastify__toast--error {
  background: #fff;
  border-left: 3px solid #e74c3c;
  color: #000; }

.css-d7l1ni-option {
  cursor: default;
  display: block;
  font-size: inherit;
  width: 100%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff6f6 !important;
  color: inherit;
  padding: 8px 12px;
  box-sizing: border-box; }

.css-tr4s17-option {
  background-color: #d51920 !important;
  color: #fff !important; }

.overflow-y-auto {
  overflow-y: auto; }

div:has(.invoicemodal) {
  overflow: hidden; }

.invoicemodal .modal-content {
  overflow: auto;
  height: 100%; }

body::-webkit-scrollbar-thumb {
  background: #d51920;
  height: 500px; }

body::-webkit-scrollbar {
  width: 6px;
  overflow: none; }

.invoicemodal .modal-content::-webkit-scrollbar-thumb {
  background: #d51920;
  height: 500px; }

.invoicemodal .modal-content::-webkit-scrollbar {
  width: 6px;
  overflow: none; }

.border-right {
  border-right: 1px solid #ccc; }

.text-wrap {
  text-wrap: wrap; }

.primary-color {
  color: #d51920; }

.DraftEditor-editorContainer p,
a,
li ul {
  color: black;
  font-size: 16px;
  font-family: "Uber Move"; }

.DraftEditor-editorContainer span {
  color: black;
  font-size: 16px;
  font-family: "Uber Move"; }

.page-content .form-control {
  color: #212529;
  border: none;
  border-radius: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 16px;
  padding-top: 14px;
  padding-bottom: 10px; }

.align-right-end {
  display: flex;
  justify-content: flex-end; }

@media (max-width: 1599px) {
  .md-font {
    font-size: 15px !important; }
  h5, .h5 {
    font-size: 15px !important; }
  .font-size-16 {
    font-size: 15px !important; }
  thead {
    font-size: 15px !important; }
  td {
    font-size: 15px !important; }
  .inactiveclass {
    font-size: 15px; }
  .activeclass {
    font-size: 15px; }
  .upcoming-grocery-text {
    font-size: 12px;
    color: #1a9882;
    cursor: pointer; }
  #pendingcard {
    width: 270px !important; } }

@media (max-width: 1280px) {
  .md-font {
    font-size: 15px !important; }
  #pendingcard {
    width: 270px !important; }
  h5, .h5 {
    font-size: 15px !important; }
  .font-size-16 {
    font-size: 15px !important; }
  thead {
    font-size: 15px !important; }
  td {
    font-size: 15px !important; }
  .inactiveclass {
    font-size: 15px; }
  .activeclass {
    font-size: 15px; }
  .upcoming-grocery-text {
    font-size: 12px;
    color: #1a9882;
    cursor: pointer; } }

.pay-btn {
  color: white !important;
  background: red !important;
  font-size: 16px !important;
  font-weight: 500 !important; }

.bg-grey {
  background-color: #F9F9F9; }

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

.fw-500 {
  font-weight: 500; }

.bg-pink-card {
  background-color: #FDF3F4; }

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

.font-size-16 {
  font-size: 16px; }

.stepper-scroll::-webkit-scrollbar-thumb {
  background: #d51920;
  height: 500px; }

.stepper-scroll::-webkit-scrollbar {
  width: 6px;
  overflow: none; }

.w-9__value-container {
  font-size: 11px !important; }

.elevate-dropdownMonth .__value-container {
  font-size: 11px !important; }

.elevate-dropdownMonthblack .__value-container {
  font-size: 11px !important; }

.elevate-dropdownMonthchart .__value-container {
  font-size: 11px !important; }

.text-black {
  color: black !important; }

.list .css-1jqq78o-placeholder {
  color: black; }

.list .css-tj5bde-Svg {
  fill: black; }

.list .css-1dimb5e-singleValue {
  color: black !important; }

.payment-receipt .inv-header-pink {
  background-color: #FDF3F4;
  border-radius: 10px; }

.border-tp {
  border: 1px solid;
  margin-right: 3px; }

.rdw-editor-main {
  font-size: 16px !important;
  color: #212529 !important; }

.faq-cat .css-1nmdiq5-menu {
  z-index: 10000; }

.bg-cus-danger {
  background: #f9ddde !important;
  border-radius: 10px;
  padding: 15px; }

.h-90 {
  height: 90% !important; }

.user-profile-icon {
  background-color: #f4cbcc;
  color: #d51920;
  border-radius: 50px;
  width: 34px;
  height: 34px;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center; }

.menuSlidersize {
  object-fit: cover; }

.login-wrapper .login-logo {
  float: none !important;
  height: 11vh !important;
  height: 12vh !important; }

.profile-user {
  object-fit: cover !important; }

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

.chef-view-booking {
  max-width: 55% !important;
  height: 90vh !important;
  overflow-y: hidden !important;
  overflow-x: hidden !important; }

.chef-booking-stepper {
  overflow-y: auto !important;
  height: 73vh !important; }

.fw-weight-600 {
  font-weight: 600; }

.footer-menu-hover {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-transform: capitalize; }

.footer-menu-hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.2px;
  background: var(--color-dark-1);
  transition: width 0.3s ease; }

.footer-menu-hover:hover::after {
  width: 100%; }

.invoice-btn {
  min-width: 160px; }

.custom-dd-wdt-dash .css-13cymwt-control {
  width: 100%; }

/*Added by Anish for mobile menu starts*/
body[data-sidebar-size="sm"] #sidebar-menu .metismenu .mm-collapse.mm-show {
  display: none; }

body[data-sidebar-size="sm"] #sidebar-menu ul li > a {
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 13px;
  margin: 8px 10px 0px 10px; }

body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > a {
  position: relative;
  width: calc(180px + 70px);
  color: #d51920;
  background-color: #f3f8fb;
  transition: none;
  box-shadow: inset 0 3px 10px 0 rgba(154, 161, 171, 0.2); }
  body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > a i {
    color: #d51920; }
  body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > a span {
    display: inline !important; }

body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > ul {
  display: block;
  left: 70px;
  position: absolute;
  width: 190px;
  height: auto !important;
  box-shadow: 3px 5px 10px 0 rgba(54, 61, 71, 0.1); }
  body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > ul.mm-collapse.mm-show {
    display: block; }
  body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > ul.sub-menu {
    margin: 0px; }
  body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > ul ul {
    box-shadow: 3px 5px 10px 0 rgba(54, 61, 71, 0.1); }
  body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > ul a {
    box-shadow: none;
    padding: 8px 20px;
    position: relative;
    width: 190px;
    z-index: 6;
    color: #7b8190; }
    body[data-sidebar-size="sm"] #sidebar-menu ul li:hover > ul a:hover {
      color: white; }

/*Added by Anish for mobile menu ends*/
body * {
  outline: none; }

.react-bootstrap-table-page-btns-ul {
  margin-bottom: 0px; }

.close {
  background: transparent;
  border: 0;
  font-size: 10px;
  padding: 1.35rem 1.25rem;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  width: 1em;
  height: 1em;
  z-index: 2; }
  .close span {
    display: none; }

.rangeslider__fill {
  background-color: #556ee6 !important; }

.rdw-editor-main {
  border: 1px solid #f6f6f6;
  height: 239px; }

.dz-message {
  text-align: center;
  margin: 2em 0; }

.bs-select select {
  width: auto !important; }

.apexcharts-canvas text {
  fill: #808191 !important; }

.card-columns .card {
  margin-bottom: 1.25rem; }

@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1; }
    .card-columns .card {
      display: inline-block;
      width: 100%; } }

.carousel-custom .carousel-dark .carousel.slide .carousel-indicators [data-bs-target] {
  background: #000;
  border-color: #fff; }

.carousel-custom .carousel.slide .carousel-indicators [data-bs-target] {
  border: 1px solid #000;
  background: #fff;
  height: 2px;
  opacity: 0.4; }

.carousel-custom .carousel.slide .carousel-indicators .active {
  opacity: 1; }

.cursor-pointer {
  cursor: pointer; }

.wysiwyg-custom .rdw-link-modal {
  height: auto; }

.wysiwyg-custom .rdw-embedded-modal-header .rdw-embedded-modal-header-option {
  width: auto; }

.formXeditable-custom button {
  margin-left: 5px; }

.dropdown-toggle:after {
  display: none !important; }

.react_table thead tr th div:last-child {
  min-height: 38px; }

#sidebar-menu ul li ul.sub-menu {
  margin: 0px 25px;
  padding: 5px 0px !important;
  border-radius: 0px 0px 5px 5px; }

#side-menu.mico-menu {
  margin-top: 20px; }

#side-menu,
#sidebar-menu {
  padding: 0px; }

.dashImg {
  background-image: url(/images/dashboard.svg?d19db1ebe9bb55b108a2cb36c3c6cd26); }

#side-menu > ul > li:hover > a i.dashImg,
.mm-active > a i.dashImg {
  background-image: url(/images/activedashboard.svg?67999f01a2e95098c5eba283c10a6210); }

.chefImg {
  background-image: url(/images/chefs.svg?6eecfb6cfc365ec1d9a5094c92bfbe27); }

#side-menu > ul > li:hover > a i.chefImg,
.mm-active > a i.chefImg {
  background-image: url(/images/activechefs.svg?7241459e803de19fcd4d297d81543d7a); }

.faqImg {
  background-image: url(/images/Faq.svg?475a2bf739eea003a3096715c4cd2092); }

#side-menu > ul > li:hover > a i.faqImg,
.mm-active > a i.faqImg {
  background-image: url(/images/activefaq.svg?4845bfa72b7a93e04d55d5842e09da9c); }

.groceryImg {
  background-image: url(/images/groceryimg.svg?36fcbb1c6b61620f5df59ad9b778dcd3); }

#side-menu > ul > li:hover > a i.groceryImg,
.mm-active > a i.groceryImg {
  background-image: url(/images/a_grocery.svg?a473b5e31d0340c44c30654cd6188da4); }

.pendingImg {
  background-image: url(/images/pendingimg.svg?c88d55d0167a2a394df51f48d2a0a5da); }

#side-menu > ul > li:hover > a i.pendingImg,
.mm-active > a i.pendingImg {
  background-image: url(/images/a_pending.svg?44791a40d136cef9680f839674551781); }

.cuisineImg {
  background-image: url(/images/cuisine.svg?83e0b743341154ccecfa31d7ea997f9e); }

#side-menu > ul > li:hover > a i.cuisineImg,
.mm-active > a i.cuisineImg {
  background-image: url(/images/activecuisine.svg?99ccf282a8f0ee7f82e5906bc6555cd4); }

.bookingsImg {
  background-image: url(/images/bookings.svg?ca36fc9524d7a9689e35704f91797fca); }

#side-menu > ul > li:hover > a i.bookingsImg,
.mm-active > a i.bookingsImg {
  background-image: url(/images/activebookings.svg?a452a925a80a21efec6400e6abfefb3c); }

.invoiceImg {
  background-image: url(/images/invoice-da.svg?45efcf33b9a98ed909a4d2369bea16a7); }

#side-menu > ul > li:hover > a i.invoiceImg,
.mm-active > a i.invoiceImg {
  background-image: url(/images/activeInvoice.svg?fcf5036a109a3de164a49ec066310328); }

.cusImg {
  background-image: url(/images/customers.svg?fff008d63a490daead5a795e31ed0f44); }

#side-menu > ul > li:hover > a i.cusImg,
.mm-active > a i.cusImg {
  background-image: url(/images/activecustomers.svg?8b9b12ca980735d9296d887998485671); }

.logoutImg {
  background-image: url(/images/signout.svg?ab6c8d88038a11f877e026df8ccbebdf); }

#side-menu > ul > li:hover > a i.logoutImg,
.mm-active > a i.logoutImg {
  background-image: url(/images/activelogout.svg?2b1c395ee52dfc8f4b25628727d9e547); }

.cancelImg {
  background-image: url(/images/cancelation.svg?a53e1525dbf8ad3a4cbe907e066ba64c); }

#side-menu > ul > li:hover > a i.cancelImg,
.mm-active > a i.cancelImg {
  background-image: url(/images/acancellations.svg?a403ff63c50facee75dfcf3206d34b30); }

.InvoiceImg {
  background-image: url(/images/invoices.svg?042df0cfb359b914af3c10d0abe03720); }

#side-menu > ul > li:hover > a i.InvoiceImg,
.mm-active > a i.InvoiceImg {
  background-image: url(/images/activeinvoices.svg?6268da8d08f0c983225a550152f8f41d); }

.ReviewImg {
  background-image: url(/images/reviews.svg?36fee0d98e8e12e4b1309be2f40c2728); }

#side-menu > ul > li:hover > a i.ReviewImg,
.mm-active > a i.ReviewImg {
  background-image: url(/images/activereviews.svg?025df7dfc3a568e8213e468cfaf8ddb0); }

.PageImg {
  background-image: url(/images/page.svg?5bd5e3f62455dbb288384e7e375862f3); }

#side-menu > ul > li:hover > a i.PageImg,
.mm-active > a i.PageImg {
  background-image: url(/images/page-active.svg?aa5da565db9606cffb15171ad4e5ef26); }

.webReviewImg {
  background-image: url(/images/web-review.svg?5424ae7a644f120e6d99599ecf069d6c); }

#side-menu > ul > li:hover > a i.webReviewImg,
.mm-active > a i.webReviewImg {
  background-image: url(/images/web-review-active.svg?e225567ec918da2f75e99886c700d501); }

.userImg {
  background-image: url(/images/userimg.svg?02024823e87fee102640f6cfa82812ae); }

#side-menu > ul > li:hover > a i.userImg,
.mm-active > a i.userImg {
  background-image: url(/images/activeusers.svg?f3efa7eeb4ee1f5acebfd39fe5eb34c0); }

.enquiryImg {
  background-image: url(/images/Enquiry.svg?a69b4dbe0fd1d9bc8b37110c7f28a294); }

#side-menu > ul > li:hover > a i.enquiryImg,
.mm-active > a i.enquiryImg {
  background-image: url(/images/activeInquiries.svg?4093bb22646ac23309f9ce94fb1d5181); }

.dotsimg {
  background-image: url(/images/dotsicons.svg?bd676d002776a0cffb2d7c3da73b69c3);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-top: 10px; }

#side-menu > ul > li:hover > a i.dotsimg,
.mm-active > a i.dotsimg {
  background-image: url(/images/activedots.svg?bed968b20f98a06c5920a72b708e42f9);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px; }

.settingsImg {
  background-image: url(/images/settins.svg?90417ecb2be9f4a244c41eb5111369ce); }

#side-menu > ul > li:hover > a i.settingsImg,
.mm-active > a i.settingsImg {
  background-image: url(/images/activesettings.svg?377a749fe6f1637e15803604dd62bb59); }

.paymentsImg {
  background-image: url(/images/payments.svg?b82b11b84489f19812c1e77193c2b2da); }

#side-menu > ul > li:hover > a i.paymentsImg,
.mm-active > a i.paymentsImg {
  background-image: url(/images/activepayments.svg?abf47a136c66a47e72f548f1ba85a76d); }

.reportsImg {
  background-image: url(/images/reports.svg?545b152d201c4448735f44ead0b59f9c); }

#side-menu > ul > li:hover > a i.reportsImg,
.mm-active > a i.reportsImg {
  background-image: url(/images/activereports.svg?ee4d45e39c319ce0e532614a9d701f09); }

.sidebar-menu-scroll .simplebar-wrapper .roundIcon {
  height: 6px;
  background: #d51920;
  border-radius: 50%;
  width: 6px;
  padding: 0px;
  margin: 0px;
  top: 15px;
  position: absolute; }

.sidebar-menu-scroll .simplebar-wrapper li.mm-active > .active > .roundIcon {
  background: #383838; }

.sidebar-menu-scroll .simplebar-wrapper .mm-active,
.sidebar-menu-scroll .simplebar-wrapper .mm-active > i {
  color: #383838 !important; }

.sidebar-menu-scroll .simplebar-wrapper .mm-active > a {
  background-color: #ffffff !important;
  color: #d51920 !important;
  font-weight: 400 !important;
  border-right: 5px solid #d51920; }

.sidebar-menu-scroll .simplebar-wrapper #side-menu ul li.mm-active > a {
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 5px 5px 0px 0px !important; }

.sidebar-menu-scroll .simplebar-wrapper #side-menu ul li.mm-active ul {
  margin: 0px 10px;
  border-radius: 0px 0px 5px 5px; }
  .sidebar-menu-scroll .simplebar-wrapper #side-menu ul li.mm-active ul.sub-menu a {
    padding: 0.5rem 1.5rem 0.5rem 1.9rem; }

.sidebar-menu-scroll .simplebar-wrapper #side-menu ul li a {
  color: #383838 !important; }

.sidebar-menu-scroll .simplebar-wrapper #side-menu .has-arrow:after {
  transform: rotate(-90deg) !important; }

.page-content {
  padding: calc(110px + 1.25rem) calc(1.25rem / 1) 60px calc(1.25rem / 1);
  background-color: #fff;
  padding-bottom: 1px; }

#divToPrint > div {
  background-color: #fff !important; }

#divToPrint > div > div {
  background-color: #fff !important; }

#divToPrint > div > div > div {
  background-color: #fff !important; }

#divToPrint > div > div > div > div {
  background-color: #fff !important; }

.edit-quotation-total-details {
  width: 100% !important; }

.view-minheight {
  padding-top: 7px !important;
  padding-bottom: 15px !important; }

.mic-card-table {
  font-size: 12px; }

.supplier-nav .nav-item a.active {
  background: none !important; }

.complete-badge {
  background-color: #007bff !important; }

.purchase-badge {
  background-color: #d51920 !important; }

.quotation-details .quotation-amount {
  font-weight: 600;
  color: #212529;
  margin-top: 20px; }

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: none;
  color: none; }

.quotation-details .table-striped > tbody > tr:nth-of-type(even) > td {
  background: none; }

.quotation-details .table-striped th {
  background-color: #61bee1; }

.page-content .form-label {
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px; }

.page-content .right-align {
  margin-right: 20px; }

.custom-border-color {
  border-color: #779bbb !important; }

.primarybtn {
  background: #fff !important;
  color: #d51920;
  border: 1px solid #d51920;
  width: 95px;
  height: 36px;
  font-family: "Uber Move";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal; }

