@import url("https://fonts.googleapis.com/css?family=Pacifico|Quicksand:100,300,400,500");

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	width: 100vw;
	background-color: #f9f9f9;
	font-family: "Quicksand, helvetica, arial, sans-serif;
	font-weight: 500;
}

.modal {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 101;
}

.modal.visible {
	display: flex;
}

.modal.visible>div {
	width: 900px;
	max-height: 600px;
	background-color: #ffffff;
	overflow: hidden;
}

.modal.visible>div .dshbm-head {
	width: 100%;
	padding: 15px 10px;
	border-bottom: 1px solid #dddddd;
	display: flex;
	flex-direction: row;
}

.modal.visible>div .dshbm-head h4 {
	width: calc( 100% - 30px );
	color: #000000;
	font-size: 20px;
}

.modal.visible>div .dshbm-head button {
	width: 30px;
	height: 30px;
	cursor: pointer;
	background-color: transparent;
	border: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.modal.visible>div .dshbm-head button:hover svg path {
	fill: #000000;
}

.modal.visible>div .dshbm-body {
	width: 100%;
	padding: 20px;
}

.modal.visible>div .dshbm-body iframe {
	width: 100%;
	height: 500px;
}

main {
	width: 100%;
}

main section {
	width: 100%;
	display: flex;
}

#title-section {
	margin-bottom: 30px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#title-section>div {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#title-section>div img {
	width: 150px;
	height: auto;
}

#title-section>div img:first-child {
	margin-right: 30px;
}

#title-section h1 {
	width: 100%;
	color: #dd3c8a;
	font-family: 'Pacifico', helvetica, arial, sans-serif;
	font-size: 48px;
	font-weight: 300;
	letter-spacing: 0.4px;
	line-height: 56px;
	text-align: center;
	text-shadow: 0px 0px 3px rgba(0,0,0,0.5);
}

#content-container-section {
	width: 100%;
	display: flex;
	flex-direction: column;
}

#l-cc-col {
	width: 100%;
	margin-bottom: 30px;
	padding: 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}

#l-cc-col>div {
	width: 100%;
}

#l-cc-col>div:first-child {
	padding: 20px 0px 30px;
	margin-bottom: 20px;
	background-color: #dd3c8a;
	border-radius: 10px;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
}

#l-cc-col>div:first-child h2 {
	color: #ffffff;
	margin-bottom: 10px;
	font-family: 'Pacifico', helvetica, arial, sans-serif;
	font-size: 28px;
	font-weight: 100;
	letter-spacing: 1px;
	text-align: center;
}

#l-cc-col>div:first-child ul {
	width: 95%;
	padding: 20px 15px;
	background-color: #ffffff;
	border-radius: 0px 10px 10px 0px;
	list-style-type: none;
}

#l-cc-col>div:first-child ul>li {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

#l-cc-col>div:first-child ul>li:not(:last-child) {
	margin-bottom: 10px;
}

#l-cc-col>div:first-child ul>li span:first-child {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#l-cc-col>div:first-child ul>li span:first-child img {
	width: 100%;
	height: auto;
}

#l-cc-col>div:first-child ul>li span:last-child {
	width: calc(100% - 24px);
	color: #212024;
}

#l-cc-col>div:last-child {
	padding: 15px;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
}

#l-cc-col>div:last-child h3 {
	width: 100%;
	margin-bottom: 10px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

#l-cc-col>div:last-child h3 span:first-child {
	width: calc(100% - 32px);
	font-size: 18px;
	letter-spacing: 0.4px;
}

#l-cc-col>div:last-child h3 span:last-child {
	width: 32px;
	height: 32px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#l-cc-col>div:last-child h3 span:last-child.showing {
	transform: rotateZ(180deg);
}

#l-cc-col>div:last-child>ul {
	width: 100%;
	padding: 0px 20px;
	display: none;
}

#l-cc-col>div:last-child>ul.shown {
	display: block;
}

#l-cc-col>div:last-child>ul>li {
	width: 100%;
}

#l-cc-col>div:last-child>ul>li:not(:last-child) {
	margin-bottom: 15px;
}

#l-cc-col>div:last-child>ul>li>ul {
	width: 100%;
	padding: 10px 25px;
}

#l-cc-col>div:last-child>ul>li>ul>li:not(:last-child) {
	margin-bottom: 10px;
}

#r-cc-col {
	width: 100%;
	padding: 0px 20px;
	display: flex;
	flex-direction: column;
}

#services-component {
	width: 100%;
	max-height: 500px;
	margin-bottom: 30px;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
	border-radius: 4px;
	overflow: auto;
	display: flex;
	flex-direction: row;
}

#services-component form {
	width: 100%;
}

#services-component #st-container {
	width: 100%;
	max-height: 400px;
	overflow: auto;
}

#services-component #st-container::-webkit-scrollbar {
	width: 7px;
}

#services-component #st-container::-webkit-scrollbar-thumb {
	width: 5px;
	background-color: #dd3c8a;
}

