:root {
    --roundness: 20px;
}
textarea{
  width:100%;
  min-height: 100px;
  resize: none;
  overflow: hidden;
}
input[type=number]{
  width:50px;
}
.noselect{
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
select {
	border:1px solid #ffffff;
  border-radius: var(--roundness);
	background-color: #444444;
	color:#ffffff;
	height:30px;
	font-size:10pt;	
	min-width: 180px;
  text-align: center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../../images/icons/down-arrow.svg');
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: 1.4em auto, 100%;
}
select::-ms-expand {
  display: none;
}
option{
  text-align: center;
}
/*
load icon
*/
.lds-default {
    /* change color here */
    color: #d7ddfc
  }
  .lds-default,
  .lds-default div {
    box-sizing: border-box;
  }
  .lds-default {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-default div {
    position: absolute;
    width: 6.4px;
    height: 6.4px;
    background: currentColor;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
  }
  .lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 36.8px;
    left: 66.24px;
  }
  .lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22.08px;
    left: 62.29579px;
  }
  .lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11.30421px;
    left: 51.52px;
  }
  .lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7.36px;
    left: 36.8px;
  }
  .lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11.30421px;
    left: 22.08px;
  }
  .lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22.08px;
    left: 11.30421px;
  }
  .lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 36.8px;
    left: 7.36px;
  }
  .lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 51.52px;
    left: 11.30421px;
  }
  .lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62.29579px;
    left: 22.08px;
  }
  .lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66.24px;
    left: 36.8px;
  }
  .lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62.29579px;
    left: 51.52px;
  }
  .lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 51.52px;
    left: 62.29579px;
  }
  @keyframes lds-default {
    0%, 20%, 80%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
  }
/*
end load icon
*/

#loadindicator{
  display: none;
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #222;
    animation-name: loading;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    border-radius: var(--roundness);
}
#loadindicator span{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
#loadindicator .loadmsg{
    border-radius: var(--roundness);
    background: #222;
    border: 1px solid #fff;
    padding: 5px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: bold;
    margin-top: 60px;
}
@keyframes loading {
    0%   {background-color:#222;}
    50%  {background-color:#444;}
    100% {background-color:#222;}
  }

.page,.notification {
    min-height: 300px;
    background: #444;
    border-radius: var(--roundness);
    width: 100%;
    padding: 20px;
}
.pagecount{
    min-height: 50px;
    background: #333;
    border-radius: var(--roundness);
    padding: 5px;
    text-indent: 10px;
    margin-bottom: 5px;
}
.pagecount p{
    color:yellow;
}

#container{
  padding-bottom: 80px;
}

.btns{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    min-width: 300px;
    text-align: center;
    background: #222;
    border-radius: var(--roundness);
    border: 1px solid #000000;
}

.btns button{
    min-width: 100px;
}
.bigbtn{
    flex-basis: 100%;
}

.btns button {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: var(--roundness);
  font-size: 1rem;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #000;
  &:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #808080;
    color: #fff;
    border-radius: var(--roundness);
    z-index: -2;
  }
  &:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    filter: opacity(60%);
    background-color: #000;
    transition: all .3s;
    border-radius: var(--roundness);
    z-index: -1;
  }
  &:hover {
    color: #fff;
    background: #000;
    &:before {
      width: 100%;
    }
  }
}
#termsbtn{
  color:yellow;
  &:after {
  background-color: #2c244e;
  }
}
#submitbtn{
    color:yellow;
    &:after {
    background-color: #015a05;
    }
}
#addorderbtn{
    color:yellow;
    &:after {
    background-color: #01365a;
    }
}

#queuebtn{
    color:#fff;
    &:after {
    background-color: #8f5100;
    }
}
.addonlabel,#tierselect,#closedlabel,#stocklabel{
  font-size: 18px;
  padding: 5px;
}
#closedlabel{
  background-color: #630000;
  animation: pulse 2s infinite;
}
#stocklabel{
  background-color: #015a05;
  animation: pulse 2s infinite;
}

.addonfield{
  position: relative;
  display: inline-block;
  margin: 5px;
  padding: 10px;
  border-radius: var(--roundness);
  transition: all 0.5s;
}
.addonfield .addonlabel{
  padding: 10px;
  background-color: #455b73;
}
.addonfield label.helpbtn{
  left:-5px;
}
.addonprice{
  font-size: 18px;
  bottom: -18px;
  left: 8px;
  position: absolute;
  color:yellow;
  margin: 3px;
  padding:4px;
  background-color: #001b86;
  border: 1px solid #fff;
  border-radius: var(--roundness) 0 var(--roundness) var(--roundness) ;
  transform: rotate(-8deg);
}
.addonprice.percent{
  background-color:#730056;
}

