@font-face {
	font-family: 'Poppins Regular';
	src: url(../assets/fonts/Poppins-Regular.ttf);
}
@font-face {
	font-family: 'Poppins Semi-Bold';
	src: url(../assets/fonts/Poppings/Poppins-SemiBold.ttf);
}
@font-face {
	font-family: 'Poppins Light';
	src: url(../assets/fonts/Poppins-Light.ttf);
}
@font-face {
	font-family: 'Poppins-Bold';
	src: url(../assets/fonts/Poppins-Bold.ttf);
}
:root {
	--fontsize: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;

	/* primary color */
	--whitish_grey: #fbf9f9;
	--black: #000000;
	--grey: #808080;
	--white: #fffcfc;
	--dark_purple: #211445;
	/* secondary color */
	--pink: #dc5792;
}
.modal {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	overflow: auto;
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 2;
	animation: modalopen 1s ease-out;
	display: none;
}











/* #logout_confirmation, #sign_up_confirmation{
	display: block;
} */
#logout_confirmation .modal_position{
	align-items: flex-start;
	
}

.modal_position {
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.confirmation_modal .popup__container {
	width: 450px;
	height: 30vh;
	margin-top: 0;
	background-color: white;
	justify-content: center;
	align-items: center;
	color: var(--dark_purple);
}
#logout_confirmation .popup__container {
	width: 350px;
	height: 150px;
}

.confirmation_modal .popup__container h1 {
	font-size: 1.7rem;
}

.confirmation_modal p {
	margin-bottom: 0;
	color: #000000;
	font-size: 1rem;
}

.confirm_action button[id="yes"]{
	background-color: red;
}














@keyframes modalopen {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
p{
	font-size: 0.8rem;
}
label {
	color: var(--white);
	text-align: left;
	margin-left: 0;
	font-size: 0.7rem;
	font-weight: 400;
}
.input {
	height: 40px;
	outline: none;
	border-radius: 7px;
	border: none;
	margin-bottom: 5px;
	background-color: #f2f0f0;
}
.hamburger {
	width: 20px;
	position: absolute;
	right: -40px;
	top: -30px;
	z-index: 2;
}
.button {
	background-color: var(--white);
	padding: 10px;
	border-radius: 10px;
	width: 60%;
	margin: 10px auto;
	color: var(--pink);
	border: none;
	font-size: 0.8rem;
	box-shadow: 2px 2px 5px rgba(240, 235, 235, 0.3);
	cursor: pointer;
}
.button:hover {
	color: var(--white);
	background-color: var(--dark_purple);
}
select {
	width: 100%;
	padding: 10px;
	background-color: #f2f0f0;
	margin: 5px 0;
	border-radius: 5px;
	border: none;
	outline: none;
	font-size: 0.8rem;
}
.popup__container {
	width: 350px;
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background-color: var(--dark_purple);
	border-radius: 10px;
	display: flex;
	text-align: center;
	padding: 25px 10px;
	display: flex;
	flex-direction: column;
	color: var(--white);
}

.popup__container h1 {
	text-align: center;
	margin-bottom: 1rem;
	font-size: 1rem;
}
.popup__container h1 span {
	font-size: 0.8rem;
	opacity: 0.7;
	font-weight: 400;
	text-align: center;
	display: block;
}
.popup__container p {
	
	line-height: 1.5;
	text-align: center;
	padding: 10px;
	margin-bottom: 15px;
}
.popup__container h2 {
	text-align: center;
	line-height: 1.5;
	font-size: 0.8rem;
	font-weight: 500;
}
.select__options {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	line-height: 1.2;
	margin-top: 10px;
}
#withdraw__contribution {
	display: none;
	position: absolute;
	top: 0;
	right: 100px;
}
.card__input {
	line-height: 0.5;
	margin-top: 0.5rem;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
}

.dropdown {
	display: flex;
	flex-direction: column;
	line-height: 1.5;
	margin-bottom: 1rem;
}
.dropdown label {
	text-align: left;
	font-size: 0.7rem;
}
.dropdown select {
	padding: 12px 10px;
	outline: none;
	border-radius: 7px;
	border: none;
	max-width: 100%;
}
.bank-update-box {
	background-color: #ffffff;
	color: var(--dark_purple);
	border-radius: 5px;
	line-height: 1;
}
.bank-update-box h2 {
	font-size: 0.8rem;
}


.avatar {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.8rem;
}
#avatar__img {
	border: 2px solid white;
	border-radius: 50%;
	max-width: 40px;
	max-height: 40px;
}
.withdraw__form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

::placeholder {
	font-size: 0.8rem;
	color: var(--black);
}

