body {
  font-family: 'Nunito', "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  color: #73389b;
}

/* Header
-----------------------------*/
#bigboy-header {
  background-color: #000;
  padding: 20px 0;
}

#bigboy-header .logo {
  width: 110px;
  float: left;
  margin-right: 15px;
}

#bigboy-header h1 {
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
  float: right;
  text-align: right;
  margin: -4px 0 0 0;
  line-height: 1.1;
}

#bigboy-header h1 span {
  font-size: 16px;
  display: block;
}


.main {
  padding-top: 30px;
}

.bg-grey {
  background-color: #f2f2f2;
}

.bigboy-header {
  padding-top: 20px;
  padding-bottom: 25px;
}

.bigboy-header h1 {
  font-weight: 300;
  font-size: 24px;
  color: #73389b;
  text-transform: uppercase;
  margin-bottom: 0;
}

.bigboy-header h2 {
  font-weight: 300;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 0;
}

h3.section-title {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
}

p.section-subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-top: 15px;
}

p.section-subtitle br {
  display: none;
}


.bigboy-intro-pdf {
  display: none;
  margin-bottom: 20px;
}

.bigboy-intro-pdf h3 {
  font-size: 20px;
}

.bigboy-intro-pdf h3 span {
  text-transform: none;
}

.bigboy-intro-pdf h5 {
  font-size: 18px;
  color: #666;
  margin-top: 5px;
}

.bigboy-intro-pdf a {
  display: block;
}

.bigboy-intro-pdf a:hover,
.bigboy-intro-pdf a:visited {
  color: #73389b;
  text-decoration: none;
}

.dragdrop-section h3.section-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.dragdrop-message {
  color: #7c7979;
  font-size: 13px;
}

