:root {
  --bg-primary: #013a63;
  --bg-primary-rgb: 44, 107, 208;

  --bg-primaryDark: rgb(25, 58, 85);
  --bg-primaryDark-rgb: 36, 80, 116;

  --bg-primaryLight: #015b9b;
  --bg-primaryLight-rgb: 67, 144, 206;

  --bg-sidebar: #f6f7fd;
  --bg-sidebar-rgb: 246, 247, 253;
}
.btn-primary:active {
  background-color: var(--bg-primaryLight) !important;
  color: white !important;
}
.page-item[class*="active"] > .page-link {
  background-color: var(--bg-primary) !important;
  color: white !important ;
}
.list-item:hover {
  background-color: #f0f0f0;
}
.list-item {
  background-color: #fff;
}
.view-item {
  background-color: #fff;
}

.modal.fade .modal-dialog {
  transform: scale(0.95);
}

.modal.fade.show .modal-dialog {
  transform: scale(1);
  transition: transform 0.05s ease-in;
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loader {
  width: 60px;
  aspect-ratio: 4;
  --_g: no-repeat radial-gradient(circle closest-side, #326e9f 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: calc(100% / 3) 100%;
  animation: l7 1s infinite linear;
}

@keyframes l7 {
  33% {
    background-size: calc(100% / 3) 0%, calc(100% / 3) 100%, calc(100% / 3) 100%;
  }

  50% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 0%, calc(100% / 3) 100%;
  }

  66% {
    background-size: calc(100% / 3) 100%, calc(100% / 3) 100%, calc(100% / 3) 0%;
  }
}

input[type="text"],
input[type="password"],
textarea {
  /* background-color: #f8f9fa; */
  /* border: 1px solid #ced4da; */
  width: 100%;
  padding: 7px;
  transition: 0.3s;
  color: #505050;
  font-weight: 600;
}

#partyTable th,
#partyTable td {
  padding: 8px;
  border: 0px;
  text-align: left;
}

#partyTable tr:hover {
  background-color: #eee;
}

#partyTable tr.clicked {
  background-color: #ccc;
  color: black;
  /* Change the background color when clicked */
}

.highlighted {
  background-color: var(--bg-primary);
  color: #fff;
  font-weight: 700;

  /* You can choose any background color you prefer */
}

#partyTable .highlighted:hover {
  background-color: var(--bg-primaryDark);
  color: #fff;
  font-weight: 700;

  /* You can choose any background color you prefer */
}

.partySelectContainer {
  display: none;
}

.partyNameContainer {
  display: flex;
}

.partySelect {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 15pt;
}

.partyTable {
  text-transform: capitalize;
  display: block;
}

@media (max-width: 767px) {
  /* .partySelectContainer {
        margin-top: -20px;
        display: flex !important;
    }

    .partyNameContainer {
        display: none !important;
    }

    .partyTable {
        display: none !important;
    } */
}

.bg-purple {
  background: rgb(240, 240, 240);
  background: linear-gradient(
      212deg,
      rgba(240, 240, 240, 1) 0%,
      rgba(254, 246, 255, 0.7) 100%
    ),
    url("../img/cover2.png");

  /* Set background size to cover the entire div */
  background-size: cover;

  min-height: 100vh;

  /* background: rgb(245, 245, 245);
    background: linear-gradient(212deg, rgba(245, 245, 245, 1) 0%, rgba(246, 201, 255, 1) 100%); */
}

.text-purple {
  color: var(--bg-primary);
}

.text-purpleLight {
  color: var(--bg-primaryLight);
}

a.text-purple:hover {
  color: #670260;
}

.options:hover:nth-child(1) {
  background-color: #4d73c0;
}

.options:hover:nth-child(2) {
  background-color: #5c86d8;
}

.options:hover:nth-child(3) {
  background-color: #628de2;
}

.options:nth-child(1) {
  background-color: #4265a9;
  border: 5px solid white;
  border-radius: 15px;
}

.options:nth-child(2) {
  background-color: #5277c2;
  border: 5px solid white;
  border-radius: 15px;
}