.bank__details {
	margin-top: 0.1rem;
}
.withdraw__funds {
	background-color: var(--dark_purple);
	border-radius: 10px;
	display: flex;
	text-align: center;
	padding: 10px 20px;
	display: flex;
	flex-direction: column;
	margin-top: -20px;
}
.withdraw__intro {
	background-color: var(--white);
	color: var(--dark_purple);
	border-radius: 10px;
	padding: 10px;
	line-height: 1.5;
	margin-bottom: 1rem;
}
.withdraw__intro h3 {
	margin-bottom: 0.5rem;
}
.withdraw__account {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.withdraw__account h4 {
	margin-bottom: 0.5rem;
}
.links {
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.links a {
	width: 100%;
	font-size: 0.9rem;
	padding: 10px;
	margin-top: 10px;
	background: white;
	border: 1px solid;
	border-radius: 5px;
	display: block;
	text-decoration: none;
	text-align: center;
	color: #211445;
}
.links a:hover {
	color: var(--white);
	background-color: var(--dark_purple);
}
.notification.show{
	animation: show_slide 1s ease forwards;
}
@keyframes show_slide {
	0%{
		transform: translateX(100%);
	}
	40%{
		transform: translateX(-10%);
	}
	80%{
		transform: translateX(10%);
	}
	100%{
		transform: translateX(0%);
	}
}
.notification.remove{
	display: none;
	/* animation: hide_slide 1s ease forwards; */
}
.notification.hide{
	animation: hide_slide 1s ease forwards;
}

@keyframes hide_slide {
	0%{
		transform: translateX(0%);
	}
	40%{
		transform: translateX(10%);
	}
	80%{
		transform: translateX(-10%);
	}
	100%{
		transform: translateX(110%);
	}
}

.notification {
	/* display: none; */
	width: 350px;
	height: 120px;
	bottom: 30px;
	right: 30px;
	background-color: rgba(0, 0, 0, 0.9);
	color: var(--white);
	position: absolute;
	overflow: hidden;
		/* transform: translateX(400px);
		transition: transform 2s ease; */
	/* animation: notification 2s; */
}
.notification h1 {
	text-align: center;
	font-size: 1rem;
}
.notification__image img {
	max-width: 25px;
	max-height: 25px;
	padding-right: 10px;
	color: white;
}
.notification__image {
	float: right;
	margin-top: -20px;
	display: flex;
	justify-content: space-between;
}
.notification__image::after {
	content: '';
	clear: both;
}
#create__cohort{
	width: 400px;
	padding: 15px 0 0 0;
}
.cohort__text {
	font-size: 0.8rem;
	text-align: center;
	padding: 0 20px;
}
.cohort__form{
	margin-top: -30px;
}
p:first-child {
	font-weight: bold;
}
.sum {
	margin-top: 5%;
}
.sum p {
	word-spacing: 4px;
	font-size: 1rem;
	color: var(--white);
}
::placeholder {
	font-size: 12px;
	font-weight: 700;
}
.sum h2 {
	margin-top: 1rem;
	font-size: 1rem;
}
.rotation__system {
	margin-top: 10px;
}
.rotation__system h2 {
	margin: 1rem auto;
	font-size: 1rem;
}
.rotation__style {
	display: flex;
	justify-content: space-between;
}
input[type = "radio"]{
	width: 20px;
	margin-top: -10px;
}
.rotation{
	display: flex;
	align-items: center;
	flex-direction: column;
}
.rotation p {
	font-size: 0.6rem;
	word-wrap: break-word;
	width: 100px;
	margin-top: -20px;
}
.payment__style {
	display: flex;
	justify-content: space-around;
	margin-top: 0.8rem;
}
.payment__style h3 {
	font-size: 0.7rem;
	margin-top: -15px;
}
.payment__style p {
	font-size: 0.6rem;
}
.icon {
	width: 30px;
	background-color: #fff;
	height: 20px;
}
.rotation__and__payment_style p {
	font-size: 10px;
	word-spacing: 2;
	text-align: center;
}
.select__payment__style {
	width: 24em;
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}
#admin{
      width: 25%;
}
.admin_name{
    font-size: 1rem;
}
.admin__image{
    display: flex;
    justify-content: center;
    align-items: center;
}
.admin__image img{
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 3px solid #fff;
}
.team__details{
    display: flex;
    justify-content: space-between;
   
    padding: 20px 10px;
}
.team__details p{
    font-size: 15px;
}

.list_of_members h4{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    word-spacing: 5px;

}
.list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 15px;
    background-color:#fff ;
    border-radius: 20px;
}
.number__name{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.number__name .number{
    width:3rem;
    height: 3rem;
    background-color: #211445;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
  }
  .number__name #name{
      text-align: center;
      color:#211445;
      font-weight: 600;margin-top: -10px;
  } 






	

	
