html {
	font-family: Gotham, Helvetica, sans-serif, Arial;
	height: 100%;

	overflow-x: hidden;
}

body {
	margin: 0;
	height: 100%;
	/* min-height: 100vh; */
	font-size: 14px;
}

p {
}

b {
	font-weight: bolder;
}

/* links */
a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	color: #666666;
}

a img {
	display: inline;
	//	height: 80%;
	//	width: auto;
	//	margin: 0 3px;
	vertical-align: middle;
}

/* --- */

/* lists */
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.inline-list > * {
	display: inline-block;
}
/* --- */

/* titles */
h1 {
	font-weight: 500;
	font-size: 21px;
}

h3 {
	font-weight: 300;
	font-size: 18px;
}

h4 {
	font-weight: 100;
	font-size: 15px;
}

h5 {
	font-weight: 100;
	font-size: 12px;
}

h6 {
	font-weight: 100;
	font-size: 9px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0.25em;
	margin-bottom: 0.25em;
}
/* --- */

/* images and icons */
.img-container {
	display: flex;
}

/* 	Chrome 48 bugfix */
.img-container > * {
	min-height: 0;
	min-width: 0;
}
/* 	--- */

.img-container img {
	height: 100%;
	width: auto;
	margin: auto;
}

.img-container-large img {
	width: 100%;
	height: auto;
	margin: auto;
}

.icon-l {
	width: 45px;
	height: 45px;
}

.icon-m {
	width: 18px;
	height: 18px;
}

.icon-s {
	width: 18px;
	height: 14px;
}

.search-button {
	background: url("../img/ui/search.svg") no-repeat;
	font-size: 0;
	border: 0;
}

.image-background {
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: bottom;
}

/* --- */

/* buttons and forms */
input:focus,
button:focus,
a:focus {
	outline: none;
	border-radius: inherit;
	/* box-shadow: 0 0 6px 0 rgba(59, 153, 252, 0.5) inset; */
}

.input input,
.input-clear {
	background: transparent !important;
	border: 0;
	padding: 0;
}

.login-form > * {
	margin-bottom: 19px;
}

.input-text {
	font-size: 17px;
	font-weight: normal;

	padding: 10px 15px;
	border: none;
}

input.submit {
	border-width: 2px;
	padding: 6px 11px;
	margin-bottom: 0;
}

.hover-border:hover {
	border-bottom: 1px solid #e6e6e6;
}

.login-password,
.login-username {
	display: block;
}

.login.error .login-password {
	animation: error 0.6s ease 1;
}

.input {
	height: 45px;

	box-sizing: border-box;
	border: none;
	background: #f4f4f4;
}

div.input {
	display: flex;
}

div.input.inline {
	display: inline-flex;
}

.input input {
	padding: 10px 18px;
	line-height: 25px;

	font-size: 17px;
	font-weight: normal;
}

.input.outline {
	border: 2px solid #5ad8f7;
	background: white;
	font-size: 18px;

	opacity: 1;
	visibility: visible;
	transition: 0.5s visibility ease, 0.5s opacity ease;
}

.input.outline input,
button.input.outline {
	padding: 8px 16px;
	font-size: 18px;
	font-weight: 500;
}

.input-outline.round,
.input.round {
	border-radius: 22.5px;
}

input.round {
	border-radius: 20px;
}

button:hover {
	cursor: pointer;
}

input[type="submit"]:hover {
	cursor: pointer;
}

/*input[type="search"]:focus {
    outline: none;
	/*border-bottom: 1px solid #808080;*/ /*
}*/

