@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
    --primary-color: #2A54C2 !important; 
    --secondary-color: #151F36 !important; 
    --text-grey: #5D5D5D !important; 
    --text-light:#FFFFFF;
    --background-color: #f4f4f4 !important;
    --border-radius: 4px;
    --text-dark: #1D1C1C;
    --text-secondary:#0C58B3;
    --text-denger:#E34040;
  }

  a{
    text-decoration: none;
    color: #fff;
  }
  body{
    font-family: "Poppins", sans-serif;
  }
  h1,h6{
    color: var(--text-light);
  }

.bg-dark-left{
  background-color: var(--secondary-color);
}
.text-dark{
  color: var(--text-dark);
}
.logo{
  width: 120px ;
}
.fs-high{
  font-size: 25px;
}
.fs-lg{
  font-size: 16px;
}
h5{
  color: var(--text-dark);
  font-size: 26px;
  font-weight: 700;
}
.border-main{
  border: 1px solid #E4E4E4;
/* box shadow */
box-shadow: 0px 0px 9px rgba(163, 160, 160, 0.21);
border-radius: 10px;
padding: 20px;
height: 90%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 30px 0;
width: 100%;
}
.text-grey{
  color: var(--text-grey);
}
.fs-14{
font-size: 14px;
}
.fs-12{
  font-size: 12px;
}
.btn-main{
  background-color: var(--primary-color);
}
.btn-main:hover{
  background-color: #1a3374;
}
h3{
  font-size: 19px;
  font-weight: 600;
}
.btn-grey{
  background-color: #dadadb;
}
.btn-grey:hover{
  background-color: #b8b8b8;
}
.fetch-details{
  border: 1px solid #dee2e6;
  border-radius: 8px;
  
}
.fetch-details .form-control{
  border: none !important;
}
.fetch-btn{
  font-size: 12px;
  background-color: #EBE9E9;
  margin: 5px;
  width: 150px;
}
.text-header{
  color: var(--primary-color);
}
.info-bar{
  background-color: #F2F3FB;
 margin:0 -20px;
 padding: 5px;
 margin-bottom: 15px;
}

.info-bar span{
color: #5D5D5D;
font-size: 11px;
}
.info-bar i{
  font-size: 14px;
  color: #5D5D5D;
}
.form-control::placeholder {
  font-size: 13px; 
}
.form-select {
  font-size: 13px ;
  padding: 10px;
}
.vh-main{
  height: 91.8vh;
}
.prctableHeader{
  position: relative;
}
.prctableHeader:after{
  content: '';
  position: absolute;
  left: 30px;
  top: 100%;
  width: 0px;
   height: 0px;
   border-style: solid;
   border-width: 12px 15px 0 15px;
   border-color: #2e3153 transparent transparent transparent;
   transform: rotate(0deg);
}
#containerPackages{
  max-height: 82vh;
  overflow: auto;
}
.prctableBody ul{
  list-style: none;
}
.prctableBody ul li{
  padding-left: 20px;
  font-size: 14px;
  position: relative;
}
.prctableBody ul li:after {
    content: "\F137";
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    position: absolute;
    left: 0;
    top: 0px;
}


@media( max-width:768px){
  .border-main{
    padding:50px 20px ;
  }
  .bg-dark-left{
    padding: 30px 10px !important;
  }
  .right-section{
    background-color: var(--secondary-color);
  }
  .border-main{
    background-color: var(--background-color);
  }
}