

  /* SUMMARY */

  small {
	color: inherit;/* overried global selector on template or somewhere */
  }

  .red {
	color: red;
  }

  .not-available {
	background: #3e9ed7;
	color: white;
	border-radius: 1rem;
	padding: 1rem;
	margin: 1rem;
  }

  .not-available svg {
	cursor: pointer;
	display: block;
	margin-left: auto;
	width: 12px;
	height: 12px;
	fill: white;
  }

  .not-available p {
	padding: 1rem;
  }

  #summary-toggle {
	display: flex;
	align-items: center;
	padding: 1rem 2rem;
	background: #5CA82B;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
	cursor: pointer;
	gap: 2rem;
	border: 1px solid #5CA82B
  }
  
  #posi {
	position: relative;
  }

  #big-wrap {
	position: absolute;
	right: 0;
	top: 132px;
	margin-top: -92px;
	width: 100%;
	z-index: 20;
	display: flex;
	justify-content: flex-end;
  }

  #big-wrap.open {
	width: 400px;
	flex-direction: column;
	justify-content: flex-end;
	margin-left: auto;
  }

  #summary-toggle svg {
	fill: white;
  }

  #summary-toggle .chevron {
	width: 20px;
	height: 20px;
  }

  #summary-toggle .chevron svg {
	transform: rotate(0);
	width: 20px;
	height: 20px;
	transform: all ease 0.6s;
  }

  #summary-toggle.open .chevron svg {
	transform: rotate(180deg);
  }

  #summary-toggle:hover {
	background: white;
	/* background-color: #5CA82B; */
	/* background-color: rgba(92, 168, 43, 0.7); */ /* same as above, but with some transparency */
  }

  #summary-toggle:hover svg {
	fill: #5CA82B;
  }

  #summary-toggle h3 {
	color: white;
	font-weight: 500;
	font-size: 18px;
  }

  #summary-toggle:hover h3 {
	color: #5CA82B;
  }

  #order-summary-bg {
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	background: transparent;
	transition: background ease 0.6s;
  }

  #order-summary-bg.open {
	width: 100vw;
	height: 100vh;
	background: rgba(25, 25, 25, 0.4);
  }

  #order-summary-wrap {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
	z-index: 50;
	background: #fff;
	width: 100%;
	max-width: 400px;
	overflow-x: hidden;
	max-height: 70%;
	transition: all ease 0.6s;
  }

  #order-details-wrapper h3 {
	color: black;
	font-size: 22px;
	text-align: center;
	margin-bottom: 1rem;
  }

  #order-summary-wrap h3 {
	color: black;
	font-weight: 500;
	font-size: 18px;
  }

  #details-wrap .card {
	scroll-margin-top: 300px;
  }


  .clear-cart {
	background: none;
	border: none;
	text-decoration: underline;
	margin-bottom: 1rem;
	padding: 0;
  }

  p#disclaimer {
	font-size: 14px !important;
	cursor: pointer;
	text-decoration: underline;
	font-style: italic;
  }
  .disclaimer-modal .modal-content {
	padding: 40px 30px;
	text-align: left;
  }
  .disclaimer-modal .modal-body {
	font-style: italic;
  }
  .disclaimer-modal button {
	position: absolute;
	top: 20px;
	right: 20px;
	border: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: none;
  }
  .disclaimer-modal button > svg {
	color: #b7b8b7;
  }

  .order-summary {
	padding: 1rem 2rem;
	background: #fff;
	width: 100%;
	overflow-x: hidden;
	max-height: 800px;
  }

  .order-summary .header {
	background: #f7f7f7;
	font-size: 11px;
	padding: 10px 0;
	position: sticky;
	top: 0;
	z-index:99;
  }


  .order-summary h5 {
	font-size: 16px;
	margin: 0px;
  }

  .order-summary h5.bolder {
	margin-top: 2rem;
	font-weight: 600;
  }

  .order-summary label {
	font-size: 12px;
	font-weight: 400;
	color: #999;
  }

  .order-summary article {
	padding: 1rem 0;
	margin: 0;
  }

  .order-summary article:not(.subtotal):not(.intro):not(.internet):not(.one-time) {
	border-top: 1px solid #999;
  }

  .order-summary .name {
	font-size:16px;
	font-style:italic;
  }

  .order-summary .price {
	font-size:16px;
	font-style:normal;
	color: #000;
	float:right;	 
	font-weight: 600;
  }

  .order-summary .price2 {
	font-size:16px;
	font-style:italic;
	float:right;	 
  }

  .order-summary ul {
	list-style-type: none;
	font-size: 16px;
	font-weight: 400;
	margin: 0px;
	padding: 0;
  }

  .order-summary ul ::marker {
	font-size: 8px;
  }

  .order-summary p {
	margin: 0px;
  }

  .order-summary input[type=checkbox]{ 
	visibility:hidden
  }

  .order-summary h5 {
	font-weight: 500;
  }

  .order-summary .internet h5 {
	color: #1682c5;
  }

  .order-summary .video h5 {
	color: #52c5ec ;
  }

  .order-summary .voice h5 {
	color: #99d02a;
  }

  .order-summary h5.all-in {
	margin-top: 2rem;
  }

  .order-summary h5.all-in,
  .order-summary h5.monthly-subtotal {
	color: black;
	border-top: 3px solid black;
	padding-top: 1rem;
	padding-bottom: 1rem;
  }

  .order-summary h5.one-time {
	color: black;
  }

  #subtotal {
	padding: 5px;
	position: sticky;
	bottom: 0px;
  }

  #subtotal h4 {
	display: block;
	margin: 0;
	padding: 5px;
	vertical-align: middle;
	text-align:right;
  }

  #subtotal h4 span {
	display: inline-block;
	font-size: 26px;
	font-weight: bold;
	text-align: right;
	vertical-align: middle;
  }

  #subtotal-text {
	padding-left:35px;
	font-size: 18px;
	font-weight:600;
	padding-top:8px;
  }

  #subtotal .col-sm-7 {
	padding-right: 27px;
  }