/* 	ios style checkbox */ /* needs to be rewrote */
input[type="checkbox"].switch {
	position: absolute;
	margin: 10px 0 0 5px;
}
input[type="checkbox"].switch + label {
	position: relative;
	line-height: 2em;
	padding-left: 46px;
}
input[type="checkbox"].switch + label:before {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	top: 0;
	width: 25px;
	height: 14px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #d9d9d9;
	transition: box-shadow 0.2s, margin-left 0.2s, background 0.2s;
}
input[type="checkbox"].switch + label:after {
	content: "";
	position: absolute;
	display: block;
	left: 0px;
	top: 0px;
	width: 10px;
	height: 10px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #d9d9d9;
	transition: box-shadow 0.2s, margin-left 0.2s, background 0.2s;
	margin: 2px;
}
input[type="checkbox"].switch + label:hover:after {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
input[type="checkbox"].switch:checked + label:after {
	margin-left: 13px;
}
input[type="checkbox"].switch:checked + label:before {
	background: #e71f17;
}

.download {
	position: relative;
}

.download .input {
	width: 180px;
}

/*.download-button:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;

	z-index: -1;

	box-sizing: border-box;
	width: 180px;
	height: 45px;

	border-radius: 22.5px;
	border-width: 2px;
	border-style: solid;
	border-color: inherit;

	transition: 0.5s border-right-color ease, 0.5s width ease;
}*/

/*.download-button.active:before {
	width: 45px;
	border-right-color: transparent;

	animation: rotate 2s ease-in 0.5s infinite;
}*/

.download-password {
	box-sizing: border-box;
	overflow: hidden;

	transition: width 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.download.error .download-password {
	animation: error 0.6s ease 1;
}

/* 	--- */

/* --- */

/* flex and flow */
.container {
	display: flex;
}

/* 	Chrome 48 bugfix */
.container > * {
	min-height: 0;
	min-width: 0;
}
/* 	--- */

.flex-between {
	justify-content: space-between;
}

.flex-justify-center {
	justify-content: center;
}

.flex-align-center {
	align-items: center;
}

.flex-align-between {
	align-content: space-between;
}

.flex-align-end {
	align-items: flex-end;
}

.flex-column {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

/* flex implementation bugfix */
/* je suis en train de me casser le crâne la dessus,
   il y a apparement un bug avec le fonctionnement des
   flex-box quand avec une direction column on essaye 
   de wrap le contenu (aka faire un retour à la ligne) 
   et que le conteneur n'a pas de largeur précise.
   Celui-ci ne s'adapte pas automatiquement et garde 
   la largeur de la première colonne 

   https://stackoverflow.com/questions/33891709/when-flexbox-items-wrap-in-column-mode-container-does-not-grow-its-width
*/
/*.flex-column.flex-wrap {
	display: inline-flex;
	flex-direction: row;
	writing-mode: vertical-lr;
	align-content: flex-start;
}

.flex-column.flex-wrap > * {
	writing-mode: horizontal-tb;
}*/

.flex-nogrow-noshrink {
	flex: none;
}

.flex-grow-noshrink {
	flex: 1 0 auto;
}

.flex-grow-shrink {
	flex: auto;
}

.flex-nogrow-shrink {
	flex: initial;
}

.align-right,
.align-center,
.align-bottom {
	display: flex;
}

.align-right > * {
	margin-left: auto;
}

.align-center > * {
	margin-left: auto;
	margin-right: auto;
}

.align-bottom > * {
	margin-top: auto;
}

.three-div > * {
	max-width: 33.33%;
}

.center-child {
	display: flex;
}

.center-child > * {
	margin: auto;
}
/* --- */

/* color */
.bg-primary {
	background-color: #d9fcff; /* tbd */
}

.bg-secondary {
	background-color: #f4f4f4;
}

.bg-success {
	/* tbd */
}

.bg-danger {
	/* tbd */
}

.bg-warning {
	/* tbd */
}

.bg-info {
	/* tbd */
}

.bg-light {
	background-color: #fafafa;
}

.bg-dark {
	background-color: #fdfdfd;
}

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

.text-secondary {
	color: #808080;
}
/* --- */

/* effects */
.shadow {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.shadow-right {
	box-shadow: 3px 0px 8px -3px rgba(0, 0, 0, 0.2);
}

.border-primary {
	border-color: #e6e6e6;
	border-style: solid;
	border-width: 0; /* you then select which border to display*/
}

.border-secondary {
	border-color: #5ad8f7;
	border-style: solid;
	border-width: 0; /* you then select which border to display*/
}

.border-all {
	border-width: 1px;
}

.border-top {
	border-top-width: 1px;
}

.border-right {
	border-right-width: 1px;
}

.border-bottom {
	border-bottom-width: 1px;
}

.border-left {
	border-left-width: 1px;
}

.hide,
input.hide {
	display: none;
}

#dimmer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background: black;
	opacity: 0;

	z-index: 99999;

	transition: visibility 0.5s ease, opacity 0.5s ease;
	visibility: hidden;
}

#dimmer.active {
	opacity: 0.3;
	visibility: visible;
}
/* --- */

/* tag */
.tag {
	height: 24px;
	max-width: 160px;
	min-width: 48px;
	margin: auto;

	display: flex;

	background-color: #e6e6e6;
	border-radius: 0;

	font-size: 11px;
}

.tag > * {
	display: inline;
	margin: auto 0;
	margin-left: 3px;
}

.tag > *:first-child {
	margin-left: 9px;
}

.tag > *:last-child {
	margin-right: 9px;
}

.tag img {
	width: 6px;
	height: 6px;
}

.tag button {
	height: 6px;
}

/*.round {
	border-radius: 50%;
	overflow: hidden;
}*/

.round.tag {
	border-radius: 12px;
}
/* tag */

/* 	--- Tab Module ---

	Unstylised tab selector plus content hide/draw
	Requires corresponding js code to interact properly
	Structure is as follows

	*.tab-item
		*.tab-links-list
			*.tab-link
			*.tab-link
		*.tab-content-container
			*.tab-content
			*.tab-content
		
*/
.tab-item {
	position: relative;
}

.tab-content-container {
	position: relative;
}

.tab-content {
	position: absolute;
	top: 0;
	left: 0;

	transition: visibility 0.3s ease, opacity 0.3s ease;
	visibility: hidden;
	opacity: 0;
}

.tab-content.active {
	visibility: visible;
	opacity: 1;
}

/* --- Tab Module --- */

/* 	--- Rollover Module --- */
.rollover-parent {
	position: relative;
}

.rollover-content {
	position: absolute;

	transition: visibility 0.3s ease, opacity 0.3s ease;
	visibility: hidden;
	opacity: 0;
}

.rollover-parent:hover .rollover-content {
	visibility: visible;
	opacity: 1;
}
/* 	--- Rollover Module --- */

/* 	--- Popup Module --- */
.popups-container {
	position: fixed;
	width: 100%;
	height: 100%;
}

.popup {
	margin: auto;
	text-align: center;
}

.popup > * {
	margin: auto;
}

.popup h1 {
	text-align: left;
	font-size: 55px;
	margin: -5px 0;
}

.popup h3 {
	font-size: 22px;
	margin-left: 40px;
	margin-right: 40px;
}

.popup p {
	font-weight: 100;
}

.popup-header {
	padding: 20px;
	padding-bottom: 0;
	margin-bottom: 20px;
}

.popup-content {
	padding: 0 20px;
}

.popup-footer {
	padding: 20px;
	padding-top: 0;
}
/* 	--- Popup Module --- */

.nav-item {
	width: 65px;
	height: 65px;
	padding: 1px;
	box-sizing: border-box;

	transition: background 0.3s ease;
}

nav:hover .nav-item.active,
nav:hover .nav-list.active {
	background-color: #d9fcff;
}

.switch + label {
	margin: 20px auto;
	margin-left: 0;
	padding-left: 46px;
}

.nav-item-link {
	position: relative;
	display: block;

	padding: 14px;
}

.nav-item-icon {
	width: 35px;
	height: 35px;
	margin: auto;
	border-radius: 50%;
	box-sizing: border-box;
}

.nav-item-icon.active-icon {
	position: absolute;
	top: 14px;
	left: 14px;
	opacity: 0;
	transition: opacity 0.5s ease;
}

/*.nav-item.tab-link {
	position: relative;
}*/

.nav-item.tab-link.active:after {
	/* usefull only when using borders */
	content: "";
	position: absolute;
	z-index: 999;
	top: 0px;
	right: -4px;
	height: 63px;
	width: 5px;
	background: inherit;
}

.nav-list.tab-content {
	box-sizing: border-box;
	min-height: 195px;
	width: 205px;

	padding: 15px;
	padding-left: 0;
	transition: padding-left 0.3s ease, background 0.3s ease,
		visibility 0.3s ease, opacity 0.3s ease; /* gotta keep this to prevent overriding*/

	border-right: none !important;
}

.nav-list.tab-content.active {
	padding-left: 20px;
}

.nav-list.tab-content.active {
	padding: 15px;
	/*border: 1px solid #dfdfdf;*/ /* padding needs substraction when border is used */
}

.nav-item.active .active-icon {
	opacity: 1;
}

.nav-content-tabs {
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 130px;
	margin-left: 65px;
	box-sizing: border-box;
	padding: 6px 20px;

	background-color: transparent;
}

.nav-list a {
	display: block;
	width: 100%;
	padding: 1px 0;
}

.nav-list a > * {
	line-height: 18px;
	width: 50%;
	display: inline-block;
	margin: 3px 0;
}

.nav-list a > *:last-child:not(:first-child) {
	text-align: right;
	font-size: 12px;
	color: #808080;
}

.nav-list h3 {
	font-weight: 300;
	margin: 10px 0 8px 0;
}

.nav-item.profile {
	padding: 0px;
}

.nav-item.profile,
.nav-item.edit-mode {
	width: 270px;
}

header {
	position: fixed;
	top: 0;
	left: 66px;
	width: calc(100% - 66px);
	/* height: 65px; */

	z-index: 999;
}

header.light {
	left: 0;
	width: 100%;

	box-sizing: border-box;
	padding: 10px 15px;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0) 100%
	);
}