.box-rounded {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

ul.drag-element-list {
  padding: 0;
}

.drag-element-list li {
  width: 23%;
  display:block;
  text-align: center;
  float: left;
  max-width: 120px;
  margin-right: 10px;
}

.drag-element-list li:last-child {
  margin-right: 0;
}

ul.drag-element-list h5 {
  font-size: 12px;
  color: #73389b;
  font-weight: 600;
  margin-bottom: 0;
}

ul.drag-element-list h6 {
  font-size: 12px;
  margin-bottom: 0;
}

.drag-element {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 6px 2px;
  display: block;
  max-width: 130px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-transition: border .3s ease-in-out, background-color .3s ease-in-out;
  transition: border .3s ease-in-out, background-color .3s ease-in-out;
}

.drag-element:hover {
  border: 1px solid #73389b;
  background-color: #f2f2f2;
}

.drag-element.disabled-element:hover {
  background-color: #fff;
}

.drag-element img {
  max-width: 85px;
}

.droppable-container {
  position: relative;
}

.add-element {
  position: absolute;
  left: 9%;
  top: 12%;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.add-element:hover {
  color: #73389b;
}


.Modal-overlay-0-1-1 .Modal-modal-0-1-3 {
  padding: 1.2rem 2rem;
}

/* Form */

.form-group {
  margin-top: 8px;
  border-bottom: 1px solid #eef1f3;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  position: relative;
}

.form-group > label {
  position: relative;
  padding-left: 10px;
  display: block;
}

.form-group > label::before {
  position: absolute;
  top: -2px;
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  color: #73389b;
  font-size: 16px;
}

.form-group label i {
  color: #73389b;
  font-size: 15px;
  margin-right: 5px;
}

.form-group select {
  width: 210px;
  color: #73389b;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  padding: 2px;
}

/* The switch - the box around the slider */
.form-group label.input-switch {
  position: relative;
  display: block;
  width: 60px;
  height: 34px;
  padding-left: 0;
}

/* Hide default HTML checkbox */
.input-switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #73389b;
}

input:focus + .slider {
  box-shadow: 0 0 1px #73389b;
}

input:checked + .slider::before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

ul.list-control {
  max-width: 374px;
  padding: 0;
  list-style: none;
  color: #73389b;
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
}

/*ul.list-control.six-options {
  max-width: 205px;
}*/

ul.list-control li {
  display: block;
  float: left;
  border-right: 1px solid #fff;
  width: 16.5%;
}

ul.list-control li:nth-child(-n + 6) {
  border-bottom: 1px solid #fff;
}

ul.list-control.six-options li {
  border-bottom: none;
}

ul.list-control li:last-child {
  border-right: none;
}

ul.list-control li button {
  display: block;
  background-color: #f2f2f2;
  padding: 4px;
  text-align: center;
  height: 30px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  color: #73389b;
  transition: background-color .3s ease-in-out;
}

ul.list-control li.selected button {
  background-color: #73389b;
  color: #fff;
}

ul.list-control li.disabled button {
  color: #999;
  cursor: default;
  font-weight: 300;
}

ul.list-control li button:hover {
  text-decoration: none;
  background-color: #fff;
}

ul.list-control li.disabled button:hover {
  background-color: transparent;
  color: #999;
}

ul.list-control li.selected button:hover  {
  background-color: #fff;
  color: #73389b;
}

ul.list-control li.selected button:focus {
  background-color: #73389b;
  color: #fff;
}

ul.list-control li button:focus {
  background-color: #f2f2f2;
  color: #73389b;
}

@supports (-webkit-overflow-scrolling: touch) {
  ul.list-control li button:hover {
    text-decoration: none;
    background-color: transparent;
  }

  ul.list-control li.disabled button:hover {
    background-color: transparent;
    color: #999;
  }

  ul.list-control li.selected button:hover  {
    background-color: #73389b;
    color: #fff;
  }

  ul.list-control li.selected button:focus {
    background-color: #fff;
    color: #73389b;
  }

  ul.list-control li button:focus {
    background-color: #f2f2f2;
    color: #73389b;
  }
}

/* */

.form-group .radio-group input[type=radio] {
  position: absolute;
  visibility: hidden;
  display: none;
}

.form-group .radio-group label {
  display: block;
  float: left;
  cursor: pointer;
  font-weight: bold;
  padding: 5px 20px;
  margin-bottom: 0;
  border-right: solid 1px #ccc;
  background-color: #f2f2f2;
  font-weight: 600;
  color:  #73389b;
  transition: background-color .3s ease-in-out;
}

.radio-group label:last-child {
  border-right: none;
}

.radio-group label:hover {
  background-color: #fff;
}

.radio-group input[type=radio]:checked + label {
  color: #fff;
  background: #73389b ;
}

.radio-group input[type=radio]:checked + label:hover {
  cursor: default;
}

.radio-group input[type=radio].disabled + label {
  cursor: default;
  color: #999;
  background-color: #f2f2f2;
}

.radio-group {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}


/* Details */
.switch-details {
  margin-bottom: 20px;
  border: 1px solid #eef1f3;
  background-color: #f9f9f9;
  padding-top: 15px;
  padding-bottom: 15px;
}

.dragdrop-section .switch-details h3.section-title {margin-bottom: 15px;}

.total-item {
  font-size: 14px;
  position: relative;
  padding-left: 10px;
}


.total-item::before {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: -1px;
  left: 0px;
  content: "\f0da";
  font-weight: 600;
  color: #73389b;
}

.total-ports,
.poe-budget {
  font-weight: 600;
}

.total-item span {
  font-weight: 600;
  color: #73389b;
}

.total-ports {
  border-bottom: 1px solid #eef1f3;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

/* Table
---------------------------------------------*/
.table-details {
  background-color: #f2f2f2;
  padding: 40px 0;
}

.switch-table {
  padding-top: 20px;
  padding-bottom: 20px;
}

.results-table {
  margin: 10px 0 20px;
}

#table-to-xls {
  width: 100%;
}

.xls-export-component {
  display: none;
}


.table-row {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
  display: block;
}


.table-header .table-col {
  color: #73389b;
  font-size: 13px;
  text-transform: uppercase;
}

.table-content .table-col {
  font-size: 13px;
  display: block;
}

.table-col.prd-desc {
  color: #73389b;
  font-size: 15px;
  line-height: 1.3;
}

.table-col.sku {
  float: left;
}

.table-col.quantity {

}

.table-footer .table-row {
  background-color: #73389b;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.section-table .form-group {
  margin:  10px 0;
}

.section-table .form-group label {
  margin-right: 10px;
  display: inline;
}


button.button {
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  background-color: #73389b;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;

  transition: background-color .3s ease-in-out;
}

button.button.icon {
  position: relative;
  padding-left: 40px;
}

button.button.icon::before {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 9px;
  left: 19px;
}

button.button.icon.pdf::before {
  content: "\f1c1";
}

button.button.icon.xls::before {
  content: "\f1c3";
}

button.button.icon.email::before {
  content: "\f0e0";
}

.table-buttons button i {
  margin-right: 3px;
  font-size: 15px;
}

button.button:hover {
  background-color: #8e49bd;
}

.table-buttons button {
  margin-right: 15px;
  margin-bottom: 15px;
}

h5.bill {
  font-size: 15px;
  margin: 10px auto 20px;
}

h5.bill span {
  color: #73389b;
  font-weight: 600;
}


@media (min-width: 420px) {
  #bigboy-header h1 {
    font-size: 14px;
  }

  #bigboy-header h1 span {
    font-size: 17px;
  }

  ul.list-control li {
    width: auto;
    border-bottom: none !important;
  }

  ul.list-control.six-options {
    max-width: 195px;
  }

  ul.list-control li button {
    width: 30px;
    height: 32px;
    padding: 6px 4px 6px;
  }
}

