@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bad+Script&display=swap");

html {
	
	--font-thin:      200;
	--font-normal:    400;
	--font-semi-bold: 600;
	--font-bold:      700;
	--border-radius:  5px;

	--text-danger:    #e53d2e;
	--text-success:   #56bf56;
	--text-secondary: #999999;

	--bg-secondary:  #e5e5e5;
	--ws-bg-success: #56bf56;

}

html, body, input, textarea, select, button {
	font-family: "Roboto Flex", serif;
	font-size: 13px;
	font-weight: var(--font-normal);
	color: var(--main-text-color);
}

a {
	cursor: pointer;
	text-decoration: none;
	color: var(--main-link-color-base);
}

a:hover {
	text-decoration: underline;
	color: var(--main-link-color-hover);
}

.ws.mb {
	margin-bottom: 10px;
}

.ws.text-success {
	color: var(--text-success);
}

.ws.text-danger {
	color: var(--text-danger);
}

.ws.text-secondary {
	color: var(--text-secondary);
}

/* Text Logo */

div.ws.logo.text {
	font-size: 32px;
	font-family: "Bad Script", serif;
}

div.ws.logo.text > a {
	color: var(--header-text-color-1) !important;
	text-decoration: none;
}

div.ws.logo.text > a > span {
	color: var(--header-text-color-2) !important;
}

#wrapper[data-route="checkout"] div.ws.logo.text > a {
	font-size: 32px;
	font-family: "Bad Script", serif;
}

/* Form */

input[type="text"],
input[type="password"],
select,
textarea {
	border: 1px solid #cccccc;
	box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.05);
	border-radius: var(--border-radius);
	background-color: #ffffff;
}

input[type="text"],
input[type="password"],
select {
	height: 34px;
	line-height: 34px;
	padding: 0 10px;
}

textarea {
	padding: 10px;
	resize: none;
}

input[type="text"][readonly] {
	border: 1px solid #cccccc;
	background-color: rgba(0, 0, 0, 0.03);
	color: rgba(0, 0, 0, 0.6);
	text-shadow: 1px 1px 0px #ffffff;
	cursor: default;
}

/* User from */

div.input-group label {
	padding-top: 1px;
}

/* Buttons */

input[type="button"].ws,
input[type="submit"].ws,
button.ws, a.button.ws,
div.inside > div.products_filters > a.toggle,
input[type="file"]::file-selector-button {
	height: 34px;
	line-height: 34px;
	padding: 0 10px;
	background: linear-gradient(var(--button-main-bg-color-base), var(--button-main-bg-color-gradient));
	border: 1px solid var(--button-main-border-color-base);
	color: var(--button-main-text-color-base);
	border-radius: var(--border-radius);
	text-decoration: none;
	text-align: center;
}

input[type="file"]::file-selector-button {
	cursor: pointer;
	margin-right: 5px;
}

input[type="button"].ws:hover,
input[type="submit"].ws:hover,
button.ws:hover, a.button.ws:hover {
	background: linear-gradient(var(--button-main-bg-color-gradient), var(--button-main-bg-color-base));
}

input[type="button"].ws.secondary,
input[type="submit"].ws.secondary,
button.ws.secondary,
a.button.ws.secondary,
div.inside > div.products_filters > a.toggle,
input[type="file"]::file-selector-button {
	background: linear-gradient(#f7f7f7, #f0f0f0);
	border: 1px solid #e5e5e5;
	color: #333333;
}

input[type="button"].ws.secondary:hover,
input[type="submit"].ws.secondary:hover,
button.ws.secondary:hover,
a.button.ws.secondary:hover,
input[type="file"]::file-selector-button:hover {
	background: linear-gradient(#f0f0f0, #f7f7f7);
}

/* Button icons */

a.button.ws.secondary > i,
button.ws.secondary > i {
	margin-right: 5px;
}

/* Checkbox */

label.checkbox {
	line-height: 150%;
	padding-left: 22px;
}

label.checkbox .checkmark {
	top: 2px;
	width: 13px;
	height: 13px;
	border: 1px solid #b3b3b3;
	background: #ffffff;
	box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
}

label.checkbox .checkmark i {
	line-height: 13px;
	color: var(--button-main-text-color-base);
}

label.checkbox:hover input ~ .checkmark {
	
}

label.checkbox input:checked ~ .checkmark {
	background-color: var(--button-main-bg-color-base);
	border: 1px solid var(--button-main-bg-color-base);
	box-shadow: none;
}

label.checkbox > i.color {
	border-radius: 2px;
	height: 14px;
	margin-top: 2px;
}

/* Radio */

label.radio {
	padding-top: 0.5px;
	padding-left: 22px;
}

label.radio .radio {
	top: 0px;
	width: 13px;
	height: 13px;
	border: 2px solid #b3b3b3;
	box-shadow: inset 1px 1px 1px 0px rgba(0, 0, 0, 0.1);
}

label.radio:hover input ~ .radio {
	background-color: rgba(0, 0, 0, 0.1);
	box-shadow: inset 0px 0px 0px 2px #ffffff;
}

label.radio input:checked ~ .radio {
	background-color: var(--button-main-bg-color-base);
	border: 2px solid var(--button-main-bg-color-base);
	box-shadow: inset 0px 0px 0px 2px #ffffff;
}

/* Inside Menu */

div.content_html > ul.ws.nav {
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: var(--border-radius);
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05);
}

div.content_html > ul.ws.nav > li {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

div.content_html > ul.ws.nav > li:last-child {
	border-bottom: 0;
}

div.content_html > ul.ws.nav > li:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

div.content_html > ul.ws.nav > li > a {
	text-decoration: none;
	height: 34px;
	line-height: 34px;
	padding: 0 10px;
}

/* Popup */

#popup > div,
#popup_verification > div {
	border-radius: var(--border-radius);
}

#popup > div > label,
#popup > div h1,
#popup_verification > div > div:nth-child(1) {
	font-size: 22px;		
	font-weight: var(--font-semi-bold);
}

#popup > div h1 {
	margin-top: 0;
}

#popup_verification > div > div:nth-child(2) {
	line-height: 150%;
}

#popup > div input[type="button"] {
	height: auto;
	padding: 5px 20px;
}

/* Messages */

div.ws.msg {
	box-sizing: border-box;
	padding: 10px;
	border-radius: var(--border-radius);
}

div.ws.msg > label {
	margin-bottom: 10px;
	font-weight: var(--font-semi-bold);
}

div.ws.msg.icon i,
div.ws.msg > label > i {
	margin-right: 5px;
}

div.ws.msg.alert {
	background: #fff3a5;
	color: #b38659;
	border: 1px solid #b38659;
}

div.ws.msg.error {
	background: #ffe2df;
	color: #b36159;
	border: 1px solid #b36159;
}

div.ws.msg.ok {
	background: #ccf8e4;
	color: #809973;
	border: 1px solid #809973;
}

div.ws.msg.info {
	background: #c8ecff;
	color: #548299;
	border: 1px solid #548299;
}
