.jfile-div {
    border: 1px dashed #707070;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

.jfile-div img {
    height: 50px;
    max-width: 150px;
    padding: 2px;
}

.jtoggle-checkbox {
    display: block;
    background: #4ac18e;
	font-size: 24px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	width: 54px;
	height: 32px;
	border-radius: 20px;
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 0px;
}
  
.jtoggle-checkbox:checked {
	background: #f06292;
}
  
.jtoggle-checkbox:after {
	position: absolute;
	content: "";
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	-webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
  box-shadow: 0 0 .25em rgba(0,0,0,.3);
	-webkit-transform: scale(.7);
  transform: scale(.7);
	left: 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
  
.jtoggle-checkbox:checked:after{
	left: 20px;
}

.color-input {
    padding: 1px 9px;
    border: 1px dashed #707070;
    background-color: #eeeeee;
    width: 65px;
    height: 25px;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.color-input:hover {
    border: 1px solid #707070;
}

.card {
    border-radius: 25px;
    box-shadow: 3px 3px 3px 0 rgb(0 0 0 / 15%)
}

.three-dots:after {
    cursor: pointer;
    color: rgb(87, 61, 61);
    content: '\2807';
    font-size: 20px;
}

.three-dots.habit::after {
    color: var(--pink-color);
    font-size: 12px;
}

.three-dots {
    border: 0px;
    background-color: white;
    width: 20px;
}

.new-members span {
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    font-size: 14px !important;
}

.new-members .dropdown {
    display: inline-block;
}

a {
    color:grey;
}

.link-all {
    font-size: 14px;
    margin-left: 50px;
}

.link-view {
    font-size: 14px;
}

.btn-custom {
    min-width: 130px;
    height: 30px;
    padding: 0px 10px;
    border-radius: 10px
}

.btn-bell {
    border-radius: 50px;
    width: 40px;
}

.btn-plus {
    border-radius: 50px;
    width: 40px;
}

.form-member label {
    text-align: right;
}

.form-member input {
    height: 34px;
}

.form-staff label {
    text-align: right;
}

@media only screen and (max-width: 600px) {
    .form-staff label {
        text-align: left;
    }
}

textarea {
    resize: none;
}