@font-face {
	font-family: "ABBvoiceLight";
	font-weight: 300;
	font-style: normal;
	src: url("../fonts/ABBvoice_W_Lt.dcaf6fa5b13c.woff2") format("woff2"), url("../fonts/ABBvoice_W_Lt.fb6e6a638981.woff") format("woff"), url("../fonts/ABBvoice_W_Lt.b88bd1f2151f.eot") format("embedded-opentype");
}

@font-face {
	font-family: "ABBvoiceRegular";
	font-weight: 400;
	font-style: normal;
	src: url("../fonts/ABBvoice_W_Rg.c1f6b9b025de.woff2") format("woff2"), url("../fonts/ABBvoice_W_Rg.335553e3bcdb.woff") format("woff"), url("../fonts/ABBvoice_W_Rg.11965b48f9f1.eot") format("embedded-opentype");
}

@font-face {
	font-family: "ABBvoiceMedium";
	font-weight: 500;
	font-style: normal;
	src: url("../fonts/ABBvoice_W_Md.a2f3e0275bb2.woff2") format("woff2"), url("../fonts/ABBvoice_W_Md.5bdf74f1b905.woff") format("woff"), url("../fonts/ABBvoice_W_Md.d9b01df75ed6.eot") format("embedded-opentype");
}

@font-face {
	font-family: "ABBvoiceBold";
	font-weight: 700;
	font-style: normal;
	src: url("../fonts/ABBvoice_W_Bd.3aa42dcd7e0b.woff2") format("woff2"), url("../fonts/ABBvoice_W_Bd.3d4eaf3b36d9.woff") format("woff"), url("../fonts/ABBvoice_W_Bd.37aee0e5ca8a.eot") format("embedded-opentype");
}

body {
    margin: 0;
}

.iframe-login__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.iframe-login__form-field, .login__form-field {
    position: relative;
}

.iframe-login__form-field input[type="text"], .iframe-login__form-field input[type="password"], .iframe-login__form-field input[type="email"],
.login__form-field input[type="text"], .login__form-field input[type="password"], .login__form-field input[type="email"] {
    border: none;
    border-bottom: 1px solid #6e6e6e;
    font-family: "ABBvoiceLight";
    font-size: 16px;
    color:black;
    line-height: 1.5;
    padding: 6px 0;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

.iframe-login__form-field input:hover, .login__form-field input:hover {
    border-bottom: 1px solid black;
}

.iframe-login__form-field .form-line, .login__form-field .form-line {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    width: 0;
    height: 2px;
    background-color: black;
    transition: all 0.3s ease;
}

.iframe-login__form-field input:focus + .form-line, .login__form-field input:focus + .form-line {
    width: 100% !important;
}

.iframe-login__form-field input::placeholder, .login__form-field input::placeholder {
    color:#6e6e6e;
}

.iframe-login__link {
	color: #000;
	font-family: "ABBvoiceLight";
	font-size: 16px;
	line-height: 1.5;
	text-decoration-line: underline;
	transition: color .2s ease-in-out;
}


.iframe-login__cta {
    background-color: #FF000F;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 2px solid #FF000F;
    color: #ffffff;
    font-family: "ABBvoiceMedium";
    font-size: 16px;
    cursor: pointer;
    margin: 10px 0 0;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.iframe-login__cta:hover {
	background-color: #bb2924;
	border-color: #bb2924;
	color: $color_white;
}

.login__subtitle p {
	color: #000000;
	font-family: "ABBvoiceLight";
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 20px;
	padding: 0;
}

.popup-login__close {
	position: absolute;
	top: 25px;
	cursor: pointer;
	right: 25px;
	width: 20px;
	height: 20px;
}

.popup-login__close svg path {
	transition: fill .2s ease-in-out
}

.popup-login__loader {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100px;
	height: 100px;
}

.popup-login__loader img {
	width: 100%;
	height: auto;
	display: block;
}

/* Login Flow */

.login__container .login {
	padding: 150px 0;
	@media only screen and (max-width: 767px) {
		padding: 70px 0;
	}
}

.login__intro p {
	font-family: 'ABBvoiceLight';
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

.login__intro.small ul li {
    font-size: 14px;
}

.login__intro.red p {
	color: #FF000F;
}

.login__intro ul {
	margin: 0 0 25px;
	display: block;
	@media only screen and (max-width: 767px) {
		padding: 0 0 0 13px;
	}
}

.login__intro ul li {
	font-family: 'ABBvoiceLight';
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

.login__intro ul li::marker {
	color: #000000;
}

.login__error {
	font-family: 'ABBvoiceLight';
    color: #FF000F;
    font-size: 14px;
    line-height: 1.5;
    display: block;
    margin: 0 0 10px;
}

.login__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login__form-label {
    font-family: "ABBvoiceMedium";
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 10px;
}

.login__cta-container {
	display: flex;
	align-items: center;
	column-gap: 15px;
	flex-wrap: wrap;
	row-gap: 15px;
	margin: 20px 0 0;
}

.login__cta {
	background-color: #FF000F;
    padding: 15px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 2px solid #FF000F;
    color: #ffffff;
    font-family: "ABBvoiceMedium";
    font-size: 16px;
    margin: 10px 0 0;
    cursor: pointer;
	transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.login__cta:hover {
	background-color: #bb2924;
	border-color: #bb2924;
	color: $color_white;
}

.login__link {
	color: #262626;
	font-family: "ABBvoiceLight";
	font-size: 16px;
	line-height: 1.5;
	cursor: pointer;
	text-decoration-line: underline;
	transition: color .2s ease;
}

.login__link:hover {
	color: #000;
}

/* Search List */

.search-products-list .product-search {
	position: relative;
}

.search-products-list #search-input {
	color: #000;
	font-family: Arial;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	border: 1px solid black;
	border-radius: 5px;
	border: 1px solid #7F8589;
	background: #FFF;
	width: 240px;
	height: 40px;
	padding: 0 30px;
	flex-shrink: 0;
	margin: 0 0 20px;
	outline: none;
}

.search-products-list svg {
	position: absolute;
	left: 10px;
	top: 14px;
	width: 12px;
	height: 12px;
}

.search-products-list input::placeholder {
  opacity: 1;
  color: #000;
}

.table-propduct td, .table-propduct th {
	@media only screen and (max-width: 767px) {
		font-size: 11px;
	}
}

.table-propduct td:first-child, .table-propduct th:first-child {
	width: 12%;
	@media only screen and (max-width: 767px) {
		width: 10%;
	}
}

.table-propduct td:nth-child(2), .table-propduct th:nth-child(2) {
	width: 12%;
	text-align: center;
	@media only screen and (max-width: 767px) {
		width: 10%;
	}
}

.table-propduct td:nth-child(3) {
	padding: 0 0 0 12%;
	@media only screen and (max-width: 767px) {
		padding: 0 0 0 10%;
	}
}

.table-propduct th:nth-child(3) {
	padding: 7px 10px 7px 12%!important;
	@media only screen and (max-width: 767px) {
		padding: 7px 10px 7px 10%!important;
	}
}