.options:nth-child(3) {
  background-color: #5a82d3;
  border: 5px solid white;
  border-radius: 15px;
}

/* .oval {
    border-radius: 10px;

} */

.mybtn {
  color: #fff;
}

.text-green {
  color: #4265a9;
}

.green {
  background-color: #428ca9;
}

.blue {
  background-color: #4265a9;
}

.shadows {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  padding: 35px;
  margin: 10px;
  background-color: #fff;
  border-radius: 20px;
}

.form-shadows-inner {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  padding: 35px;
  margin: 10px;
  background-color: #fff;
  border-radius: 20px;
}

.form-shadows {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
  padding: 35px;
  margin: 10px;
  background-color: #fff;
  border-radius: 20px;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Thumbnail images in upload table */
img[id^="img-"] {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: #f5f5f5;
  vertical-align: middle;
  flex-shrink: 0;
}

#car1 {
  /* -webkit-transform: scaleX(-1);
    transform: scaleX(-1); */
  margin-top: 50px !important;
  width: 110%;
}

.vertical-center-100 {
  /* min-height: 100%; */
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.vertical-center-50 {
  /* min-height: 100%; */
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.gradient {
  background-image: -webkit-linear-gradient(left, #3e29c0, #09b4fe);
}

.title p {
  /* margin-right: 45%; */
  width: 65% !important;
}

.clip-text {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.title h1 {
  font-size: 40pt;
  margin: 0;
  /* For Chrome and Safari */
  font-weight: bolder;
}

#logo h3 {
  margin-left: 10px;
  margin-bottom: 0;
  margin-top: 10px;
  /* For Chrome and Safari */
  font-weight: bolder;
}

.title h5 {
  margin-bottom: -5px;
  /* margin-left: 5px; */
}

.title h2 {
  color: #444;
  /* margin-left: 5px; */
}

.title {
  margin-left: 6vw;
  margin-top: -20vh;
}

.bg-primary {
  background-color: var(--bg-primary) !important;
}

.bg-primaryLight {
  background-color: var(--bg-primaryLight) !important;
}

.text-primary {
  color: var(--bg-primary) !important;
}

.bg-primaryDark {
  background-color: var(--bg-primaryDark);
}
.round_lg {
  border-radius: 18px;
}
.round_md {
  border-radius: 13px;
}

.round_sm {
  border-radius: 8px;
}

.round_md-top {
  border-radius: 12px 12px 0px 0px;
}

.round_md-top-left {
  border-radius: 10px 0px 0px 0px;
}

.partyBox {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
  /* You can adjust the duration and timing function as needed */
}

.partyBox:hover {
  transform: scale(0.99);
  opacity: 0.9;
}

.active-shadow {
  /* background: linear-gradient(301deg, rgba(15, 40, 82, 1) 0%, rgba(13, 58, 95, 1) 35%, rgba(13, 59, 96, 1) 38%, rgba(10, 103, 128, 1) 72%, rgba(5, 163, 172, 1) 100%); */
  background-color: white !important;
  padding-bottom: 10px;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  margin-top: -10px;
  transition: 0.5s;
}

.cards {
  width: 40%;
  margin: 0px;
  border-color: #dfdfdf;
  border-width: 1px;
  border-radius: 5px;
  border-style: solid;
  padding: 15px;
}

@media (max-width: 767.98px) {
  .active-shadow {
    margin-top: 0px;
  }

  .form-shadows {
    margin: 0px !important;
    padding: 20px;
    /* padding: 10px; */
  }

  .form-shadows-inner {
    margin: 0px !important;
    /* padding: 5px; */
    /* padding: 10px; */
  }

  #logo h3 {
    margin: 0;
  }

  .active {
    margin-top: 0px;
  }

  .web-name {
    display: none !important;
  }

  body {
    overflow-x: hidden;
  }

  .back {
    margin-left: 0px;
  }

  .vertical-center-100 img {
    /* margin-top: 0px; */
    padding-top: 150px;
    /* background-color: #09b4fe; */
  }

  .parallelogram {
    margin-left: 200px;
    margin-top: 250px !important;
    height: 80vh !important;
    transform: skew(00deg) !important;
    border-radius: 1000px !important;
  }

  #store {
    width: 130vw;
    margin-top: 180px !important;
    /* margin-left: -100px; */
  }

  .title p {
    /* margin-right: 45%; */
    width: 90% !important;
  }

  .title h1 {
    font-size: 30pt !important;
  }

  .title h2 {
    font-size: 20pt;
  }

  .title h5 {
    font-size: 13pt;
    margin-bottom: 1px;
  }

  .title {
    /* margin-left: 3vw; */
    margin-top: -55vh;
    margin-left: 2vw;
  }

  .nav-item:last-child {
    background-image: -webkit-linear-gradient(
      left,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0)
    ) !important;
  }

  .nav-item:last-child:hover {
    transition: 0.5s;
    /* background-color: hsl(0, 0%, 91%); */
    /* border-width: 1px; */
    /* border-style: solid; */
    /* border-radius: 100px; */
  }

  #cc {
    color: #7f7f7f !important;
  }

  .carousel-inner img {
    width: 80% !important;
    padding-bottom: 170px !important;
  }

  .carousel-inner {
    padding-top: 100px;
  }
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -100;
  align-items: right;
}

