body {
  background: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: #2a3547;
}

#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#loading .spinner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 15px solid #f3f3f3;
  border-top-color: #539bff;
}

.m-btn {
  background: #539bff;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  padding-right: 15px;
}
.m-btn i {
  font-size: 20px;
  margin-top: 1px;
  margin-right: 5px;
}
.m-btn:hover {
  color: #fff;
  background: #4784d9;
}

.btn-more {
  text-align: center;
  margin: auto;
  display: block;
  font-weight: 600;
}

#main {
  width: auto;
  flex-grow: 1;
  padding: 0 40px;
  background-image: url("../global/img/bg15.png");
  background-size: 40% 100%;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: fixed;
}

.sidebar {
  width: 80px;
  position: relative;
}
.sidebar .wrapper {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #3C4480;
  width: 80px;
  height: 100%;
  transition: all 0.3s;
  position: fixed;
  padding: 10px;
  z-index: 101;
}
.sidebar .wrapper:hover {
  width: 300px;
  background: #4c56a3;
}
.sidebar .wrapper:hover .logo .logo_img {
  height: 80px;
}
.sidebar .wrapper:hover .logo .logo_text {
  height: 40px;
}
.sidebar .wrapper:hover ul li a {
  width: 280px;
}
.sidebar .wrapper:hover ul li a .icon {
  background: none;
}
.sidebar .wrapper:hover ul li a .text {
  max-width: 100%;
}
.sidebar .wrapper .logo {
  height: 80px;
}
.sidebar .wrapper .logo .logo_img {
  width: 100%;
  height: 50px;
  transition: all 0.2s;
  margin-top: 3px;
}
.sidebar .wrapper .logo .logo_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar .wrapper .logo .logo_text {
  width: 100%;
  height: 0;
  margin-top: 5px;
}
.sidebar .wrapper .logo .logo_text img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar .wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 70px;
}
.sidebar .wrapper ul li {
  padding: 0;
  margin: 0;
  color: #fff;
  margin-bottom: 5px;
  margin-top: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2666666667);
  transition: all 0.2s;
}
.sidebar .wrapper ul li:hover {
  background: rgba(0, 0, 0, 0.15);
}
.sidebar .wrapper ul li:hover a .arrow {
  width: 20px;
  opacity: 1;
  margin-right: 25px;
}
.sidebar .wrapper ul li a {
  width: auto;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.sidebar .wrapper ul li a .icon {
  width: 50px;
  height: 50px;
  text-align: center;
  padding-left: 7px;
  font-size: 34px;
}
.sidebar .wrapper ul li a .text {
  margin-left: 10px;
  max-width: 0;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar .wrapper ul li a .arrow {
  opacity: 0;
  width: 0;
  height: auto;
  margin-left: auto;
  margin-right: 0;
  transition: width 0.2s, opacity 0.4s, margin-right 0.4s;
}
.sidebar .wrapper ul li a .arrow img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

header {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 7px;
  box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
  padding: 20px;
  position: fixed;
  width: calc(100% - 160px);
  z-index: 100;
}

section {
  margin-bottom: 60px;
}
section:first-of-type {
  margin-top: 100px;
}
section .header {
  margin-bottom: 26px;
  background: #ebf3fe;
  height: 120px;
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  position: relative;
  border-radius: 7px;
  box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
}
section .header h1 {
  padding: 0;
  margin: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #2a3547;
}
section .header #breadcrumbs {
  margin-top: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #6e6e6e;
  padding: 0;
  margin: 0;
  margin-top: 10px;
}
section .header #breadcrumbs li {
  display: inline-block;
  margin-right: 5px;
}
section .header #breadcrumbs li:after {
  content: ">";
  margin-left: 5px;
}
section .header #breadcrumbs li:last-of-type:after {
  content: "";
  margin-left: 0;
}
section .header #breadcrumbs li a {
  color: #6e6e6e;
  text-decoration: none;
}
section .header .icon {
  position: absolute;
  right: 60px;
  top: 80%;
  transform: translateY(-50%);
  width: 170px;
  height: 170px;
  overflow: hidden;
}
section .header .icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}
section .header-small h2 {
  font-size: 20px;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
section .wrapper {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 7px;
  box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=search],
input[type=tel],
input[type=url],
input[type=color],
select,
textarea {
  background: #f4f6f9 !important;
  border: none !important;
}

.input-group-text {
  border: none !important;
}

label {
  font-weight: 500 !important;
}

#offer_maker .equipment {
  margin-top: 30px;
}
#offer_maker .equipment h3 {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
#offer_maker .equipment h4 {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.summary h4 {
  font-size: 20px;
  font-weight: 700;
}
.summary h5 {
  font-size: 16px;
  font-weight: 700;
}
.summary .price_summary {
  font-size: 16px;
  font-weight: 500;
}
.summary .size_summary {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
}
.summary .types_summary {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
}
.summary .types_summary h5 {
  padding: 0;
  margin: 0;
  margin-top: 5px;
}
.summary .equipment_summary {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 400;
}
.summary .equipment_summary h5 {
  font-size: 15px;
}
.summary .equipment_summary ul {
  margin-bottom: 10px;
}