@media (min-width: 480px) {
  .switch-details .port-item {
    width: 50%;
    display: inline-block;
  }

  .switch-details .port-item.total-ports {
    display: block;
    width: 100%;
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .container {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .main {
    padding-top: 30px;
  }

  #bigboy-header .logo {
    width: 160px;
    float: left;
    margin-right: 42px;
  }

  #bigboy-header h1 {
    float: right;
    font-size: 20px;
    line-height: 40px;
  }

  #bigboy-header h1 span {
    font-size: 20px;
    display: inline-block;
    margin-right: 10px;
  }
  .bigboy-header h2 {
    font-size: 16px;
  }

  .form-group {
    margin-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  ul.list-control li {
    width: 16.5%;
    border-bottom: none !important;
  }

  ul.list-control.six-options {
    max-width: none;
  }

  ul.list-control li button {
    width: 100%;
    height: 27px;
    padding: 6px 4px 6px;
  }

  ul.list-control.six-options li button  {
    height: 32px;
  }

  /* Table */
  #table-to-xls {
    display: table;
  }

  .table-details {
    padding: 50px 0;
    margin-top: 25px;
  }

  .results-table {
    background-color: #f2f2f2;
    border-radius: 15px;
    width: 100%;
    display: table;
    margin: 10px 0 40px;
  }

  .table-header,
  .table-content,
  .table-footer {
    display: table-row-group !important;
  }

  .table-row {
    display: table-row;
    margin-bottom: 0;
    border-bottom: none;
  }

  .table-header .table-col,
  .table-content .table-col,
  .table-footer .table-col {
    display: table-cell;
    border-bottom: 2px solid #fff;
    padding: 7px 10px;
    line-height: 16px;
  }

  .table-header .table-col {
    font-weight: 600;
  }

  .table-col.sku {
    float: none;
    width: 22%;
  }

  .results-table .table-col.quantity {
    text-align: center;
  }

  .table-col.prd-desc {
    line-height: 1.2;
  }

  .results-table .table-footer .table-col-total {
    text-transform: uppercase;
    font-weight: 600;
  }

  .table-content .table-col {
    padding: 8px 10px;
  }

  button.button {
    padding: 12px 30px;
  }

  button.button.icon {
    padding-left: 50px;
  }

  button.button.icon::before {
    top: 12px;
    left: 25px;
  }

  .dragdrop-section h3.section-title {
    margin-bottom: 0;
    font-size: 18px;
  }

  p.section-subtitle br {
    display: block;
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 992px) {
  .main {
    padding-top: 40px;
  }

  ul.list-control li {
    width: auto;
    border-bottom: none !important;
  }

  ul.list-control.six-options {
    max-width: 195px;
  }

  ul.list-control li button {
    width: 30px;
    height: 32px;
    padding: 6px 4px 6px;
  }

  .drag-element-list li {
    width: 23%;
  }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .main {
    padding-top: 60px;
  }

  h3.section-title {
    font-size: 24px;
  }

  .form-group label {
    margin-bottom: 15px;
  }

  .table-details {
    padding: 60px 0;
    margin-top: 50px;
  }

  .add-element {
    top: 14%;
    left: 10%;
    font-size:19px;
  }

  .switch-details .total-item.poe-budget {
    display: inline-block;
    width: 50%;
  }
}