.formfield{
    position: relative;
    margin: 10px;
    padding: 10px;
    padding-left: 30px;
    border-radius: var(--roundness);
    transition: all 0.5s;
}
.formfield label{
    display: inline-block;
    min-width: 100px;
    background-color: #222;
    padding: 3px;
    border-radius: var(--roundness);
    text-align: center;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.inline{
  display: inline-block;
}
.full{
  width:100%;
}
.mid{
  width:300px;
}
.small{
  width: 150px;
}
.rqlabel{
  background-color: #740000;
  color:yellow;
  border: 1px solid yellow;
  padding:5px;
  border-radius: var(--roundness);
  position: absolute;
  top:-15px;
  right:-10px;
  z-index: 5;
}
.moreinfo{
    display: none;
}
.formfield .helpbtn{
    min-width: fit-content;
    width:20px;
    display: inline-block;
    position: absolute;
    left: 8px;
    top:0;
    margin: 0;
    border-radius: 50%;
    background: #015a05;
    color:yellow;
    font-size: 20px;
    border: 1px solid #fff;
}
.helpbtn:hover{
  background: #009107;
}
#contactfields{
    max-height: 120px;
    overflow-y: auto;
    background: #222;
    padding: 10px;
    border-radius: var(--roundness);
}
.contactfield {
    margin-bottom: 5px;
}
.contactfield button{
    padding: 3px;
    font-size: 14px;
}

.hover{
    background: #808080;
}
.overlay{
    backdrop-filter: brightness(0.6) blur(5px);
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 1005;
}
.overlay .panel{
    background: #2a3d58;
    border-radius: var(--roundness);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
}
.panel{
    position: relative;
    text-align: center;
    display: block;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.panel h2{
    display: block;
    width: 100%;
    height:fit-content;
    background: #b9ccff;
    border-radius: var(--roundness) var(--roundness) 0 0;
}
.panel .helpbtns{
    position: absolute;
    bottom:-40px;
    right:0;
}
.panel .helptxt{
    display: block;
    height: fit-content;
    width: 100%;
    padding: 10px;
    color:#fff;
}

.panel.error .helptxt{
    color:yellow;
}
.panel.error h2{
    background: #740000;
    color:yellow;
}
.PriceEstimate {
  position: fixed;
  bottom: 70px;
  background: #015a05;
  color:yellow;
  padding:6px;
  font-size: 20px;
  border-radius: var(--roundness);
  text-shadow: 0px 5px 6px rgba(0, 0, 0, 1),
  5px 0px 11px rgba(0, 0, 0, 1);
}
.tierdesc{
background: #222222;
background: linear-gradient(180deg, #222222, #000000);
  border-radius: var(--roundness);
  min-height: 80px;
  width:70%;
  padding:10px;
  margin: 5px;
  margin-left: auto;
  margin-right: auto;
}
.imgprev{
  background-color: #222222;
  border-radius: var(--roundness);
  min-width: 300px;
  min-height: 300px;
  max-width: 100%;
  padding-top: 30%;
  width:50%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow: hidden;
  position: relative;
}
.imgprev img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  position: absolute;
  top:0px;
  left:0px;
}
.uploads label{
  min-width: unset;
}
.uploads{
  position: relative;
  display: inline-block;
  height:130px;
  width:130px;
  margin: 5px;
  border-radius: var(--roundness);
  transition: all 0.4s;
  background-size: cover;
  background-image: url("../../images/icons/emptyimage.svg");
}
.uploads:hover{
  background-color: #7c7c7c;
}
.addfile{
  background-image: url("../../images/icons/addimage.svg");
  background-size: cover;
}

label[class^="closebtn"]{
  border-radius: var(--roundness);
  background-color: #740000;
  color:yellow;
  border: 1px solid yellow;
  padding:3px;
  width:30px;
  height:30px;
  display: block;
  position: absolute;
  top:3px;
  right:3px;
  transition: all 0.3s;
}
label[class^="closebtn"]:hover{
  background-color: #9b0000;
  transform: scale(1.3);
}
.infobubble{
  text-indent: 15px;
  border-radius: var(--roundness);
  padding: 5px;
  text-align: center;
  display: inline-block;
}
.formfield:has(> .infobubble) .fieldlabel{
  border: 1px solid #fff;
  padding: 10px;
}
.formfield:has(> .infobubble){
  background-color: #21313b;
  background: linear-gradient(140deg, rgba(33,49,59,1) 15%, rgba(68,82,101,1) 100%);
  filter: drop-shadow(0px 15px 20px #000000);
  border: 1px solid #fff;
  margin-bottom: 30px;
}

.noticeheader{
background-color: #222;
border-radius: var(--roundness);
text-indent: 15px;
color:#fff;
font-weight: bolder;
padding: 10px;
}
.noticemsg{
  text-indent: 5px;
  padding: 10px;
}
.noticemsg li{
  list-style: none;
  margin: 10px;
}

.ordersummary{
  border-radius: var(--roundness);
  background-color: #e9e9ed;
  font-size: 18px;
  color:#000;
  padding: 20px;
}
.ordersummary h2,.ordersummary h3{
  margin: 5px;
}
.contactitem{
  background-color: #01565a;
  background: linear-gradient(180deg, #01565a 0%, #1f3760 100%);
  color: white;
  font-size: 20px;
  display: inline-block;
  padding: 10px;
  border-radius: var(--roundness);
  margin: 3px;
  box-shadow: 0px 10px 16px;
}
.contactitem span{
  border-radius: var(--roundness);
  background-color: #fff;
  color: #000;
  padding: 5px;
  margin: 3px;
}
.priceitem{
  font-size: 24px;
  margin: 10px;
  border-radius: var(--roundness);
  background-color: #3f4b38;
  color: #fff;
  padding: 10px;
}
.ordertotal{
  padding: 10px;
  font-size: 28px;
  background-color: #2a3d58;
  color:yellow;
}

.pagemap, .node {
  margin: 0;
  padding: 0;
  color: #d9ff00;
  font-family: verdana;
  font-size: 14px;
}

.pagemap {
  display: flex;
  width: var(--width);
  justify-content: space-between;
  position: relative;
  
  &:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--node-primary);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    z-index: -1;
  }
}

:root{
  --node-primary: #ece181;
  --node-hover: #ffbb00;
  --node-background: #ff9900;
  --width: 100%;
}
.node {
  list-style-type: none;
  position: relative;
  cursor: pointer;
  
  &:after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--node-primary);
    border: 2px solid --node-primary;
    transition: background-color .2s ease;
  }
}