/* .shape {
    margin-top: 20px;
    border-radius: 0px;
    width: 200%;
    height: 78%;
    transform: skew(20deg);
    background-color: #00858e;
    opacity: 10%;
} */

.parallelogram {
  margin-top: 80px;
  border-radius: 1000px;
  width: 200%;
  height: 85vh;
  transform: skew(00deg);
  background-color: #2863da;
  opacity: 20%;
  overflow-x: hidden;
}

.errorMsg {
  background-color: #9b2222;
  padding: 15px;

  font-size: medium;
  color: white;
  font-weight: 600;
}

.dashboard-card:hover {
  opacity: 90%;
}

.image-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  /* Adjust the height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.border-dash {
  border-width: 2px;
  border-style: dashed;
  border-color: #c4c4c4;
}

.border-w5 {
  border-width: 10px;
  border-style: solid;
  border-color: #ec0505;
}

.transluscent-1 {
  background: rgba(0, 0, 0, 0.1);
}

.transluscent-4 {
  background: rgba(0, 0, 0, 0.4);
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;

  /* Adjust the text color */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* Adjust the text color */
}

.successMsg {
  background-color: var(--bg-primary);
  padding: 15px;

  font-size: medium;
  color: white;
  font-weight: 600;
}

/* 
.user-nav-btn {
    text-overflow: clip;
    padding: 8px 8px 8px 12px;
    margin-top: 2px;
    margin-bottom: 2px;
    text-decoration: none;
    color: #444;
    border-radius: 7px;

    font-size: 11pt;
    display: block;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 600;
    transition: background-color 0.5s ease;

} */
/* 
.user-nav-btn:hover, .user-nav-btn.selected:hover {
    margin-top: 2px;
    margin-bottom: 2px;
    padding: 8px 8px 8px 12px;
    text-decoration: none;
    background-color:rgba(103, 2, 96, 0.15);
    border-radius: 7px;
    display: block;
    transition: background-color 0.5s ease;

} */

.member-container {
  transition: all 100ms ease-in;
}

.member-container::before {
  transition: all 100ms ease-in;
}

.member-container.selected {
  /* border-width: 1px 1px 1px 1px !important;
    border-style: solid; */
  /* border-color: #dfe3e7 !important; */

  font-weight: 600;
  background-color: rgba(103, 2, 96, 0.08) !important;
  padding-left: 20px !important;

  color: var(--bg-primary);

  transition: all 0.1s ease;
}

.member-container.selected::before {
  content: "";
  float: left;
  height: 50px;
  margin-top: 0px;

  margin-left: -14px;
  margin-right: 10px;
  border-left: 7px solid var(--bg-primary);
  border-radius: 7px;
  transition: all 0.1s ease;
}