/* Bootstrap custom - Adding new breakpoint */



@media (min-width: 1440px) {
  .switch-details .total-item {
    float: left;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ccc;
    width: auto;
    padding-left: 10px;
  }
  
  .switch-details .total-item:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }

  .switch-details .port-item.total-ports {
    display: inline-block;
    width: auto;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    border-right: none;
  }

  .switch-details .total-item.poe-budget {
    width: auto;
    margin-top: 10px;
  }

  .switch-details .total-item.poe-budget.f {
    clear: both;
  }

  .total-item span {
    letter-spacing: -.5px;
  }

  .container {
    max-width: 1440px;
  }

  .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl, .col-xxl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .row-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .col-xxl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.666667%;
  }

  .add-element {
    top: 15%;
    left: 11%;
    font-size: 21px;
  }

  .col-xxl-4.power-supply,
  .col-xxl-4.power-redundancy,
  .col-xxl-4.installation-service  {
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
  }
}

/* PDF Rendering styles */

.renderPDF .main {
  padding-top: 30px !important;
}

.renderPDF .container {
  max-width: 100%;
}

.renderPDF .box-rounded {
  margin-bottom: 0;
}

.renderPDF .table-details {
  padding: 20px 0;
}

/* Detail Table */
.renderPDF #table-to-xls {
  display: table;
}

.renderPDF .table-details {
  padding: 20px 0;
  margin-top: 20px;
}

.renderPDF .results-table {
  background-color: #f2f2f2;
  border-radius: 15px;
  width: 100%;
  display: table;
  margin: 10px 0 40px;
}

.renderPDF .table-header,
.renderPDF .table-content,
.renderPDF .table-footer {
  display: table-row-group !important;
}

.renderPDF .table-row {
  display: table-row;
  margin-bottom: 0;
  border: none !important;
}

.renderPDF .table-header .table-col,
.renderPDF .table-content .table-col,
.renderPDF .table-footer .table-col {
  display: table-cell;
  border-bottom: 2px solid #ffffff ;
  padding: 3px 10px;
  line-height: 16px;
  font-size: 12px;
}

.renderPDF .table-footer .table-col{
  border-bottom:none !important ;
}
.renderPDF .table-header .table-col {
  font-weight: 600;
}

.renderPDF .table-col.sku {
  float: none;
  width: 22%;
}
.renderPDF .results-table .table-col.quantity span {
  display: none;
}

.renderPDF .results-table .table-col.quantity {
  text-align: center;
}

.renderPDF .table-col.prd-desc {
  line-height: 1.2;
}

.renderPDF .results-table .table-footer .table-col-total {
  text-transform: uppercase;
  font-weight: 600;
}

.renderPDF .swith-front,
.renderPDF .swith-back {
  width: 50%;
  float: left;
  margin-bottom: 15px;
}

.renderPDF .switch-details {
  clear: both;
  margin-bottom: 0;
}

.renderPDF .dragdrop-section {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.renderPDF .total-item {
  float: none;
  width: 100%;
  border-right:none;
}

.renderPDF  .table-details h3.section-title {
  font-size: 18px;
}

.renderPDF .bigboy-intro-pdf {
  display: block;
}


@media (max-width: 768px) {
  .table-col.quantity {
    text-align: left !important;
  }
  .table-col.quantity::before {
    content: " - Quantity: ";
    margin-left: 3px;
  }
}