
.shadow-depth-1{
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.5s cubic-bezier(.25,.8,.25,1);
}

.shadow-depth-2 {
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transition: all 0.5s cubic-bezier(.25,.8,.25,1);
}

.center-text{
    text-align: center;
}

.center-vertical{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.center-horizontal{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.pd-t-1{
    padding-top: 1rem;
}


.pd-l-1{
    padding-left: 1rem;
}

.pd-bt-1{
    padding-bottom: 1rem;
}

.padding-1{
    padding: 1rem;
}

.padding-half{
    padding: 0.5rem;
}

.margin-1{
    margin: 1rem;
}

.mg-l-1{
    margin-left: 1rem;
}

.mg-r-1{
    margin-right: 1rem;
}

.mg-l-3{
    margin-left: 3rem;
}

.mg-l-4{
    margin-left: 4rem;
}



.mg-t-1{
    margin-top: 1rem;
}

.mg-bt-1{
    margin-bottom: 1rem;
}

.no-border{
    border: none !important;
}

.only-bt-bdr{
    border: none;
    background: transparent;
    border-bottom: 1px solid #9C27B0;
}

.red-dashed{
    border: 2px dashed #E65100;
}

.green-dashed{
    border: 2px dashed #008744;
}

.yellow-dashed{
    border: 2px dashed #ffa700;
}

.yellow-dashed:hover{
    background-color: #fff;
    color: black;
}

.red-dashed-bottom{
    border-bottom: 2px dashed #E65100;
}

.half-width{
    width: 50%;
}

.bg-white{
    background-color: white;
}

.input-field{
    margin-bottom: 2rem;
    margin-top: 2rem;
    display: block;
}

.full-width{
    width: 99%;
}

.full-height{
    height: 99%;
}

.transparent{
    background-color: transparent;
}


.flex-end{
    display: flex;
    justify-content: end;
}

.right{
    float: right
}

.left{
    float: left;
}

.separator{
    border: 1px solid black;
}

.error{
    background-color: #E65100;
    color: white;
    font-size: 0.8rem;
}

.pointer{
    cursor: pointer;
}

.width-20{
    width: 20vw;
}

/*======ANIMATIONS, TRANSITIONS AND TRANSFORMS========*/
@keyframes fadeIn {
    from { opacity: 0; margin: 0;}
    to { opacity: 1; margin: 1rem;}
}

@keyframes fadeOut {
    from { opacity: 1; margin: 1rem;}
    to { opacity: 0; margin: 0;}
}

.tr-y-1{
    transform: translateY(1rem);
}