@import url('https://fonts.googleapis.com/css2?family=Karla&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css");

:root{
  /* --primaryBlue: #1a1c63; */
  --primaryBlue: #232352;
  --primaryRed: #d61515;
  --errorRed: #b40101;
  --hoverBlue: #232352;
  --strokeGrey: #EAEAEA;
  --greyOpaque: #acacacb0;
  --mutedGrey: #acacac;
  --white: #FFFFFF;
  --turquoise: #00a5bb;
  --mutedBlue: #b3b4d4;
}

*{
  font-family: 'Karla', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--primaryBlue)
}
body{
  padding: 0px;
  position: relative;
}
p{
  font-size: 16px;
}
.restxt{
  font-size: 16px;
  margin: 4px 0px;
}
h3{
  font-size: 22px;
}
h4{
  font-size: 18px;
}
.b{
  font-weight: 600;
}
.txtcenter{
  text-align: center;
}
.screenmuted{
  position: fixed;
  top: 116px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:rgb(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
}
.round-progress {
  top: 0px; 
  left: 0px; 
  position: absolute; 
  width: 100%; 
  height: 100%; 
  overflow: hidden;
  transform: rotate(-90deg);
}
#sogeaspeedbar circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  stroke: var(--strokeGrey);
  stroke-width: 1em;
  stroke-width: 4px;
}
#sogeaspeedbar #bar {
  stroke: var(--primaryBlue);
  display: none;
  transition: all 0.2s;
  stroke-width: 6px;
}
#fttpspeedbar circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  stroke: var(--strokeGrey);
  stroke-width: 1em;
  stroke-width: 4px;
}
#fttpspeedbar #bar {
  stroke: var(--primaryRed);
  display: none;
  transition: all 0.2s;
  stroke-width: 6px;
}
.hidearea{
  display: none;
}
.resultsbox{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.resultscontainer{
  width: 400px;
  height: 400px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.selectbtncont{
  width: 400px;
  height: 440px;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.selectbtnwrapper{
  width: 200px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.speedswrapper{
  display: none;
}
.resultsguage{
  display: flex;
  flex-direction: row;
}
.linedetailstable{
  width: 500px;
  border-collapse: collapse;
  border-radius: 5px;
  border-style: hidden;
  box-shadow: 0 0 0 1px var(--primaryBlue);
}
.linedetailstable tr{
  width: 100%;
  height: 30px;
}
.linedetailstable td{
  width: 50%;
  border: 1px solid var(--primaryBlue);
  border-collapse: collapse;
  padding: 5px;
}
.packageTable{
  border-collapse: collapse;
  border: 1px solid var(--primaryBlue);
}
.packageTable tr{
  width: 100%;
  height: 30px;
}
.packageTable td{
  border: 1px solid var(--primaryBlue);
  border-collapse: collapse;
  padding: 5px 15px 5px 5px;
}
#address{
  display: none;
}
.loadCenterBox{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.loader {
  width: 100px;
  height: 100px;
}
.circular {
 animation: rotate 1s linear infinite;
 height: 100px;
 width: 100px;
}
.path {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate {
 100%{
  transform: rotate(360deg);
 }
}
@keyframes dash{
 0%{
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  stroke: var(--primaryBlue);
 }
 50%{
  stroke-dasharray: 89,200;
  stroke-dashoffset: -35;
  stroke: var(--turquoise);
 }
 100%{
  stroke-dasharray: 89,200;
  stroke-dashoffset: -124;
  stroke: var(--turquoise);
  ;
 }
}
.inp{
  border: 2px solid var(--primaryBlue);
  border-radius: 5px;
  font-size: 16px;
  padding: 6px 2px;
  outline: none;
  background-color: var(--white);
}
.cardButton .inp{
  width: 80px;
  text-align: center;
}
.plusMinusText{
  font-size: 25px;
  margin: 0px 10px;
  cursor: pointer;
}
.inp:focus{
  box-shadow: 0px 0px 0px 2px var(--mutedBlue);
  transition: all 0.1s;
}
.upper{
  text-transform: uppercase;
}
.btn{
  border: 2px solid var(--primaryBlue);
  border-radius: 5px;
  font-size: 16px;
  padding: 6px 12px;
  outline: none;
  cursor: pointer;
  background-color: var(--white);
  color: var(--primaryBlue);
}
.btn:hover{
  background-color: var(--hoverBlue);
  border: 2px solid var(--hoverBlue);
  color: var(--white);
  transition: all 0.2s;
}
.btn:focus{
  box-shadow: 0px 0px 0px 2px var(--mutedBlue);
  transition: all 0.1s;
}
.btndisabled{
  border: 2px solid var(--strokeGrey);
  border-radius: 5px;
  font-size: 16px;
  padding: 6px 12px;
  outline: none;
  cursor: pointer;
  background-color: var(--strokeGrey);
  color: var(--mutedGrey);
  pointer-events: none;
}
.br{
  height: 10px;
  width: 100%;
}
.cardContainer{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap
}
.cardWidther{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  column-gap: 12px;
  row-gap: 12px;
  margin: 0px 0px 20px 0px;
}
.cardWidtherAnc{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  column-gap: 12px;
  row-gap: 12px;
  margin: 20px 0px;
}
.card{
  min-width: 400px;
  border: 2px solid var(--primaryBlue);
  border-radius: 5px;
  position: relative;
}
.selectedTick{
  padding: 6px 12px;
  font-size: 14px;
  color: var(--white);
  top: 0;
  left: 0;
  position: absolute;
  background-color: var(--primaryBlue);
  border-radius: 0px 0px 5px 0px;
}
.hidden{
  display: none;
}
.cardDisabled{
  min-width: 200px;
  border: 2px solid var(--mutedGrey);
  border-radius: 5px;
  pointer-events: none;
  opacity: 0.5;
}
.selectedCard{
  box-shadow: 0px 0px 0px 2px var(--mutedBlue);
}
.cardImage{
  margin: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.cardImageres{
  max-width: 100%;
  max-height: 200px;
}
.cardText{
  margin: 15px;
}
.cardTextTitle{
  margin: 15px 0px;
}
.cardTextBody{
  line-height: 22px;
  text-align: center;
}
.cardButton{
  margin: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cardQtyControl{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.continueButtonCenter{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.numConfigContainer{
  width: 100%;
}
.summaryContainer{
  width: 100%;
  margin: 0px 0px 20px 0px;
}
.summaryCardContainer{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  column-gap: 12px;
  row-gap: 12px;
  margin: 20px 0px;
}
.summaryCard{
  min-width: 300px;
  border: 2px solid var(--primaryBlue);
  border-radius: 5px;
  position: relative;
  transition: all 0.2s;
}
.linkBack .summaryCard{
  cursor: pointer;
}
.linkBack .summaryCard:hover{
  box-shadow: 0px 0px 0px 2px var(--mutedBlue);
  transition: all 0.2s;
}
.tandcrow{
  display: flex;
  margin: 12px 0px;
  align-items: center;
  cursor: pointer;
}
#tandc{
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.exNum{
  margin: 12px 0px;
}
.alertBarContainer{
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alertBarShow{
  display: none;
}
.alertBar{
  width: 70%;
  margin: 10px 0px;
  background-color: var(--errorRed);
  box-shadow: 0px 0px 10px 5px var(--strokeGrey);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alertContent{
  margin: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alertIcon{
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: var(--white);
  margin-bottom: 4px;
}
.alertClose{
  cursor: pointer;
}
.alertTxtCont{
  width: 80%;
}
.alertTxt{
  color: var(--white);
  margin: 15px 0px;
}
.alertIconText{
  color: var(--white);
  margin: 15px 0px;
}
.confirmAlertContainer{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1000;
  background-color: var(--white);
  display: none;
  justify-content: center;
  align-items: center;
}
.confirmAlertContainer.show{
  display: flex;
}
.confirmAlertBox{
  width: 40%;
  position: relative;
  background-color: var(--white);
  border: 2px solid var(--primaryBlue);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-50%);
}
.confirmAlertTitle{
  margin: 30px 10px;
}
.confirmAlertButton{
  margin: 30px 10px;
  margin: 0px 10px 30px 10px;
}
.confirmAlertCross{
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}
.infoCardText{
  margin: 0px 0px 12px 0px;
  text-align: center;
}
.header{
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--primaryBlue);
}
.headerTopBar{
  width: 100%;
  height: 26px;
  display: flex;
  justify-content: center;
  color: var(--white);
  background-color: var(--primaryBlue);
}
.headerTextCont{
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: right;
  align-items: center;
}
.headerTopTxt{
  color: var(--white);
  text-decoration: none;
}
.mainCont{
  width: 100%;
  display: flex;
  justify-content: center;
}
.widthingCont{
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pageCont{
  width: 100%;
  margin-bottom: 20px;
}
.heighter{
  z-index: 1000;
}
.headerCont{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.headerLogoCont{
  height: 100%;
  width: 40%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.headerLogo{
  height: 60%;
}
.portalTitleCont{
  height: 100%;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: right;
}
.pgt{
  margin: 15px 0px 25px 0px;
  font-size: 28px;
}

@media screen and (max-width: 920px) {
  .resultscontainer{
    width: 300px;
    height: 300px;
  }
  .selectbtncont{
    width: 300px;
    height: 340px;
  }
  .restxt{
    font-size: 14px;
  }
  .widthingCont{
    width: 90%;
  }
}
@media screen and (max-width: 716px) {
  .resultsguage{
    flex-direction: column;
  }
  .restxt{
    font-size: 14px;
  }
  .linedetailstable{
    width: 300px;
  }
  .confirmAlertBox{
    width: 90%;
  }
  .widthingCont{
    width: 90%;
  }
}