/* material */

/* tooltip */
.material-tooltip{
	padding: 10px 15px;
	font-size: 1rem;
	z-index: 2000;
	background-color: transparent;
	border-radius: 5px;
	color: #fff;
	min-height: 36px;
	line-height: 120%;
	opacity: 0;
	position: absolute;
	text-align: center;
	max-width: calc(100% - 4px);
	overflow: hidden;
	left: 0;
	top: 0;
	pointer-events: none;
	visibility: hidden;
}

/* toast */
#toast-container{
	display:block;
	position:fixed;
	z-index:10000
}

@media only screen and (max-width: 600px){
	#toast-container{
		min-width:100%;
		bottom:0%
	}
}

@media only screen and (min-width: 601px) and (max-width: 992px){
	#toast-container{
		left:5%;
		bottom:7%;
		max-width:90%
	}
}

@media only screen and (min-width: 993px){
	#toast-container{
		top:10%;
		right:7%;
		max-width:86%
	}
}

.toast{
	border-radius: 4px !important;
	top: 35px !important;
	width: max-content !important;
	margin-top: 10px !important;
	position: relative !important;
	max-width: 100% !important;
	height: auto !important;
	min-height: 48px !important;
	line-height: 1.5em !important;
	background-color: var(--elements) !important;
	padding: 10px 25px !important;
	font-size: 1.1rem !important;
	font-weight: 300 !important;
	color: #fff !important;
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center !important;
	-webkit-align-items: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	-webkit-box-pack: justify !important;
	-webkit-justify-content: space-between !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
	cursor: default !important;
	-webkit-box-shadow: 3px 3px 15px 3px #000000 !important;
	-moz-box-shadow: 3px 3px 15px 3px #000000 !important;
	box-shadow: 3px 3px 15px 3px #000000 !important;
}

.toast .toast-action{
	color:#eeff41;
	font-weight:500;
	margin-right:-25px;
	margin-left:3rem
}

.toast.rounded{
	border-radius:24px
}

@media only screen and (max-width: 600px){
	.toast{
		width:100%;
		border-radius:0
	}
}

/* progress */

.progress {
    position: relative;
    height: 4px;
    display: block;
    width: 100%;
    background-color: #acece6;
    border-radius: 2px;
    margin: 0.5rem 0 1rem 0;
    overflow: hidden;
}

.progress .determinate {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #26a69a;
    -webkit-transition: width 0.3s linear;
    transition: width 0.3s linear;
}

.progress .indeterminate {
    background-color: #26a69a;
}

.progress .indeterminate:before {
    content: "";
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
    content: "";
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }
    60% {
        left: 100%;
        right: -90%;
    }
    100% {
        left: 100%;
        right: -90%;
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }
    60% {
        left: 107%;
        right: -8%;
    }
    100% {
        left: 107%;
        right: -8%;
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }
    60% {
        left: 107%;
        right: -8%;
    }
    100% {
        left: 107%;
        right: -8%;
    }
}