.node:hover:after {
  background-color: var(--node-hover);
}

.node.active:after {
  display: none;
}
.node.locked::after{
  display: none;
  cursor:default;
}

.node span {
  display: none;
}
.node.active span{
  display: inline-block;
  position: relative;
  background-color: #009107;
  border-radius: var(--roundness);
  padding: 5px;
}
#mapcontainer{
  display: block;
  margin-bottom: 5px;
}
.hidden{display: none;}
.terms{
  float:left;
  z-index: 300;
  background-color: #444444;
}
.termspanel{
  background-color: #0a0a0a;
  height:90%;
  overflow-y: auto;
}

.coupon {
  display: none;
  --r: 15px;
  border-radius: 20px;
  background: linear-gradient(to bottom,  #9cacb8 0%,#314752 100%);
  mask: radial-gradient(var(--r) at var(--r),#0000 calc(100% - 1px),#000) calc(-1*var(--r));
  max-width: 350px;
  text-align: center;
  position: relative;
  margin:10px;
  -webkit-box-shadow: 0px 0px 5px 3px #000000; 
  box-shadow: 0px 0px 5px 3px #000000;
}
.coupon .amount{
  display: block;
  font-size: 18px;
  color:yellow;
  background: #319349;
  background: linear-gradient(270deg, #319349, #2C5F60);
  padding: 3px;
}
.coupon h3{
  background-color: white;
  color:#000;
  border-radius: var(--roundness);
  margin: 10px;
}
.coupon .stats{
  padding: 3px;
  color: yellow;
  background-color: #01365a;
}
.coupon p{
  background-color: #222;
}
.coupon .validity span{
  padding: 5px;
  margin: 5px;
  background-color: white;
  color:#000;
  border-radius: var(--roundness);
  display: inline-block;
}
.couponfield {
  padding-left: 30px;
}
.couponfield .msg{
  padding: 5px;
  border-radius: var(--roundness);
  display: none;
  color:yellow;
}

@keyframes pulse {
	0% {
		transform: scale(0.95);
    filter: brightness(1.0);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
	}

	70% {
		transform: scale(1);
    filter: brightness(1.2);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
    filter: brightness(1.0);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}