.table {
  padding: 5px;
}
.table thead tr th {
  border: none;
  font-size: 12px;
  font-weight: 400;
  padding: 10px 20px;
}
.table tbody tr {
  padding-bottom: 10px;
  transition: all 0.2s;
}
.table tbody tr:hover {
  background: #ebf3fe;
  cursor: pointer;
}
.table tbody tr td {
  font-size: 14px;
  font-weight: 600;
  padding: 20px;
  border: none;
  border-top: 1px solid #f3f3f3;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
  transition: opacity 0.5s ease;
  z-index: 102;
}
.modal.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
.modal .modal-content {
  background-color: #fefefe;
  margin: 2% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 1200px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 25px;
}
.modal .modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 5px;
  top: -10px;
}
.modal .modal-content .close:hover, .modal .modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal .modal-content .date {
  font-size: 16px;
}
.modal .modal-content .offerDetails {
  font-size: 14px;
  margin-top: 5px;
}
.modal .modal-content .uploadedImg {
  position: relative;
  width: auto;
  height: 300px;
  margin-top: 10px;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
}
.modal .modal-content .uploadedImg .add-when-no-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  padding: 40px;
}
.modal .modal-content .uploadedImg .addImgText {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(83, 155, 255, 0.7);
  transition: all 0.2s;
}
.modal .modal-content .uploadedImg .addImgText span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-content .uploadedImg:hover {
  cursor: pointer;
}
.modal .modal-content .uploadedImg:hover .addImgText {
  opacity: 1;
}
.modal .modal-content .uploadedImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal .modal-content table tr {
  border-bottom: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.select2-container--classic .select2-selection--single,
.select2-container--classic .select2-selection--single .select2-selection__arrow,
.select2-container--classic .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__rendered {
  border-color: #ebf1f6;
  color: #5a6a85;
  height: 36px;
  line-height: 36px;
  background: #f4f6f9;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  padding: 4px;
}

.dashboard .icons-info .item .card {
  height: 190px;
  background: #ebf3fe;
  color: #0d6efd;
  padding-top: 15px;
  border: none;
}
.dashboard .icons-info .item .card p {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.dashboard .icons-info .item .card .amount {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
.dashboard .icons-info .item .clients {
  background: #fef5e5;
  color: rgb(255, 174, 31);
}
.dashboard .icons-info .item .offers-sold {
  background: #fbf2ef;
  color: rgb(250, 137, 107);
}
.dashboard .icons-info .item .profit {
  background: #e6fffa;
  color: rgb(19, 222, 185);
}
.dashboard .icons-info .item .percentage {
  background: #dde8ff;
  color: #619df6;
}/*# sourceMappingURL=style.css.map */