.header-content {
	flex: 1 0 auto;
}

.player-track-info,
.main-search {
	flex: 1 0 auto;
	max-width: 400px;
}

.player-track-cover {
	flex: 0 0 auto;
	width: 65px;
}

.player-track-desc {
	text-transform: capitalize;
	margin: auto 0;
	margin-left: 15px;
}

.player-track-desc h4,
.player-track-desc h5 {
	margin: 2px 0;
}

.player-main {
	width: 510px;
}

.player-waveform {
	position: relative;
	height: 21px;
	margin-bottom: 0;
}

.player-progress-bar,
.player-select-bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	-webkit-mask: url(../waveform.png) 0 0 / auto 100% no-repeat;
}

.player-progress-bar {
	width: 22%;
	background-color: black;
}

.player-select-bar {
	width: 0%;
	background-color: #fafafa;
}

.player-progress-click {
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.player-controls {
	margin: auto;
	width: 100%;
}

.player-controls button {
	height: 16px;
	width: 16px;
	margin: auto 10px;
	padding: 0;
	border: 0;
	background: transparent;
}

.player-controls-left button,
.player-controls-right button {
	margin: auto 5px;
}

.player-controls-left button:first-child {
	margin-left: 0;
}

button.player-controls-play {
	height: 22px;
	width: 22px;
}

.player-controls-volume {
	position: relative;
}

.player-controls-volume > * {
	display: inline;
}

.slider.volume {
	position: absolute;
	z-index: 0;
	left: 100%;
	top: -1px;
	width: 0;
	opacity: 0;

	transition: opacity 0.25s ease, width 0.25s ease;
}

.player-controls-volume:hover .slider.volume,
.slider.volume:hover {
	width: 100px;
	opacity: 1;
}

.player-controls-time {
	margin-left: auto;
}

.player-controls-time > * {
	display: inline;
}

.main-search {
	position: relative;
	padding: 15px 0;
	width: calc(100% - 510px);
}

.main-search.active {
	/* to be over the dimmer doesnt work */
	z-index: 999999;
}

.main-search input[type="search"] {
	font-size: 14px;
	flex: 1 1 auto;
}

.main-search input[type="submit"] {
	height: 25px;
	width: 35px;
	background-position: right;
}

.main-search form {
	width: 70%;
	padding: 5px;
	margin-left: auto;
	margin-right: 10px;
}

.advanced-search {
	position: absolute;
	z-index: -1;
	bottom: -1px;

	box-sizing: border-box;
	width: 100%;

	transition: transform 0.5s ease;
}

input[name="toggle-advanced-search"] {
	position: absolute;
	visibility: hidden;
}

input[name="toggle-advanced-search"] + label {
	box-sizing: border-box;
	width: 30px;
	height: 100%;

	cursor: pointer;
}

input[name="toggle-advanced-search"] + label img {
	transform: rotate(90deg);
	transition: transform 0.5s ease;
}

input[name="toggle-advanced-search"]:checked ~ .advanced-search {
	transform: translateY(100%) translateY(-1px);
}

input[name="toggle-advanced-search"]:checked + label img {
	transform: rotate(-90deg);
}

.advanced-search-tags-links {
	width: 180px;
}

.advanced-search-tags-links h5 {
	position: relative;
	margin: 0;
	padding: 0.25em;
}

.advanced-search-tags-links h5:first-child:not(.active) {
	padding-top: calc(0.25em - 1px);
	border-top: 1px solid #e6e6e6;
}

.advanced-search-tags-links h5:not(.active) {
	border: none;
}

.advanced-search-tags-links h5:last-child:not(.active) {
	padding-bottom: calc(0.25em - 1px);
	border-bottom: 1px solid #e6e6e6;
}

.advanced-search-tags-links h5.active {
	position: relative;

	padding: calc(0.25em - 1px);
	border-width: 1px;
	border-style: solid;
	border-right: none;

	background: white;
}

.advanced-search-tags-links h5.active:after {
	content: "";
	position: absolute;
	right: -1px;
	top: 0;
	z-index: 999;
	height: 100%;
	width: 1px;
	background: inherit;
}

.advanced-search-tags-content {
	padding-right: 180px;
	height: inherit;
}

.advanced-search-tags-content > .tab-content {
	border-width: 1px;
	border-style: solid;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.tag.tags-general {
	/*background: black;*/
}

.tag.tags-style {
	background-color: #50a8c2;
}

.tag.tags-arrangement {
	background-color: #4f9e68;
}

.tag.tags-recording {
	background-color: #e7714f;
}

.tag.tags-moods {
	background-color: #d1565f;
}

.tag.tags-other-moods {
	background-color: #d1565f;
}

.tag.tags-movements {
	background-color: #236b79;
}

.tag.tags-lyrics {
	background-color: #d4727c;
}

.tab-content.tags-general,
h5.tags-general {
	border-color: black;
}

.tab-content.tags-style,
h5.tags-style {
	border-color: #50a8c2;
}

.tab-content.tags-arrangement,
h5.tags-arrangement {
	border-color: #4f9e68;
}

.tab-content.tags-recording,
h5.tags-recording {
	border-color: #e7714f;
}

.tab-content.tags-moods,
h5.tags-moods {
	border-color: #d1565f;
}

.tab-content.tags-other-moods,
h5.tags-other-moods {
	border-color: #d1565f;
}

.tab-content.tags-movements,
h5.tags-movements {
	border-color: #236b79;
}

.tab-content.tags-lyrics,
h5.tags-lyrics {
	border-color: #d4727c;
}

nav {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 65px;
	height: 100%;

	z-index: 9999;

	transition: width 0.5s ease, color 0.5s ease;
}

nav:hover {
	width: 270px;
}

nav::-webkit-scrollbar {
	width: 0px;
	background: transparent;
	/* make scrollbar transparent, works only on webkit/blink browsers */
}

.nav-scroll-wrapper {
	position: relative;
	overflow-x: visible;
	overflow-y: auto;
	height: 100%;
}

.header-brand {
	/* despite the name is part of nav */
	position: relative;
	left: -205px;
	width: 270px;
	flex: 0 0 auto;
	padding: 22px 45px;
	box-sizing: border-box;

	transition: left 0.5s ease;
}

nav:hover .header-brand {
	left: 0;
}

nav .brand-name {
	height: 21px;
	margin: auto 20px;
}

nav .brand-logo {
	position: fixed;
	left: 0;
	top: 0;

	z-index: 9999;

	padding: 12px 18px;
	box-sizing: border-box;

	width: 65px;
	height: 65px;
}
.brand {
	height: 135px;
	width: 135px;
}

.brand-logo {
}

.brand-name {
	box-sizing: border-box;
	padding: 10px 0 4px 5px;
}

.profile .nav-item-icon {
	width: 45px;
	height: 45px;
}

.profile .nav-item-link {
	padding: 9px;
}

.profile-card-content {
	width: 205px;
	padding-top: 5px;
	padding-left: 2px;
	padding-right: 10px;
}

.profile-card-content > * {
	margin: auto 0;
}

.profile-card-content h3 {
	font-size: 16px;
	opacity: 1;
}

.profile-card-link {
	width: auto !important;
	margin: auto 0;
}

.edit-mode {
	box-sizing: border-box;
	padding: 15px 19px;
}

.edit-mode label {
	color: rgba(0, 0, 0, 0.4);
	transition: color 0.25s ease;
}

.edit-mode:hover label {
	color: black;
}

.content {
	position: relative;
	height: 100%;
	margin-top: 66px; /* ie: header + header border */
	margin-left: 65px;
	padding: 24px;
}

.content.active {
	margin-left: 65px;
}

.filter-bar {
	height: 31px;
	width: calc(100% - 48px);
	/*padding: 24px;
	padding-bottom: 0;*/
}

.filter-search > * {
	margin-right: 8px;
}

.pagin li {
	line-height: 14px;
}

.paging a.active {
	font-weight: 300;
}

.paging a {
	line-height: 31px;
	font-size: 14px;
	font-weight: 200;
}

.filter-selector a {
	line-height: 31px;
	font-size: 14px;
	font-weight: 200;
}

.filter-selector a {
	margin: 0 6px;
}

.filter-selector a.active {
	position: relative;
}

.filter-selector a.active:after {
	content: "";
	position: absolute;
	bottom: -2px;
	width: 11px;
	right: -3px;
	border-bottom: 1px solid #808080;
}
/*search margin
body color
search text bigger*/

.albums {
	/*padding: 24px;*/
}

.album-card {
	position: relative;
	width: 160px;
}

.album-card img {
	width: 160px;
	height: 160px;
}

.album-card-rollover {
	position: absolute;
	left: 0;
	top: 0;
	width: 160px;
	height: 160px;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.album-card:hover .album-card-rollover {
	opacity: 1;
}

.album-card h4,
.album-card h5 {
	font-size: 11px;
	font-weight: normal;

	margin: 0;
}

.album-card h5 {
	font-weight: 100;
}

.album-card h4 img,
.album-card h5 img {
	height: 9px;
	width: 9px;

	margin: 0 4px;
	vertical-align: middle;
}

.album-card .year {
	display: flex;
}

.album-card .year h5 {
	margin-top: auto;
	margin-bottom: 0;
}

.album-card button {
	opacity: 0;
	transition: opacity 0.25s ease;
}

.album-card:hover button {
	opacity: 1;
}

.timeline {
	position: absolute;
	top: 0;
	right: 0;
	width: 5px;
	height: 100%;

	overflow: hidden;

	transition: width 0.5s ease;
}

.timeline:hover {
	width: 150px;
}

.timeline-wrapper {
	width: 150px;
	position: absolute;
	top: 0;
	right: 0;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes error {
	0% {
		transform: translateX(0);
	}

	12.5% {
		transform: translateX(-12px);
	}
	37.5% {
		transform: translateX(12px);
	}
	50% {
		background: red;
		color: white;
	}
	62.5% {
		transform: translateX(-8px);
	}
	87.5% {
		transform: translateX(8px);
	}

	100% {
		transform: translateX(0);
	}
}

@keyframes success {
	0% {
		width: 0;
	}
	20% {
		width: 20%;
	}
	40% {
		width: 20%;
	}
	70% {
		width: 100%;
	}
	90% {
		opacity: 1;
		width: 100%;
	}
	100% {
		opacity: 0;
		width: 100%;
	}
}
