.algreenbox {
	background-color:#73D2B6; 
	padding:20px; 
	margin: 0 auto; 
	width:80%; 
	border-radius: 6px;
}

.algboxwhite {
	color:#fff;
}

.error {
background-color: pink;
border-color: #C00000;
}

.error-checkbox {
    background-color: pink;
    border-color: #C00000;
    outline: 2px solid #F00 !important;
}

.error-msg {
    color: red;
    font-weight: 600;
    margin: 0 0 5px 0;
    padding: 0;
    position: relative;
    top: -18px;
}

#floating-button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #86CD91;
    position: fixed;
    bottom: 20px;
    right: 27px;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
}

@media (min-width: 916px) {
    #floating-button{
        right: 24px;
    }
}

.plus {
    animation: plus-out 0.3s;
    transition: all 0.3s;
}

#container-floating {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    z-index: 2000000001;
}

#container-floating:hover {
    height: 400px;
}

#container-floating:hover .plus {
    animation: plus-in 0.15s linear;
    animation-fill-mode: forwards;
}

.edit {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: rotateZ(-70deg);
    transition: all 0.3s;
    animation: edit-out 0.3s;
}

#container-floating:hover .edit {
    animation: edit-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

@keyframes edit-in{
    from {opacity: 0; transform: rotateZ(-70deg);}
    to {opacity: 1; transform: rotateZ(0deg);}
}

@keyframes edit-out{
    from {opacity: 1; transform: rotateZ(0deg);}
    to {opacity: 0; transform: rotateZ(-70deg);}
}

@keyframes plus-in{
    from {opacity: 1; transform: rotateZ(0deg);}
    to {opacity: 0; transform: rotateZ(180deg);}
}

@keyframes plus-out{
    from {opacity: 0; transform: rotateZ(180deg);}
    to {opacity: 1; transform: rotateZ(0deg);}
}

.nds{
    padding: 1rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    position: fixed;
    z-index: 300;
    transform:  scale(0);
    cursor: pointer;
}

.nds svg {
    height: 100%;
    width: 100%;
}

.nd1{
    background: #49E670;
    bottom: 120px;
    animation-delay: 0.2s;
    animation: bounce-out-nds 0.3s linear;
    animation-fill-mode:  forwards;
}

.nd3{
    background: #e514f2;
    bottom: 180px;
    animation-delay: 0.15s;
    animation: bounce-out-nds 0.15s linear;
    animation-fill-mode:  forwards;
}

@keyframes bounce-nds{
    from {opacity: 0;}
    to {opacity: 1; transform: scale(1);}
}

@keyframes bounce-out-nds{
    from {opacity: 1; transform: scale(1);}
    to {opacity: 0; transform: scale(0);}
}

#container-floating:hover .nds{
    animation: bounce-nds 0.1s linear;
    animation-fill-mode:  forwards;
}

#container-floating:hover .nd3{
    animation-delay: 0.08s;
}