.user-nav-btn {
  color: rgb(87, 87, 87) !important;
}

.user-nav-btn.selected {
  font-weight: 600;
  background-color: rgba(103, 2, 96, 0.08);

  border-radius: 7px;
  color: var(--bg-primary) !important;
  transition: background-color 0.5s ease;
}

.user-nav-btn.selected::before {
  content: "";
  position: absolute;
  /* Position the indicator absolutely */
  bottom: 0;
  /* Move it to the bottom */
  left: 50%;
  /* Center it horizontally */
  transform: translateX(-50%);
  /* Adjust for centering */
  height: 4px;
  /* Adjust the height of the indicator */
  width: 60%;
  margin: 0;
  /* Remove margins */
  background-color: var(--bg-primary);
  /* Use background color instead of border */
  border-radius: 4px;
  /* Add border radius for rounded corners */
  transition: background-color 0.5s ease;
  /* Keep the transition effect */
}

.user-nav-btn {
  position: relative;
  /* Ensure the parent element is positioned relatively */
  display: inline-block;
  /* Make sure the button fits its content */
}

/* button .btn:hover{
background-color: #ededed !important ;

} */
input[type="text"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  /* background-color: #f8f9fa; */
  /* border: 1px solid var(--bg-primary) !important; */
  transition: 0.3s;
  outline: 0;
}

.bg-nav {
  background-color: var(--bg-sidebar);
}

body {
  /* overflow-y: hidden; */
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-sidebar);
}

input[type="text"],
input[type="date"],
input[type="password"],
textarea,
select {
  /* background-color: #f8f9fa; */
  /* border: 1px solid #ced4da !important; */
  width: 100%;
  padding: 7px;
  transition: 0.3s;
  color: #505050;
  font-weight: 600;
}

/* 
#cc {
    color: rgb(255, 255, 255);
}

.hue {
    -webkit-filter: hue-rotate(-25deg);
    filter: hue-rotate(-25deg);
}

.carousel-inner img {
    width: 50%;
    padding-bottom: 100px;
}

.carousel-caption {
    color: black;
}

.carousel-control-next,
.carousel-control-prev,
.carousel-indicators {
    filter: invert(100%);
}

.footer {
    margin-top: 50px;
    background-color: #0e2d55 !important;
}

.footer .logo {
    height: 80px;
    margin-right: 100px;
    align-items: center;
    display: flex;
    padding: 10px;
}

.footer .inner-footer {
    display: flex;
    padding-bottom: 20px;
}

.footer .designer {
    padding: 10px;
    text-align: center;
    background-color: rgba(190, 190, 190, 0.2);
}

.footer .designer p {
    font-size: 9pt;
    margin: 0;
}

.footer .logo h5 {
    padding-top: 8px;
    margin: 0;
}

.footer .logo p {
    font-size: 8pt;
    margin: 0;
}

.footer .logo #icon {
    width: 25px;
    height: 25px;
    margin: 10px;
    filter: brightness(0%);
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

/* input, textarea {
    width: 100%;
    height: 40px;
    margin-left: 0px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
    border: none;
    background-color: #fafafa;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px;
} */

/* 
.form-floating > input:not(:focus):placeholder-shown + label {
    background: rgb(64, 0, 255);
} */

.form-floating > input + label:after,
.form-floating > textarea + label:after,
.form-floating > select + label:after {
  background: transparent !important;
}

.btn-primary,
.bg-primary {
  background-color: var(--bg-primary);
}

.btn-primary:hover,
.bg-primary:hover {
  background-color: var(--bg-primaryDark);
}

.voteCheck {
  margin-right: 0px;

  color: var(--bg-primary);
  border-radius: 100px;
  padding: 3px 9px 0px 9px;
}

/* .unvotebtn{
    margin-right: 0px;
    color:var(--bg-primaryLight);
    border-radius: 100px;
    padding: 3px 9px 0px 9px;
    background-color: #e7d7e7;
    opacity: 0;
} */
