* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
/* common */
a {
  text-decoration: none;
}
.ls-1 {
  letter-spacing: 1px;
}
.ls-2 {
  letter-spacing: 2px;
}
.text-justify {
  text-align: justify;
}
/* font family */
h1,
h2,
h3,
h4,
h5,
h6,
.bold {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

p,
a,
span,
label,
th,
td,  li,
.form-control,
.form-select,
.btn, .cal-body__day {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.my-font {
  font-family: "Cinzel Decorative", serif;
  font-weight: 500;
  font-style: normal;
}

/* colors classes */
.bg-red {
  background-color: #eb3d4f;
}
.red {
  color: #eb3d4f;
}
.gray {
  color: #313131;
}
.bg-gray {
  background-color: #313131;
}
.green{
    color: green;
}

/* buttons classes */
.btn-red {
  background-color: #eb3d4f;
  color: #ffffff;
  border: 1px solid #eb3d4f;
}

.btn-red:hover {
  background-color: #eb3d4f;
  color: #ffffff;
  border: 1px solid #eb3d4f;
  transition: 0.3s ease;
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #eb3d4f;
}

/* button register */
.btn-register {
  width: 190px !important;
  height: 50px !important;
  padding: 12px 5px ;
  background-color: #eb3d4f !important;
  color: #ffffff !important;
  border: 1px solid #eb3d4f !important;
}

.btn-register:hover {
  background-color: #eb3d4f !important;
  color: #ffffff !important;
  border: 1px solid #eb3d4f !important;
  transition: 0.3s ease;
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px #eb3d4f !important;
}

.btn-gray {
  background-color: #313131;
  color: #ffffff;
  border: 1px solid #313131;
}

.btn-gray:hover {
  background-color: #313131;
  color: #ffffff;
  border: 1px solid #313131;
  transition: 0.3s ease;
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #313131;
}

/* font size classes*/
.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 16px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

/* shadow class */
.shd {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.shd1{
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* form css  */

.form-control:focus {
  border-color: #eb3d4f;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset,
    0px 0px 8px rgba(235, 61, 79, 0.5);
}
.form-select:focus {
  border-color: #eb3d4f;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset,
    0px 0px 8px rgba(235, 61, 79, 0.5);
}
.form-select {
  color: #575757;
}
.my-form {
  height: 35px;
}

.navbar .navbar-nav .nav-link {
  position: relative;
}
.navbar .navbar-nav .nav-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  background-color: #eb3d4f;
  width: 0%;
  height: 4px;
  transition: all 0.5s;
}
.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}

.zoom-in-zoom-out {
  /* margin: 24px; */
  /* width: 50px; */
  /* height: 50px; */
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}

.one h2 {
  position: relative;
  padding: 0;
  margin: 0;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.one h2 {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.one h2:before {
  width: 28px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -14px;
  background-color: #eb3d4f;
}
.one h2:after {
  width: 100px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 15px;
  left: 50%;
  margin-left: -50px;
  background-color: #eb3d4f;
}

/* modal css */
.cross {
  position: relative;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 5px;
  cursor: pointer;
}

/* media quaries start */
@media (max-width: 575px) {
  .fs-16 {
  font-size: 12px;
}
  .body-radius {
    margin: auto !important;
    border-radius: 20px !important;
  }
  .image-radius {
    border-radius: 7px 7px 0px 0px !important;
  }
  .user {
    width: 50% !important;
  }
  .vendor {
    width: 50% !important;
  }
  .top-right {
    height: 20px !important;
    width: 20px !important;
    right: 15px !important;
    background-color: #fff !important;
    border-radius: 50% !important;
    color: #313131 !important;
    padding: 5px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
  }
}

@media (max-width: 424px) {
  .user {
    width: 100% !important;
  }
  .vendor {
    width: 100% !important;
  }
}
/* media quaries end */

.card-container {
  position: relative;
}
.centered {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(235, 61, 79, 0.9);
  color: #fff;
  padding: 4px 16px !important;
  text-wrap: nowrap;
}

/* Remove counter from input type number  */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}


.text-shadow{
    text-shadow: 1px 1px 2px #333333
}
