/* //TMY/ayan/custom css file  */

/* //TMY/ayan/all fonts and icon imports */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,800;0,900;1,800&display=swap');


/* //TMY/ayan/ color variable declare */
:root {

  /** custom **/
  /* --ion-color-custom-light-shade: #f1f4f6;
  --ion-color-custom-light: #f9f9f9;
  --ion-color-custom-white: #ffffff;

  --ion-color-custom-dark-shade: #888;
  --ion-color-custom-dark: #333;
  --ion-color-custom-black: #000000;

  --ion-color-custom-green: #04b70a;  */





  /* //TMY/ayan/light colors  */
  /* --light: #f1f4f6; */
  --light: #f4f6f8;
  --bright: #f9f9f9;
  --white: #ffffff;

  /* //TMY/ayan/ dark colors */

  --shade: #999;
  --dark: #333;
  --black: #000;

  /* //TMY/ayan/ success color */

  --green: #01A066;
  --green-hov: #01A0665A;



}

/* //TMY/ayan/master css */

* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;

}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: var(--light);
  /* border-radius: 50px; */
}

::-webkit-scrollbar-thumb {
  background: var(--shade);
  /* border-radius: 50px; */
}

html,
body {
  height: 100%;
  background: var(--light);
}

li {
  list-style: none;
}

a {
  cursor: pointer !important;
  text-decoration: none;
}

input,
button,
textarea {
  outline: none;
  border: none;
}

select,
button:focus,
button:active,
input,
.page-link:focus {
  outline: none;
  box-shadow: none !important;
}

textarea {
  resize: vertical;
  box-shadow: none !important;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active,
.btn.focus,
.btn:focus {
  box-shadow: none !important;
}

/*custom*/
h1,
h2,
h3 {
  font-weight: 500;
  font-size: 18px;
  color: var(--dark);
}

h4,
h5,
h6 {
  font-weight: 500;
  color: var(--dark);
  font-size: 16px;
}

p,
a {
  font-size: 16px;
  color: var(--shade);
  font-weight: 400;
}

smal {
  font-size: 14px;
  font-weight: 400;
}

hr {
  margin: 3px 0;
  color: var(--shade);

}

@media (max-width: 720px) {

  h1,
  h2,
  h3 {
    font-weight: 500;
    font-size: 16px;
  }

  h4,
  h5,
  h6 {
    font-weight: 400;
    font-size: 14px;
  }

  p,
  a {
    font-size: 14px;
    font-weight: 300;
  }

  smal {
    font-size: 12px;
    font-weight: 300;
  }

  hr {
    margin: 2px 0;
  }

}



.navbar-absolute {
  position: absolute;
  z-index: 1010;
  width: 100%;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px;
  }
}

iframe {
  border: 0;
  outline: 0;
  width: 100% !important;
}

.btn {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.no-hover:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
}

.btn:hover:not(.no-hover) {
  transform: scale(1.1);
  /* translateY(-1px)*/
  box-shadow: 0 7px 14px rgba(50, 50, 93, .1), 0 3px 6px rgba(0, 0, 0, .08);
}

input:not(.custom-file)[type='file'] {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  outline: none;
  cursor: inherit;
  font-size: 100px;
}


.bg-light {
  background: var(--light) !important;
}

.bg-bright {
  background: var(--bright) !important;
}

.bg-dark-1 {
  background: var(--shade) !important;
}

.bg-dark-2 {
  background: var(--dark) !important;
}

.bg-success {
  background: var(--green) !important;
}



/* Carousel base class */
/* .carousel {
  margin-bottom: 4rem;
} */
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 7rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 38rem;
  background-color: #777;
}

.carousel-item>img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
}

@media (min-width: 40em) {

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.card {
  border: 1px solid rgba(111, 111, 111, 0.125);
}

.noscroll {
  overflow-x: hidden;
  overflow-y: hidden;
}

.progress-xs {
  height: 5px;
}

.popout {
  cursor: pointer;
  max-width: 880px;
  display: none;
  padding: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: rgb(255, 255, 255);
  font-size: 14px;
  border-radius: 3px;
  position: fixed;
  top: 75px;
  z-index: 1100;
  overflow: hidden;
  width: 40.857%;
  text-align: center;
  left: 29%;
  right: 20%;
}

.popout-error {
  background: rgba(255, 0, 0, 0.9) !important;
}

/************ Version 1.3 **************/
.description img {
  max-width: 100% !important;
  height: auto !important;
}

/************ Version 1.4 **************/
#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 99999;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="text"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0);
  font-size: 60px;
  font-weight: 300;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 60px;
  font-weight: 100;
}

button.btn-trans {
  background-color: transparent;
  border: 2px solid #FFF;
  margin-top: 10px;
  text-transform: uppercase;
  padding: 9px 20px;
  color: #FFF;
}

button.no-shadow {
  text-shadow: none;
}

button:hover.btn-trans,
button:focus.btn-trans,
button:active.btn-trans {
  background-color: #f45302;
  border: 2px solid #f45302;
  color: #FFF;
}

/************ Version 1.5 **************/
.truncate {
  white-space: normal !important;
  overflow: hidden;
  position: relative;
  max-height: 500px;
}

.truncate:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: hsla(0, 0%, 100%, 0);
  background-image: linear-gradient(hsla(0, 0%, 100%, 0), #fff 75%);
  z-index: 40;
}

.readmoreBtn {
  cursor: pointer;
  position: absolute;
  bottom: 15px;
  z-index: 45
}