#services-component #st-container table {
	width: 100%;
	border-spacing: 0px;
	border-collapse: separate;
}

#services-component #st-container table thead tr {
	height: 56px;
}

#services-component #st-container table thead tr th {
	/* padding-left: 15px; */
	color: rgba(0,0,0,.54);
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	text-align: center;
	font-size: 12px;
	letter-spacing: .4px;
	position: sticky;
	top: 0;
	z-index: 2;
}

#services-component #st-container table thead tr th:last-child {
	width: 40px;
}

#services-component #st-container table tbody tr {
	height: 48px;
	background-color: #ffffff;
}

#services-component #st-container table tbody tr td {
	padding:10px;
	border-bottom: 1px solid rgba(0,0,0,.12);
	text-align: center;
	font-size: 14px;
}

#services-component #st-container table tbody tr td select {
	width: 200px;
	padding: 7px;
	border: 1px solid #e9e9e9;
	border-radius: 4px;
	transition: border-color ease 0.2s;
}

#services-component #st-container table tbody tr td select:focus {
	border-color: #dd3c8a;
}

#services-component #st-container table tbody tr td:nth-child(4) select {
	width: 100px;
}

#services-component #st-container table tbody tr td .btn-remove {
	cursor: pointer;
}

#services-component #st-container table tbody tr td:last-child {
	padding: 10px 0px;
}

#services-component #st-container table tbody tr td input {
	width: 70px;
	background-color: unset;
	border: none;
	text-align: center;
}

#services-component #btn-add-row-container {
	width: 100%;
	padding: 15px 0px;
	background-color: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#services-component #btn-add-row-container .btn-add {
	padding: 8px 20px;
	color: #ffffff;
	cursor: pointer;
	background-color: #dd3c8a;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	border-radius: 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: background-color, box-shadow ease 0.2s;
}

#services-component #btn-add-row-container .btn-add:hover {
	background-color: #c24280;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
}

#services-component #btn-add-row-container .btn-add span:first-child {
	width: 24px;
	height: 24px;
	margin-right: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

#colors-selector-container {
	width: 100%;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
}

#colors-selector-container h3 {
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
	font-size: 18px;
}

#colors-selector-container p {
	width: 100%;
	margin-bottom: 15px;
	color: #999999;
	text-align: center;
	font-size: 14px;
}

#colors-category-container {
	width: 100%;
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}

#colors-category-container a {
	padding: 10px;
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: box-shadow, transform ease 0.2s;
}

#colors-category-container a:hover {
	box-shadow: 0 8px 17px 2px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
	transform: scale(1.05);
}

#colors-category-container a span:first-child {
	width: 100%;
	margin-bottom: 5px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#colors-category-container a span:first-child img {
	width: 60px;
	height: auto;
}

#colors-category-container a span:last-child {
	width: 100%;
	color: #202124;
	text-align: center;
}

#nails-colors-input {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#nails-colors-input .tagify {
	width: 100%;
}

#nails-colors-input input.amsify-suggestags-input {
	width: 100%;
	max-width: 100%;
	padding: 10px;
	border: 1px solid #707070;
	transition: border-color ease 0.2s;
}

#nails-colors-input input.amsify-suggestags-input:focus {
	outline: none !important;
	border-color: #dd3c8a;
}

#cinf-t-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#cinf-t-container>div {
	width: 100%;
	display: flex;
}

#cinf-t-container>div:first-child {
	margin-bottom: 30px;
	flex-direction: column;
}

#cinf-t-container>div:first-child #tip-container {
	width: 100%;
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
}

#cinf-t-container>div:first-child #tip-container h4 {
	width: 100%;
	margin-bottom: 10px;
	font-size: 18px;
}

#cinf-t-container>div:first-child #tip-container p {
	width: 100%;
	margin-bottom: 10px;
	color: #999999;
	font-size: 14px;
}

#cinf-t-container>div:first-child #tip-container input {
	width: 100%;
	margin-bottom: 10px;
	padding: 10px 15px;
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(124, 124, 124);
	border-radius: 2px;
}

#cinf-t-container>div:first-child #tip-container input:focus {
	outline: none;
	border-color: #dd3c8a;
}

#cinf-t-container>div:first-child #tip-container #btn-add-tip-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
}

#cinf-t-container>div:first-child #tip-container #btn-add-tip-container a {
	padding: 8px 20px;
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: background-color, box-shadow ease 0.2s;
}

#cinf-t-container>div:first-child #tip-container #btn-add-tip-container a:first-child {
	background-color: #707070;
}

#cinf-t-container>div:first-child #tip-container #btn-add-tip-container a:last-child {
	background-color: #dd3c8a;
}

#cinf-t-container>div:first-child #tip-container #btn-add-tip-container a:first-child:hover {
	background-color: #5c5c5c;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
}

#cinf-t-container>div:first-child #tip-container #btn-add-tip-container a:last-child:hover {
	background-color: #c24280;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
}

