:root {
  --sea: #109f9f;
  --p: 16px;
  --pc: darkgrey;
  --h1: 30px;
  --bg_gradient: linear-gradient(269deg, #056b6b, var(--sea));
}
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--sea);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
* {
  margin: 0;
  padding: 0;
  color: var(--pc);
  font-family: "Prompt", sans-serif;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a:hover {
  color: rgb(46, 46, 46);
  transition: 0.2s;
}
.top {
  height: 40vh;
  padding: 100px 0;
  background: linear-gradient(359deg, #0b7c7c, var(--sea));
}
.top h1,
.top p {
  color: white;
}

/* text align and auto margins */
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.auto {
  margin: auto;
}
.baseline {
  align-items: baseline;
}
h1 {
  font-size: 30px;
}
.logo {
  max-width: 300px;
}

.loginform {
  background: white;
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 0px 1px 10px;
  position: relative;
  margin-top: -100px;
}

input[type="email"],
input[type="password"],
input[type="text"],
textarea,
.input {
  padding: 5px;
  border: none;
  height: 40px;
  margin: 10px 0;
  width: 70%;
  /* border-radius: 5px; */
  border-bottom: solid 1px var(--pc);
  color: var(--sea);
}
input:focus,
textarea:focus {
  outline: none;
  border-bottom: solid 3px var(--sea);
  transition: 0.1s ease-in-out;
}
input[type="submit"]:focus {
  outline: solid 1px gold;
  transition: 0.1s ease-in-out;
}

textarea {
  height: auto;
}

.primary_text *,
.primary_text {
  color: var(--sea);
}

.primary_bg {
  background: linear-gradient(269deg, #056b6b, var(--sea)) !important;
}
.button {
  background: var(--sea);
  border: none;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 15px;
  margin-top: 20px;
}

.button:hover, .button2:hover {
  translate: -5px -5px;
  box-shadow: 5px 5px 5px #00000040;
  transition: 0.2s ease-in;
}

/* dashboard style*/
.dashboard {
  height: 100vh;
  overflow-y: auto;
  background: #d5ffff;
}
.navbar {
  height: 100vh;
  background: white;
  box-shadow: 7px 0px 10px #0000001c;
}
.navbar .logo {
  padding: 15px;
  margin: auto;
}
.navigation {
  height: 50px;
  padding: 10px 20px;
  color: var(--sea);
  border-bottom: solid 1px var(--sea);
  border-collapse: collapse;
  /* border-top: none; */
}

.menu {
  border-top: solid 1px var(--sea);
  margin-top: 100px;
}

.menu a:hover .navigation {
  background: linear-gradient(269deg, #056b6b, var(--sea));
  color: white;
  transition: 0.2s ease-in;
  translate: 0 -5px;
  box-shadow: 0px 5px 5px #0000004a;
}
.active {
  background: linear-gradient(269deg, #056b6b, var(--sea));
  color: white;
  transition: 0.2s ease-in;
  translate: 0 -5px;
  box-shadow: 0px 5px 5px #0000004a;
}
.fa-solid,
.fa {
  color: inherit;
}
.topstrip {
  background: linear-gradient(269deg, #056b6b, var(--sea));
  box-shadow: 0px 5px 5px #0000004a;
  height: 70px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1;
}
.topstrip * {
  color: white;
}
.main {
  height: 100vh;
  overflow-y: auto;
}
.welcome {
  padding: 20px 0;
  /* background: white; */
}
.match {
  padding: 20px;
  background: white;
  margin: 20px;
  box-shadow: 0px 4px 5px var(--sea);
}
.matchPic {
  min-height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.matchName {
  /* padding: 5px; */
  color: var(--sea);
  font-weight: 600;
  font-size: 18px;
}
.matchAge {
  font-size: 12px;
}

.matchAge span {
  color: var(--sea);
}

.card {
  padding: 20px;
  background: white;
  /* margin: 20px; */
  box-shadow: 0px 4px 5px var(--sea);
}
.profilePic {
  height: 150px;
  width: 150px;
  background-size: cover;
  border-radius: 50%;
  background-position: center;
}
label {
  color: var(--sea);
  font-size: 10px;
  margin-top: 20px;
  width: 70%;
}
.small {
  font-size: 10px;
}
.chatHead {
  border: 1px solid var(--sea);
  border-collapse: collapse;
  padding: 10px;
  border-radius: 10px;
  margin: 5px 0;
  color: var(--sea);
}
.chatHead * {
  color: var(--sea);
}

.chatHead:hover {
  transition: 0.3s ease-in-out;
  background: linear-gradient(269deg, #056b6b, var(--sea));
  color: white !important;
}
.chatHead:hover * {
  color: white;
  transition: 0.3s ease-in-out;
}
.chatHeadArea,
.chat {
  height: 500px;
  overflow-y: auto;
  border-radius: 10px;
}
.chatHeader {
  padding: 10px 0;
  border-radius: 10px 10px 0 0;
  font-weight: bold;
  position: sticky;
  top: 0;
  background: #109f9f;
  z-index: 1;
}

.error {
  font-weight: 300;
  color: red;
  font-size: 12px;
  padding: 5px;
}
.vspace {
  margin: 20px 0 !important;
}
.register label {
  display: block;
}

.matchCard {
  background: white;
  border-radius: 15px;
  border: solid 1px lightgrey;
  width: 200px !important;
}
.matchCard a {
  text-decoration: underline;
}
.matchCard a:hover {
  text-decoration: none;
}

.matchPhoto {
  /* border: solid 1px; */
  border-radius: 50%;
  height: 50px;
  width: 50px;
  background-size: cover;
  background-position: center;
  margin-left: -20px;
}
.matchDetails {
  zoom: 0.8;
  margin-right: -20px;
}
.white *,
.white {
  color: white;
}
.message {
  margin: 0px 0;
  padding: 10px;
  min-height: 40px;
  border-radius: 10px;
  max-width: 300px;
  position: relative;
  left: 15px;
  font-size: 12px;
}
.chatto {
  position: relative;
  left: 70px;
}
.chatto .message {
  background: var(--bg_gradient);
}
.chatFrom .message {
  background: white;
}
.typingArea {
  position: sticky;
  z-index: 1;
  bottom: 0;
}
.typeMessage {
  margin-bottom: -10px !important;
  height: 70px !important;
  padding: 13px !important;
  padding-top: 0px !important;
  width: 100% !important;
}
.chatFrom .userImg {
  position: relative;
  top: -50px;
  left: -18px;
}
.chatto .userImg {
  position: relative;
  right: -106%;
  bottom: 28px;
}
.send_button {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 5px;
}
.compose {
  margin-bottom: 10px;
  margin-top: -49px;
}
.cursor {
  cursor: pointer;
}
.smallPic {
  width: 50px;
  height: 50px;
}
.border td {
  border: solid;
  border-width: 0 1px 1px 0;
  padding: 2px 5px 0 5px;
}
table.border {
  border: solid;
  border-width: 1px 0 0 1px;
}
.paidInfo table {
  font-size: 14px;
}
.paidInfo span {
  font-weight: 600;
}
.date {
  background-size: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.date .card {
  /* background: #ffffffba; */
  border-radius: 20px;
  position: relative;
  top: -80px;
}

.price {
  text-decoration: line-through;
  opacity: 0.4;
}
.headerr {
  background: url(../img/run1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  padding: 100px 0;
}
.new_register label {
  font-size: 15px !important;
}
.activeCard {
  outline: solid 2px;
  translate: 0 -30px;
  box-shadow: 10px 10px;
}
.membership_cards {
  margin: 50px auto;
}
.white_bg {
  background-color: white;
}
.black *
{
    color: black !important;
}

/* Modal Stylesheet */
#modal {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  background: #109f9f91;
  backdrop-filter: blur(2px);
  display: none;
}

#modalContent {
  margin-top: 10%;
  padding: 0;
  padding-bottom: 20px;
  position: relative;
  border-radius: 10px;
  animation-duration: 1s;
}

.modalHeader {
  padding: 5px 0;
  border-radius: 10px 10px 0 0;
}

.button2 {
  padding: 5px;
  border: solid 1px;
  color: var(--sea);
  background: none;
  border-radius: 5px;
}
.danger{
color: darkred;
}
.closeBtn {
position: absolute;
top: -15px;
right: -15px;
background: black;
height: 30px;
width: 30px;
padding: 3px;
border-radius: 50%;
cursor: pointer;
}