/************ Version 1.6 **************/
.btn-shadow {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

.btn-donate {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: bold;
}

.btn-donate-embed {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

/************ Version 1.7 **************/
select.form-control,
select.form-control:focus {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

i.featured-icon {
  color: #ff9800;
}

.box-featured {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  padding: 2px 6px;
  border-radius: 50px;
  color: #ff9800;
  font-size: 25px;
  text-shadow: 0 0px 2px #adadad;
}

.padding-15 {
  padding: 15px;
}

/************ Version 1.8 **************/
.description iframe {
  max-height: 500px !important;
}

/************ Version 1.9 **************/
.fb-comments iframe {
  max-height: inherit !important;
}

/************ Version 1.9.1 **************/
a:hover.btnLike,
a:focus.btnLike,
a:active.btnLike {
  text-decoration: none;
}

/************ Version 2.0 **************/
.wordBreak {
  word-break: break-word !important;
}

/************ Version 2.1 **************/
.btnDisabled {
  background-color: #a2a2a2;
  color: #fff;
}

/************ Version 2.2 **************/
@media (min-width: 768px) {
  .modalContactOrganizer {
    width: 450px;
    margin: 30px auto;
  }
}

.modalContactOrganizer .modal-body {
  padding: 25px;
}

.closeLight,
.closeLight:hover,
.closeLight:focus {
  color: #fff;
  opacity: 1;
}

.selectReward {
  display: block;
  color: inherit;
  position: relative;
}

.selectReward:hover,
.selectReward:focus,
.selectReward:active {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.cardSelectRewardBox {
  display: none;
}

.cardSelectReward {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  text-align: center;
  background-color: rgba(244, 83, 2, 0.9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.headerModalOverlay:before {
  content: '';
  position: absolute;
  width: 100%;
  background: rgba(5, 5, 5, .7);
  left: 0;
  top: 0;
  display: block;
  bottom: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.showBanner {
  position: fixed;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  color: #FFF;
  bottom: 0;
  padding: 10px;
}

img.imgDonations {
  max-width: inherit !important;
}

/************ Version 3.2 **************/
a.btn-whatsapp,
a:hover.btn-whatsapp,
a:active.btn-whatsapp,
a:focus.btn-whatsapp {
  background-color: #29a628;
  border-color: #29a628;
  color: #FFF;
  margin-bottom: 5px;
}

/************ Version 3.8 ************/
.carousel-cover:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, .2);
  left: 0;
  top: 0;
}

.dropdown-toggle::after {
  margin-left: 0.1em;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.dropdown-toggle[aria-expanded="true"]:after {
  /* filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); */
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nav-link {
  color: var(--dark);
  border-radius: 3px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
  text-transform: capitalize;
}

.nav-link.active {
  color: var(--green);
}


.nav-link:hover:not(.search):not(.btn),
.nav-link:active:not(.search):not(.btn),
.nav-link:focus:not(.search):not(.btn) {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
}

.nav-link.search:hover,
.nav-link.search:active,
.nav-link.search:focus {
  color: white;
}

.btn {
  font-weight: bold;
}

.dd-menu:before {
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  vertical-align: middle;
  content: "";
  top: -5px;
  left: 10px;
  right: auto;
  color: #FFFFFF;
  border-bottom: .4em solid;
  border-right: .4em solid transparent;
  border-left: .4em solid transparent;
}

.dd-menu-user:before {
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  vertical-align: middle;
  content: "";
  top: -5px;
  right: 10px;
  left: auto;
  color: #FFFFFF;
  border-bottom: .4em solid;
  border-right: .4em solid transparent;
  border-left: .4em solid transparent;
}

.dropdown-menu {
  padding-top: 0.955rem;
  border: 0;
  box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 150ms linear;
  -moz-transition: all 150ms linear;
  -o-transition: all 150ms linear;
  -ms-transition: all 150ms linear;
  transition: all 150ms linear;
  margin-top: 10px !important;
}

.dropdown-toggle::after {
  margin-left: 0.1em;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.dropdown-toggle[aria-expanded="true"]:after {
  /* filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); */
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropdown-toggle::after {
  font-weight: 400;
  font-style: normal;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: none;
  content: "▼";
  font-size: 12px;
  top: 50%;
  right: 24px;
  margin-top: -5px;
}

.text-shadow-trans {
  text-shadow: 0 1px 4px #333333b3;
}

.navbar .nav-item {
  margin-left: 2px;
  margin-right: 2px;
}

.sidebar-overlay .navbar .navbar-collapse {
  z-index: 100;
}

/*** 991 ***/
@media (max-width: 991px) {

  .navbar .navbar-collapse.show {
    right: 0;
  }

  .navbar .navbar-collapse {
    position: fixed;
    right: -100%;
    width: 100%;
    top: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999999;
    overflow-y: scroll;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    padding: 5px;
    text-align: center;
  }

  .dd-menu:before,
  .dd-menu-user:before {
    display: none;
  }

  .carousel-caption .display-4 {
    font-size: 3.1rem;
  }

  .item h5 {
    line-height: 1.2 !important;
  }

  .social-links {
    text-align: center !important;
    margin-top: 10px;
  }

  .list-social {
    float: none !important;
  }

  .copyright {
    text-align: center;
  }

  .btn-create {
    margin-top: 10px;
  }

  .navbar .navbar-collapse .close-menu {
    color: #FFF;
    padding: 2px 4px;
    background: transparent;
    display: inline-block;
    cursor: pointer;
    font-size: 25px;
    text-align: center;
    font-weight: 100;
    text-decoration: none;
  }

  .navbar .navbar-nav .nav-item {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: .25rem;
  }

  .navbar .navbar-nav .nav-item .nav-link {
    display: block;
    padding: .625rem;
  }
}

/* max-width 991 */

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar .navbar-nav .nav-item .nav-link:not(.btn).active {
  /* background: rgba(0, 0, 0, 0.2);
  border-radius: 50px; */
  color: var(--green) !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: white;
  background-color: #007bff;
}

[class^="ribbon-"] {
  position: absolute;
  margin-bottom: 80px;
}

[class^="ribbon-"]:before,
[class^="ribbon-"]:after {
  content: "";
  position: absolute;
}

.ribbon-1 {
  width: 30px;
  height: 40px;
  background: #ff9800;
  top: -6px;
  left: 25px;
}

.ribbon-1:before {
  height: 0;
  width: 0;
  border-bottom: 6px solid #d07e05;
  border-right: 6px solid transparent;
  right: -6px;
}

.ribbon-1:after {
  height: 0;
  width: 0;
  border-left: 15px solid #ff9800;
  border-right: 15px solid #ff9800;
  border-bottom: 10px solid transparent;
  bottom: -10px;
  left: 0;
}

.ribbon-1 i {
  position: absolute;
  top: 40%;
  left: 30%;
  color: #FFF;
}

.item>a::after {
  content: "";
  display: block;
  background: rgba(0, 0, 0, .3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.item h5 {
  line-height: 3.0;
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  margin-top: -30px;
  color: #fff;
  z-index: 5;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #565656;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

.owl-theme .owl-dots .owl-dot span {
  position: relative;
  background-color: #D6D6D6;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

.owl-theme .owl-dots .owl-dot span::before {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  border-radius: 50%;
  width: 0;
  height: 0;
  /*background-color: rgba(0, 0, 0, 0.1);*/
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

.owl-theme .owl-dots .owl-dot.active span::before,
.owl-theme .owl-dots .owl-dot:hover span::before {
  top: -5px;
  left: -5px;
  width: 19px;
  height: 19px;
  border: 1px solid #565656;
}

/* .bg-dark-2 {
  background-color: #1b1b1b;
} */

/* .bg-dark {
  background-color: #212121;
} */

.link-footer,
.ico-social {
  color: #eee;
}

.btn-main:hover i {
  -webkit-transform: translateX(6px);
  transform: translateX(6px);
}

.btn-main i {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.bg-sections>div {
  color: white;
  position: relative;
}

.jumbotron-bottom,
.bg-sections {
  background: url('../img/cover.jpg') no-repeat center center #D1D1D1;
  background-size: cover;
  position: relative;
}

.jumbotron {
  border-radius: 0 !important;
}

.bg-cover:before,
.bg-sections::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, .3);
  left: 0;
  top: 0;
}

.parallax-cover {
  background-repeat: repat;
  background-attachment: fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
}

main>div.section:nth-child(odd) {
  background-color: white;
}

main>div.section:nth-child(even) {
  background-color: #f8f9fa !important;
}

form.login-form {
  width: 350px;
}

.alert-danger {
  color: #FFFFFF;
  background-color: #FF0000;
  border-color: #FF012A;
}

.bg-danger {
  color: #FFFFFF;
  background-color: #FF0000 !important;
}

.custom-control-input:not(:disabled):focus~.custom-control-label::before {
  box-shadow: none;
}

.custom-checkbox .custom-control-input~.custom-control-label,
.custom-control-label {
  font-size: .875rem;
  cursor: pointer;
}

a.fb-button {
  background-color: #3b5998;
  font-weight: normal;
}

a.google-button,
a:hover.google-button,
a:focus.google-button {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
  font-weight: normal;
}

.alert-dismissible .close {
  color: #FFF;
  text-shadow: none;
}

.input-group-text {
  background: transparent;
}

.input-group-text i {
  color: #bdbdbd;
}

.alert-success {
  background-color: #00a65a;
  border-color: #00a65a;
  color: #FFF;
}

.campaigns {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}

.campaigns:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);

}

.error-page h1 {
  font-size: 10rem;
  line-height: 9rem;
  font-weight: 700;
  color: #ec2522;
}

.wrap-center {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 20;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.error-link {
  color: #ec2522;
}

.wrap-container {
  max-width: 550px;
  margin: 0 auto;
}

.wrap-container-lg {
  width: 650px;
  margin: 0 auto;
}

.avatar-wrap {
  width: 125px;
  height: 125px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2);
}

.button-avatar-upload {
  color: #FFF;
  width: 100%;
  padding: 8px;
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
}

a:hover.button-avatar-upload {
  color: #FFF;
  background: rgba(0, 0, 0, 0.6);
}

.progress-upload {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #FFF;
  line-height: 125px;
  display: none;
}

.page-link:hover {
  color: #FFF;
}

.page-link {
  border-radius: 4px;
  border: none;
  margin-right: 2px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.item>a::after {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.5s linear;
}

.item>a:hover::after {
  background: rgba(0, 0, 0, .1);
}

.filer-input-dragDrop {
  display: block;
  width: 100%;
  margin: 0 auto 25px auto;
  padding: 50px 0;
  color: #8d9499;
  color: #97A1A8;
  cursor: pointer;
  background: #fff;
  border: 2px dashed #C8CBCE;
  text-align: center;
  border-radius: 6px;
  -webkit-transition: box-shadow 0.3s,
    border-color 0.3s;
  -moz-transition: box-shadow 0.3s,
    border-color 0.3s;
  transition: box-shadow 0.3s,
    border-color 0.3s;
  overflow: hidden;
}

.filer-input-dragDrop:hover {
  border-color: #868686;
}

.filer.dragged .filer-input-dragDrop {
  border-color: #aaa;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, .08);
}

.filer.dragged .filer-input-dragDrop * {
  pointer-events: none;
}

.filer.dragged .filer-shade {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.filer.dragged .filer-input-text,
.filer.dragged .filer-input-choose-btn {
  filter: alpha(opacity=30);
  opacity: 0.3;
}

.filer-input-dragDrop .filer-shade {
  font-size: 70px;
  margin-top: -10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filer-input-text h3 {
  margin: 0;
  font-size: 18px;
}

.filer-input-text span {
  font-size: 12px;
}

.filer-input-choose-btn {
  display: inline-block;
  padding: 8px 14px;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: bold;
  color: #8d9496;
  border-radius: 3px;
  border: 1px solid #c6c6c6;
  vertical-align: middle;
  background-color: #fff;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.filer-input-choose-btn:hover,
.filer-input-choose-btn:active {
  color: inherit;
}

.filer-input-choose-btn:active {
  background-color: #f5f5f5;
}

.previewPhoto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: none;
  cursor: default;
}

.btn-remove-photo {
  position: absolute;
  top: 20px;
  right: 20px;
}

.text-underline {
  text-decoration: underline;
}

.custom-select {
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23a5a5a5' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px
}

.text-strong-small {
  font-weight: 600;
  font-size: 20px;
  color: #333;
}

.text-percentage {
  float: right;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

.social-share a {
  color: #797979;
  font-size: 18px;
}

.likeButton {
  cursor: pointer;
}

.btn-absolute {
  position: absolute;
  right: 20px;
  padding: 2px 10px;
}

#url_campaign,
#embedCode {
  padding-right: 110px;
}

#updates li {
  list-style: none;
  padding-bottom: 46px;
  padding-left: 30px;
  position: relative;
  border-left: 2px solid #ededed;
}

#updates li:last-child {
  padding-bottom: 0px;
}

#updates li:before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #ededed;
  border-radius: 50%;
  left: -13px;
  top: 0;
  transition: all 0.6s;
  z-index: 9;
}

#updates li:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 25px;
  background-color: #ededed;
  left: 0;
  top: 10px;
}

#listDonations li {
  margin-bottom: 10px;
  border-bottom: 1px solid #e3e3e3;
}

.facebook-btn {
  color: #3e5c9b !important;
}

.twitter-btn {
  color: #1da1f2 !important;
}

/*********** v3.9 *********/
.fixed-top {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*********** v4.0 *********/
#desc li {
  list-style: inherit;
}

#desc ol,
#desc ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.fb-messenger {
  color: #448aff !important;
}

.btn-telegram {
  color: #20a0e1 !important;
}

.btn-whatsapp {
  color: #50b154 !important;
}

a:hover.social-share {
  text-decoration: none;
}

a.social-share i {
  color: #797979;
  font-size: 32px;
}

/*********** v4.6 *********/
.dropdown-menu-macos {
  padding: .5rem;
  border-radius: .5rem;
}

.dropdown-menu-macos .dropdown-item {
  border-radius: .25rem;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem;
}

.mr-3,
.mx-3 {
  margin-right: 1rem;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem;
}

.mr-5,
.mx-5 {
  margin-right: 3rem;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem;
}

.ml-3,
.mx-3 {
  margin-left: 1rem;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem;
}

.ml-5,
.mx-5 {
  margin-left: 3rem;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pr-3 {
  padding-right: 1rem !important;
}

.pr-4 {
  padding-right: 1.5rem !important;
}

.pr-5 {
  padding-right: 3rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pl-3 {
  padding-left: 1rem !important;
}

.pl-4 {
  padding-left: 1.5rem !important;
}

.pl-5 {
  padding-left: 3rem !important;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block+.btn-block {
  margin-top: 0.5rem;
}

/* a:not([class*="btn"]) {
  text-decoration: none;
} */


/* .bg-success {
  background-color: #28a745 !important;
} */

[placeholder] {
  text-overflow: ellipsis;
}

.card-settings>.list-group-flush>.list-group-item {
  border-width: 0 0 0px !important;
}

.icon-dashboard {
  background-color: #2687072e;
  border-radius: 50%;
  color: #00ad1d !important;
  width: 2.7rem !important;
  height: 2.7rem !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
}

.inner-wrap {
  position: relative;
  z-index: 1;
}

.icon-wrap {
  position: absolute;
  top: -30px;
  right: 10px;
  z-index: 0;
  font-size: 115px;
  color: rgba(0, 0, 0, 0.10);
  transform: rotate(20deg);
}

.table thead th {
  vertical-align: bottom;
  border: none;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  color: #afafaf;
  font-size: 14px;
}

.table td,
.table th {
  padding: .75rem;
  vertical-align: top;
  border: none;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  font-size: 14px;
}

.table tbody {
  border: none !important;
}

.pagination {
  margin-top: 10px;
}

.modal-content {
  border-radius: 0.75rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-check .form-check-input~.form-check-label,
.form-check-label,
.form-check-input {
  cursor: pointer;
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.icon-display {
  font-size: 3.5rem !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row>.col,
.form-row>[class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.list-group-item.active {
  color: #fff;
  background-color: #565656;
  border-color: #565656;
}

.blog-post img {
  max-width: 100% !important;
  height: auto !important;
}

.ribbon-1 {
  z-index: 999;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

.form-check-input:focus:not(:checked),
.form-switch .form-check-input:focus:not(:checked) {
  border: 1px solid rgba(0, 0, 0, .25);
}

.form-switch .form-check-input:focus:not(:checked) {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}

.d-none-custom {
  display: none;
}

::selection {
  background-color: var(--color-default);
  color: white;
}

::moz-selection {
  background-color: var(--color-default);
  color: white;
}

::webkit-selection {
  background-color: var(--color-default);
  color: white;
}

a,
a:hover,
a:focus,
a.page-link,
.btn-outline-primary {
  /* color: var(--color-default); */
  color: var(--green);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled,
.form-check .custom-control-input:checked~.custom-control-label::before,
.page-item.active .page-link,
.page-link:hover {
  background-color: var(--color-default);
  border-color: var(--color-default);
}

.bg-primary,
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active,
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
#updates li:hover:before {
  background-color: var(--green) !important;
  color: var(--bright) !important;
}

.owl-theme .owl-dots .owl-dot.active span::before,
.owl-theme .owl-dots .owl-dot:hover span::before,
.form-control:focus,
.custom-select:focus,
.btn-outline-primary {
  border-color: var(--color-default);
}

.form-check-input:checked,
.custom-control-input:checked~.custom-control-label::before,
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active {
  color: #fff;
  background-color: var(--green);
  border-color: var(--green);
}

.carousel-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #232a29;

}

/* .carousel-cover:nth-child(1) {
  background-image: url('../img/slider-1.jpg');
}
.carousel-cover:nth-child(2) {
  background-image: url('../img/slider-2.jpg');
}
.carousel-cover:nth-child(3) {
  background-image: url('../img/slider-2.jpg');
} */
.bg-cover {
  background-image: url('../img/cover.jpg');
}

.datepicker .table>:not(:first-child) {
  border-top: 0;
}

.padding-top-78 {
  padding-top: 78px;
}

.form-switch.form-switch-md .form-check-input {
  height: 1.5rem;
  width: calc(2rem + 0.75rem);
  border-radius: 3rem;
  cursor: pointer;
}

.form-switch-md .form-check-label {
  font-size: .890rem;
  ;
  line-height: 2rem;
  padding-left: 10px;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 51, 51, 0.7);
  z-index: 1031;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.overlay.open {
  display: block;
  opacity: 1;
}

.StripeElement {
  box-sizing: border-box;
  height: 40px;
  padding: 11px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  margin-bottom: 10px
}

.StripeElement--focus {
  border-color: #f45302;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}



/*custom css by ayan.das*/
.border-success {
  border-color: var(--green);
}

.border-dark {
  border-color: var(--shade);
}

.border-black {
  border-color: var(--dark);
}

.border-light {
  border-color: var(--light);
}

.border-white {
  border-color: var(--bright);
}

.text-dark {
  color: var(--shade);
}

.text-black {
  color: var(--dark);
}

.text-light {
  color: var(--light);
}

.text-white {
  color: var(--bright);
}


.lc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: fit-content;
}

@media (max-width: 720px) {
  .lc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.carousel-control-prev,
.carousel-control-next {
  height: 100%;
  margin: auto 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.project-card .card-title {
  cursor: pointer;
  color: var(--green);
}

.project-card:hover .card-title {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.obj-cover {
  object-fit: cover !important;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;

}


.gal-card {
  width: 100%;
  height: 450px;
  max-width: 33%;
  margin-bottom: 1rem;
}

@media (max-width:1024px) {

  .gal-card {
    max-width: 33%;

  }
}

@media (max-width:970px) {

  .gal-card {
    max-width: 50%;

  }
}

@media (max-width:720px) {

  .gal-card {
    max-width: 100%;
    height: fit-content;

  }
}

@media (max-width:480px) {

  .gal-card {
    max-width: 100%;
    height: fit-content;

  }
}

.card-container .card .carousel-inner {
  max-height: 200px;


}

.discover .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.discover .title small,
.discover .title a {
  color: var(--green);
  display: none;
  transition: all 0.5s ease-in-out;
  margin-left: 0.5rem;
  cursor: pointer;
}

.discover:hover .title small,
.discover:hover .title a {
  display: block;
}

.backdrop {
  backdrop-filter: blur(2px) !important;
}

/*button design*/
button,
.btn {
  outline: none;
  width: fit-content;
  padding: 0.5rem 1rem;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0.5rem;
  text-transform: capitalize;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  border: 1px solid transparent;
}

@media (max-width: 720px) {
  button {
    height: 40px;

    font-size: 14px;
    font-weight: 400;
  }
}

button.primary-dark,
.btn.primary-dark {
  background: var(--dark);
  color: var(--bright);
}

button.primary-dark:hover,
.btn.primary-dark:hover {
  background: var(--shade);
}

button.primary-light,
.btn.primary-light {
  background: var(--bright);
  color: var(--dark);
}

button.primary-light:hover,
.btn.primary-light:hover {
  background: var(--light);
}

button.primary-success,
.btn.primary-success {
  background: var(--green);
  color: var(--bright);
}

button.primary-success:hover,
.btn.primary-success:hover {
  background: var(--bs-green);
}


button.secondary-dark,
.btn.secondary-dark {
  background: var(--light);
  color: var(--dark);
  border-color: var(--dark);
}

button.secondary-light,
.btn.secondary-light {
  background: var(--light);
  color: var(--dark);
  border-color: var(--bright);

}

button.secondary-success,
.btn.secondary-success {
  background: var(--light);
  border-color: var(--green);
  color: var(--dark);

}

input {
  background: var(--light) !important;
}

select {
  background: var(--light) !important;
}


.selectize-input.full {
  background: var(--light) !important;
}




.form-select {
  width: fit-content;
  height: fit-content !important;
  padding: 0.3rem 0.5rem !important;
}

.search-box {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 99999;
  background: var(--light);
  /* backdrop-filter: blur(5px); */
}

.search-box.open {
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}


.search-box .heading {
  width: 100%;
  padding: 0 1rem;
  padding-right: 0;
  margin: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-box .heading .close,
.search-box .input .close {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shade);
  opacity: 1;
  padding: 0.5rem;
  font-size: 30px;
  font-weight: 300;
}

.search-box .input {
  width: 100%;
  padding: 0 1rem;
  padding-right: 0;
  margin: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bright);
}

.search-box .input form {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-box input {
  width: 100%;
  height: 100%;
  color: var(--dark);
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  border: 0px;
  margin: 0px auto;
  outline: none;
}

.search-box .output {
  width: 100%;
  height: 100%;

}

.search-box .output ul h4 {
  color: var(--shade);

}

.search-box .output ul a {
  color: var(--dark);

}

.cursor-pointer {
  cursor: pointer;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--green);
  padding: 3px;

  display: flex;
  align-items: center;
  justify-content: center;

}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.avatar span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 50%;
  font-weight: bold;
  color: var(--green);
}

@media (max-width: 720px) {
  .avatar {
    width: 30px;
    height: 30px;
    padding: 2px;



  }

  .avatar span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 50%;
    font-weight: bold;
    color: var(--green);
  }
}

.store a {
  width: 150px;
  height: 50px;
}

.store img {
  width: 100%;
  height: 100%;
}



/* //TMY/ayan/ css for login page */

.login-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--light);
  overflow: hidden;
}

.forms-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.signin-signup {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  width: 50%;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 5;
  transition: 1s 0.7s ease-in-out;
}

.login-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.5rem;
  margin: auto;
  border-radius: 5px;
  overflow: hidden;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  transition: 0.2s 0.7s ease-in-out;
}

.login-form.sign-in-form {
  z-index: 2;
}

.login-form.sign-up-form {
  z-index: 1;
  opacity: 0;
}



.title {
  font-size: 20px;
  color: var(--title);
  margin-bottom: 10px;
}

.input-field {
  width: 95%;
  height: 55px;
  margin: 10px 0;
  /* border-radius: 55px; */
  border-bottom: 1px solid var(--shade);

  display: grid;
  grid-template-columns: 15% 70% 15%;
  padding: 1px 0.4rem;
}

.input-field i {
  text-align: center;
  line-height: 55px;
  color: var(--dark);
  font-size: 1.1rem;
}

#togglePassword {
  text-align: center;
  color: var(--shade);
}

#toggleReg {
  text-align: center;
  color: var(--shade);
}

.input-field input {
  background: transparent !important;
  outline: none;
  border: none;
  line-height: 1;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--dark);
}

.input-field input::placeholder {
  color: var(--shade);
  font-weight: 500;
}

.btn-login {
  width: 100%;
  height: 40px;
  border: 1px solid var(--green);
  outline: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--light);
  color: var(--dark);
  text-transform: capitalize;
  font-weight: 600;
  margin: 10px 0;
  transition: 0.5s;
}

.btn-login:hover {
  background-color: var(--green-hov);
  color: var(--light);

}

.check {
  display: block;
  position: relative;
  margin: 12px 0;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkmark {
  color: var(--check-text);
}

.checkmark a {
  color: var(--check-link);
  text-decoration: underline;
}

.checkmark a:hover {
  color: var(--check-hover);
}

.social-text {
  padding: 0.7rem 0;
  font-size: 1rem;
  color: var(--social-text);
}

.social-media {
  display: flex;
  justify-content: center;
}

.social-icon {
  height: 46px;
  width: 46px;
  border: 1px solid var(--icon-color);
  margin: 0 0.45rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--icon-color);
  font-size: 1.1rem;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--social-icon);
  border-color: var(--social-icon);
}

.icon-mode {
  height: 32px;
  width: 32px;
  border: 1px solid var(--icon-color);
  margin: 40px 5px 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--icon-color);
  font-size: 1rem;
  border-radius: 50%;
  transition: 0.3s;
}

.icon-mode:hover {
  color: var(--social-icon);
  border-color: var(--social-icon);
}

.text-mode {
  padding: 0.5rem 0;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--social-text);
}

.panels-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  text-align: center;
  z-index: 7;
}

.left-panel {
  pointer-events: all;
  padding: 3rem 17% 2rem 12%;
}

.right-panel {
  pointer-events: none;
  padding: 3rem 0;
}

.panel .content {
  color: var(--dark);
  transition: 0.9s 0.6s ease-in-out;
}

.panel h3 {
  font-weight: 600;
  line-height: 1;
  font-size: 1.5rem;
}

.panel p {
  font-size: 0.95rem;
  padding: 0.7rem 0;
}

.btn-login.transparent {
  margin: 0;
  background: none;
  border: 2px solid #fff;
  width: 130px;
  height: 41px;
  font-weight: 600;
  font-size: 0.8rem;
}

.image {
  width: 90%;
  margin-top: 10px;
  transition: 1.1s 0.4s ease-in-out;
}

.right-panel .content,
.right-panel .image {
  transform: translateX(800px);
}

/* ANIMATION */

.login-container.sign-up-mode:before {
  transform: translate(100%, -50%);
  right: 52%;
}

.login-container.sign-up-mode .left-panel .image,
.login-container.sign-up-mode .left-panel .content {
  transform: translateX(-800px);
}

.login-container.sign-up-mode .right-panel .content,
.login-container.sign-up-mode .right-panel .image {
  transform: translateX(0px);
}

.login-container.sign-up-mode .left-panel {
  pointer-events: none;
}

.login-container.sign-up-mode .right-panel {
  pointer-events: all;
}

.login-container.sign-up-mode .signin-signup {
  left: 25%;
}

.login-container.sign-up-mode .login-form.sign-in-form {
  z-index: 1;
  opacity: 0;
}

.login-container.sign-up-mode .login-form.sign-up-form {
  z-index: 2;
  opacity: 1;
}

/* MEDIA SCREEN */

@media (max-width: 870px) {
  .login-container {
    min-height: 800px;
    height: 100vh;
  }

  .login-container::before {
    width: 1500px;
    height: 1500px;
    left: 30%;
    bottom: 68%;
    transform: translateX(-50%);
    right: initial;
    top: initial;
    transition: 2s ease-in-out;
  }

  .signin-signup {
    width: 100%;
    left: 50%;
    top: 95%;
    transform: translate(-50%, -100%);
    transition: 1s 0.8s ease-in-out;
  }

  .panels-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr 1fr;
  }

  .panel {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem 8%;
  }

  .panel .content {
    transition: 0.9s 0.8s ease-in-out;
  }

  .panel h3 {
    font-size: 1.2rem;
  }

  .panel p {
    font-size: 0.7rem;
    padding: 0.5rem 0;
  }

  .btn-login.transparent {
    width: 110px;
    height: 35px;
    font-size: 0.7rem;
  }

  .image {
    display: none;
  }

  /*.image {
        width: 200px;
        transition: 0.9s 0.6s ease-in-out;
    }*/

  .left-panel {
    grid-row: 1 / 2;
  }

  .right-panel {
    grid-row: 3 / 4;
  }

  .right-panel .content,
  .right-panel .image {
    transform: translateY(300px);
  }

  .login-container.sign-up-mode:before {
    transform: translate(-50%, 100%);
    bottom: 32%;
    right: initial;
  }

  .login-container.sign-up-mode .left-panel .image,
  .login-container.sign-up-mode .left-panel .content {
    transform: translateY(-300px);
  }

  .login-container.sign-up-mode .signin-signup {
    top: 5%;
    transform: translate(-50%, 0);
    left: 50%;
  }

  .keyboard,
  .key {
    opacity: 0;
    visibility: hidden;
    font-size: 0.1px;
  }
}

@media (max-width: 570px) {
  .login-form {
    padding: 0 1.5rem;
  }

  .image {
    display: none;
  }

  .panel .content {
    padding: 0.5rem 1rem;
  }

  .panel p {
    opacity: 0;
  }

  .login-container:before {
    bottom: 75%;
    left: 50%;
  }

  .container.sign-up-mode:before {
    bottom: 24%;
    left: 50%;
  }

  .field-icon {
    float: right;
    margin-left: 300px;
    margin-top: -55px;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 385px) {
  .field-icon {
    float: right;
    margin-left: 260px;
    margin-top: -55px;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 350px) {
  .field-icon {
    float: right;
    margin-left: 200px;
    margin-top: -55px;
    position: relative;
    z-index: 1;
  }
}



/* //TMY/ayan/ create welfare form design */
#multi-step-form-container {
  /* margin-top: 5rem; */
  overflow-x: hidden;
}

.form-step {
  background: var(--bright);
  border-radius: 8px;
  padding: 3rem 2rem;
}

@media (max-width: 720px) {
  .form-step {
    padding: 2rem 1rem;
  }
}

ul.form-stepper {
  counter-reset: section;
  margin-bottom: 3rem;
}

ul.form-stepper .form-stepper-circle {
  position: relative;
}

ul.form-stepper .form-stepper-circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.form-stepper-horizontal {
  position: relative;
  display: flex;
  justify-content: space-between;
}

ul.form-stepper>li:not(:last-of-type) {
  margin-bottom: 0.625rem;
  transition: margin-bottom 0.4s;
}

.form-stepper-horizontal>li:not(:last-of-type) {
  margin-bottom: 0 !important;
}

.form-stepper-horizontal li {
  position: relative;
  display: flex;
  flex: 1;
  align-items: start;
  transition: 0.5s;
}

.form-stepper-horizontal li:not(:last-child):after {
  position: relative;
  flex: 1;
  height: 1px;
  content: "";
  top: 26%;
}

.form-stepper-horizontal li:after {
  background-color: var(--shade);
}

.form-stepper-horizontal li.form-stepper-completed:after {
  background-color: var(--green-hov);
}

.form-stepper-horizontal li:last-child {
  flex: unset;
}

ul.form-stepper li a .form-stepper-circle {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-right: 0;
  line-height: 1.7rem;
  text-align: center;
  background: var(--bright);
  border-radius: 50%;
}

.form-stepper .form-stepper-active .form-stepper-circle {
  background-color: var(--green) !important;
  color: var(--bright);
}

.form-stepper .form-stepper-active .label {
  color: var(--dark) !important;
}

.form-stepper .form-stepper-active .form-stepper-circle:hover {
  background-color: var(--green-hov) !important;
  color: var(--bright) !important;
}

.form-stepper .form-stepper-unfinished .form-stepper-circle {
  background-color: var(--bright);
}

.form-stepper .form-stepper-completed .form-stepper-circle {
  background-color: var(--green-hov) !important;
  color: var(--bright);
}

.form-stepper .form-stepper-completed .label {
  color: var(--dark) !important;
}

.form-stepper .form-stepper-completed .form-stepper-circle:hover {
  background-color: var(--green) !important;
  color: var(--bright) !important;
}

.form-stepper .form-stepper-active span.text-muted {
  color: var(--bright) !important;
}

.form-stepper .form-stepper-completed span.text-muted {
  color: var(--bright) !important;
}

.form-stepper .label {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-stepper a {
  cursor: default;
}

.select2 {
  width: 100%;
  min-height: 40px;
  border-radius: 5px;

}

/* //TMY/ayan/select 2 styling */







.modal {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  overflow: hidden;
  z-index: 9999;
  width: 100vw;
  height: 100vh;

}

.modal-show {
  display: block;
  opacity: 1;

}

.modal-dialog {
  margin: 0 auto;
  margin-right: 0;
  /* border-radius: 8px; */
  height: 100%;


}


@media (min-width: 576px) {
  .modal-dialog {
    max-width: 70%;
  }

  .details-modal .modal-dialog {
    max-width: 100%;
  }
}

@media (min-width: 720px) {
  .modal-dialog {
    max-width: 50%;
  }

  .details-modal .modal-dialog {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .modal-dialog {
    max-width: 40%;
  }

  .details-modal .modal-dialog {
    max-width: 100%;
  }
}

.modal-content {
  border-radius: 8px 0 0 8px;
  height: 100%;
  background-color: var(--light);
}

.details-modal .modal-content {
  width: 100%;
  border-radius: 0;
  height: 100%;
  background-color: var(--light);
}

.modal-body {
  overflow-y: auto;
  overflow-x: hidden;
}


.textarea {
  width: 100%;
  min-height: 300px;
  background: var(--light);
  padding: 0.5rem;
  border-radius: 5px;
}

/* //TMY/ayan/radio list css  */

.list-group-item {
  user-select: none;
  background: var(--light);
  margin-bottom: 0.5rem;
  border-radius: 5px;
}


.list-group input[type="radio"] {
  display: none;
}

.list-group input[type="radio"]+.list-group-item {
  cursor: pointer;
}

.list-group input[type="radio"]+.list-group-item::before {
  content: "✔";
  color: transparent;
  font-weight: bold;
  margin-right: 1em;
}

.list-group input[type="radio"]:checked+.list-group-item {
  background-color: var(--green);
  color: var(--light);
}

.list-group input[type="radio"]:checked+.list-group-item:before {
  color: inherit;
}



/* //TMY/ayan/category page tab design */

.tab-wrap {
  transition: 0.3s box-shadow ease;
  border-radius: 6px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  list-style: none;
  background-color: var(--light);
  margin: 0.5rem 0;
}


.tab {
  display: none;
}


.tab__content.active {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
}

/* 
.tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
}
.tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
}
.tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
}
.tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
}
.tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
  opacity: 1;
  transition: 0.5s opacity ease-in, 0.8s transform ease;
  position: relative;
  top: 0;
  z-index: 100;
} */

.tab:checked+label {
  background-color: var(--bright);
  cursor: default;
}

.tab:checked+label:hover {
  background-color: var(--bright);
}

.tab+label {
  width: fit-content;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark);
  /* flex-grow:1; */
  text-align: center;
  background-color: var(--light);
  user-select: none;
  text-align: center;
  transition: 0.3s background-color ease, 0.3s box-shadow ease;
  height: 50px;
  box-sizing: border-box;
  padding: 0 1rem;
}

.tab+label:hover {
  background-color: var(--green);
}

.tab__content {

  padding: 1rem 0;
  background-color: var(--bright);
  position: absolute;
  width: 100%;
  z-index: -1;
  opacity: 0;
  left: 0;
}




/* //TMY/ayan/profile css  */

.content-profile-page {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--bright);
}


.profile-user-page {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width:480px) {

  .profile-user-page {
    justify-content: center;
  }

  .user-profile-settings {
    width: 100%;
    justify-content: space-between !important;
  }

}

@media (max-width:386px) {
  .content-profile-page {
    margin-top: 3rem;
  }


}

.img-user-profile .avatar {
  margin: 1rem auto;
  background: var(--light);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 0.2em;
}



.profile-user-page .user-profile-data {
  margin: 0.5rem 0;
  margin-left: 1rem;
  width: fit-content;
  text-align: left;

}

.profile-user-page .user-profile-data h1 {
  margin: 0.5rem auto;
  color: var(--dark);

}

.profile-user-page .user-profile-data p {
  color: var(--shade);
  margin: 0.3rem auto;
}

.content-profile-page .data-user {
  margin-bottom: 0;
  cursor: pointer;
  padding: 0;
  list-style: none;
  display: table;
  width: 100%;
}

.content-profile-page .data-user li {
  margin: 0;
  padding: 0;
  width: 33%;
  display: table-cell;
  text-align: center;
}

.content-profile-page .data-user li:first-child {
  border-left: 0;
}

.content-profile-page .data-user li:first-child a {
  border-bottom-left-radius: 0.3rem;
}

.content-profile-page .data-user li:last-child a {
  border-bottom-right-radius: 0.3rem;
}

.content-profile-page .data-user li a,
.content-profile-page .data-user li strong {
  display: block;
}

.content-profile-page .data-user li a {
  background-color: var(--bright);
  border-bottom: 3px solid var(--bright);
  padding: .93em 0;
  color: var(--shade);
}

.content-profile-page .data-user li a span {
  color: var(--dark);
}

.profile-input {
  margin: 1rem auto;
  background: var(--light);
  width: 150px !important;
  height: 150px !important;
  border-radius: 50%;
}

.change-profile .avatar {
  position: relative;
  overflow: hidden;
}

.change-profile .avatar img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;

}

.change-profile .avatar .change {
  width: 100%;
  height: 40%;
  border-radius: 0 0 50% 50%;
  background-color: var(--shade);
  color: var(--light);
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  font-size: 14px;


  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}






.upload-photo {
  position: relative;
}

.upload__inputfile,
.video__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.upload__btn,
.video__btn {
  display: inline-block;
  color: #fff;
  text-align: center;
  min-width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #ced4da;
  background-color: var(--light);
  border-radius: 4px;
}

.upload__btn-box,
.video__btn-box {
  margin-bottom: 10px;
}

.upload__img-wrap,
.upload__video-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

.upload__img-box,
.upload__video-box {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
  background: var(--light);
}

.upload__video-box {
  width: 100%;
  height: 150px;
  object-fit: cover;
  margin-bottom: 12px;
  background: var(--light);
  position: relative;
}


.upload__img-close,
.upload__video-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 5px;
  right: 5px;
  text-align: center;
  z-index: 2;
  cursor: pointer;

}

.upload__img-close:after,
.upload__video-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}

.img-bg,
video {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  /* padding-bottom: 100%; */
}



.text-ellipsis {
  text-overflow: ellipsis !important;
  overflow: hidden;
  white-space: nowrap;
}

.w-fit {
  width: fit-content !important;
}

.detail-carousel {
  height: 350px;
}

.detail-carousel .carousel-inner {
  height: 100%;
}

.detail-carousel .carousel-inner .carousel-item {
  height: 100%;
  object-fit: cover;
}

.sm-banner{
  width: 100% ;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