#cinf-t-container>div:first-child #total-box {
	width: 100%;
	padding: 10px;
	background-color: #ffffff;
	border: 1px solid #aeaeae;
	display: flex;
	flex-direction: column;
}

#cinf-t-container>div:first-child #total-box p {
	width: 100%;
	padding: 5px;
	color: #666666;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#cinf-t-container>div:first-child #total-box p:last-child {
	margin-top: 10px;
	color: #212024;
	border-top: 1px solid #aeaeae;
}

#cinf-t-container>div:first-child #total-box p:last-child span:first-child {
	font-weight: bold;
}

#cinf-t-container>div:last-child {
	flex-direction: row;
}

#cinf-t-container>div:last-child form {
	width: 100%;
	display: flex;
	flex-direction: column;
}

#cinf-t-container>div:last-child form .form-field-section {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	border-bottom: 1px solid #ebebeb;
}

#cinf-t-container>div:last-child form .form-field-section:not(:last-child) {
	padding-bottom: 20px;
}

#cinf-t-container>div:last-child form .form-field-section .form-field-s-title {
	width: 100%;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}

#cinf-t-container>div:last-child form .form-field-section .form-field-s-title h6 {
	width: 100%;
	margin-bottom: 10px;
	font-size: 18px;
}

#cinf-t-container>div:last-child form .form-field-section .form-field-s-title p {
	width: 100%;
	color: #999999;
	font-size: 14px;
}

#cinf-t-container>div:last-child form .form-field-section .form-field-clearfix {
	width: 100%;
	display: flex;
}

#cinf-t-container>div:last-child form .form-field-section .form-field-clearfix.right {
	justify-content: flex-end;
}

#cinf-t-container>div:last-child form .form-field-section .form-field {
	width: 100%;
	margin-bottom: 15px;
	position: relative;
}

#cinf-t-container>div:last-child form .form-field-section .form-field input {
	width: 100%;
	margin-bottom: 3px;
	background-color: #ffffff;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(124, 124, 124);
	border-radius: 2px;
	padding: 15px 0px 3px 14px;
	transition: border-color ease 0.2s;
}

#cinf-t-container>div:last-child form .form-field-section .form-field input:focus {
	outline: none;
	border-color: #dd3c8a;
}

#cinf-t-container>div:last-child form .form-field-section .form-field select {
	width: 100%;
	margin-bottom: 3px;
	padding: 15px 0px 3px 14px;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(124, 124, 124);
	border-radius: 2px;
}

#cinf-t-container>div:last-child form .form-field-section .form-field select:focus {
	border-color: #dd3c8a;
	outline: none;
}

#cinf-t-container>div:last-child form .form-field-section .form-field select + label {
	font-size: 8.8px;
	top: 3px;
	left: 15px;
}

#cinf-t-container>div:last-child form .form-field-section .form-field textarea {
	width: 100%;
	height: 200px;
	min-width: 100%;
	max-width: 100%;
	min-height: 200px;
	max-height: 200px;
	padding: 15px 0px 0px 14px;
	background-color: #ffffff;
	resize: none;
}

#cinf-t-container>div:last-child form .form-field-section .form-field textarea:focus {
	outline: none;
	border-color: #dd3c8a;
}

#cinf-t-container>div:last-child form .form-field-section .form-field label {
	width: auto;
	color: #aeaeae;
	pointer-events: none;
	font-size: 14px;
	position: absolute;
	top: 9px;
	left: 15px;
	transition: all ease 0.2s;
}

#cinf-t-container>div:last-child form .form-field-section .form-field label.on-focus {
	font-size: 8.8px;
	top: 3px;
	left: 15px;
}

#cinf-t-container>div:last-child form .form-field-section .form-field .input-msg {
	width: 100%;
	min-height: 15px;
	display: flex;
	flex-direction: row;
}

#cinf-t-container>div:last-child form .form-field-section .form-field .input-msg p {
	width: 100%;
	padding-left: 5px;
	color: #d93025;
	font-size: 12px;
}

#btn-buy-container {
	width: 100%;
	padding: 10px 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#btn-buy {
	padding: 8px 20px;
	color: #ffffff;
	cursor: pointer;
	background-color: #dd3c8a;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	transition: background-color, box-shadow ease 0.2s;
}

#btn-buy:hover {
	background-color: #c24280;
	box-shadow: 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12), 0 2px 4px -1px rgba(0,0,0,0.3);
}

@media screen AND ( min-width: 992px ) {
	#content-container-section {
		width: 100%;
		display: flex;
		flex-direction: row;
	}

	#l-cc-col {
		width: 40%;
		padding: 0px 20px;
		
	}

	#r-cc-col {
		width: 60%;
		padding: 0px 20px;
		display: flex;
		flex-direction: column;
	}

	#colors-category-container a span:first-child img {
		width: 100px;
	}

	#nails-colors-input .tagify {
		width: 70%;
	}

	#cinf-t-container {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	#cinf-t-container>div {
		width: calc( 50% - 10px );
		display: flex;
	}

	#cinf-t-container>div:first-child {
		margin-bottom: 0px;
	}
}