/* ==========================================================================
   THEME STYLE MODIFICATIONS
   ========================================================================== */
/**
 * Set all your THEME styles in this file.
 *
 * Adding a Theme to a design is very straightforward as every component works
 * like an extensible class. This allows you to add theme specific classes
 * and/or override existing classes.
 *
 * NOTE: Any new classes created should follow the established coding
 * standards for the framework. Theme specific classes should be prefixed by
 * `.t-`.
 *
 * Why do it this way?
 * By decoupling the theme styling from the default framework, you get the
 * following benefits:
 *		Keep the framework core library up-to-date
 *		Updates to the core styles of the framework do not get overwritten when
 *		extending the component.
 *
 *		End-user entry points remain untouched
 *		End-users do not need to use any custom name that belongs only to the
 *		theme.
 */
/* ==========================================================================
   SETTINGS / COLORS
   This is where the global colors are set.
   Overrides should be placed in the 'ui/css/theme.scss' file.
   ========================================================================== */
/**
 * Convert a hex value to comma-delimited rgb values
 * @param {Color} $color - hex color
 * @return {Color} - RGB
 * In: #000
 * Out: 0, 0, 0
 */
/**
 * Slightly lighten a color
 * @param {Color} $color - color to tint
 * @param {Number} $percentage - percentage of `$color` in returned color
 * @return {Color}
 */
/**
 * Slightly darken  a color
 * @param {Color} $color - color to shade
 * @param {Number} $percentage - percentage of `$color` in returned color
 * @return {Color}
 */
/**
 * This section sets default theme for the project so the variables exist.
 */
/**
 * This section sets shading and tinting variables to be used for events,
 * like hover, for the project.
 */
/* ==========================================================================
SETTINGS / GLOBAL
Set all your global CSS variables in this file.
Overrides should be placed in the 'ui/css/theme.scss' file.
========================================================================== */
/* theme settings
   =========================================== */
/* root settings
   =========================================== */
/* width constraints
   =========================================== */
/* typography settings
   =========================================== */
/* border settings
   =========================================== */
/* breakpoints
   =========================================== */
/* miscellaneous
   =========================================== */
/* ==========================================================================
   SETTINGS / TYPOGRAPHY
   This is where the global typography measurements are set.
   Overrides should be placed in the 'ui/css/theme.scss' file.
   ========================================================================== */
/* Minor Third Font Scale */
/* Perfect Fourth Font Scale */
/* Editing below this point is not recommended */
/* Site Header
   =========================================== */
.t-site-header {
	border-bottom: 1px solid #eaeaea;
}

.t-site-header__top-navigation {
	font-size: 0.8125rem;
}

.t-site-header__message {
	display: inline-block;
	padding: 1em 0 1em 1em;
}

.t-site-header__links [class^="u-icon-"] {
	margin-right: 0.25em;
	font-size: 1.25rem;
	vertical-align: text-bottom;
}

.t-site-header__links a {
	color: #fff;
}

.t-site-header__links a:hover {
	text-decoration: none;
	opacity: 0.75;
	transition: 0.3s;
}

.t-site-header__links .o-layout__item {
	padding: 1em 1rem;
}

@media (min-width: 48em) {
	.t-site-header__links .o-layout__item:not(:first-of-type) {
		border-left: 1px solid #595959;
	}
}

.t-site-header__links .x-transfigure-navigation__footer {
	display: flex;
	justify-content: flex-end;
}

.t-site-header__links .x-transfigure-navigation__footer-link {
	margin: 0 1rem;
	padding: 0;
	font-size: inherit;
	font-weight: 400;
	letter-spacing: inherit;
}

.t-site-header__basket-link--mobile {
	display: flex;
	font-size: 2rem;
}

.t-site-header__basket-link-quantity--mobile {
	display: inline-block;
	min-width: 2em;
	height: 2em;
	padding: 0 0.25em;
	font-size: 0.75rem;
	line-height: 2;
	text-align: center;
	border-radius: 50%;
	touch-action: none;
	transform: translate(-0.75em, -1em);
	z-index: -1;
}

.t-global-account {
	background-color: #efefef;
	border: 1px solid #eaeaea;
	max-width: 22.5rem;
	padding: 1rem;
	position: absolute;
	right: 0;
	top: 100%;
	width: 100vw;
}

.t-global-account__form {
	margin-bottom: 0;
}

.t-global-account__form .c-form-list__item:last-of-type {
	margin-bottom: 0;
	padding-top: 0.5em;
}

.t-site-header__masthead {
	max-width: 80rem;
	padding-top: 1em;
	padding-bottom: 1em;
	position: relative;
	font-size: 0.875rem;
}

.t-site-header__logo {
	margin-bottom: 0;
}

.t-site-header__search-form {
	margin-bottom: 0;
	position: relative;
	border: 1px solid #eaeaea;
}

.t-site-header__search-form .c-form-list__item {
	margin-bottom: 0;
	margin-left: auto;
}

.t-site-header__search-form .c-form-input {
	padding-right: calc(2em - 1px);
	padding-left: calc(2em - 1px);
}

.t-site-header__masthead-links {
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.t-site-header__masthead-links [class^="u-icon-"] {
	margin-right: 0.25em;
	font-size: 1.25rem;
	vertical-align: text-bottom;
}

.t-site-header__masthead-links button:hover {
	text-decoration: none;
	opacity: 0.75;
	transition: 0.3s;
}

.t-site-header__masthead-links .t-global-account-toggle {
	margin-right: 1em;
	padding: 0.5em calc(1em + 1px) 0.5em 0.5em;
	background-color: #fff;
	border: 0 none;
	border-right: 1px solid #eaeaea;
}

.t-site-header__masthead-links .t-site-header__basket-link {
	margin-left: 1em;
	padding: 0.5em 0 0.5em 0.5em;
	background-color: #fff;
	border: 0 none;
}

.t-site-header__basket-link-quantity {
	margin-left: 0.25em;
	padding: 0.5rem 1em;
}

.t-site-navigation {
	margin-bottom: 1rem;
}

.t-site-navigation__wrap {
	max-width: 106.25rem;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	font-size: 0.875rem;
}

@media (min-width: 60em) {
	.t-site-navigation {
		border-bottom: 1px solid #eaeaea;
	}
}

/* Main Element
     =========================================== */
.t-main-content-element {
	max-width: 106.25em;
}

/* Site Footer
    =========================================== */
.t-site-footer {
	padding-top: 1rem;
}

.t-site-footer .o-wrapper {
	max-width: 80rem;
}

.t-site-footer__content,
.t-site-footer__disclaimer {
	padding-top: 2em;
	padding-bottom: 2em;
}

.t-site-footer .c-menu__title,
.t-site-footer .c-collapsible-menu__label {
	font-weight: 600;
}

@media (max-width: 47.9em) {
	.t-site-footer .x-collapsible-content .c-menu__title {
		display: none;
	}
	.t-site-footer .x-collapsible-content__toggle [class^="u-icon-"] {
		font-size: 0.66em;
		font-weight: 700;
	}
	.t-site-footer .x-collapsible-content__item {
		margin-top: 1rem;
	}
}

@media (min-width: 48em) {
	.t-site-footer .x-collapsible-content__toggle {
		display: none;
	}
	.t-site-footer .x-collapsible-content__item {
		max-height: none;
		opacity: 1;
		overflow: visible;
		visibility: visible;
	}
}

.t-site-footer__content .c-menu__link:not([class*=" u-icon-"]) {
	font-size: 0.875rem;
	font-weight: 500;
	color: #595959;
}

.t-site-footer__content .c-menu__link:hover {
	text-decoration: none;
	opacity: 0.75;
}

.t-site-footer__disclaimer {
	font-size: 0.75rem;
}

.t-global-footer-social-links .c-menu__link {
	padding: 0 1rem 1rem 0;
}

.t-global-footer-social-links .c-menu__link:hover {
	text-decoration: none;
	opacity: 0.75;
}

.t-newsletter-form__input {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	height: auto;
}

@media (min-width: 48em) {
	.t-site-footer {
		padding-top: 4rem;
	}
	.t-site-footer__content,
	.t-site-footer__disclaimer {
		padding-top: 4em;
		padding-bottom: 4em;
	}
}

/* Storefront
    =========================================== */
.t-storefront-about .c-heading-charlie {
	font-size: 1.875rem;
	letter-spacing: 3px;
}

.t-storefront-about .c-heading--subheading {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 2px;
}

.t-storefront-about__brief {
	font-size: 0.9375rem;
	line-height: 1.667;
}

.t-featured-products {
	margin-bottom: 2rem;
	padding-top: 3rem;
}

.t-featured-products .x-product-list__heading {
	margin-bottom: 3em;
	font-size: 1.5rem;
}

.t-featured-products .x-product-list__action {
	max-width: 18em;
	margin: auto;
}

.t-featured-products .x-product-list__action .c-button {
	padding-right: calc(4.5rem - 1px);
	padding-left: calc(4.5rem - 1px);
}

/* Category Page
    =========================================== */
.t-display-list-filtering {
	flex-wrap: nowrap;
}

.t-display-list-filtering .x-display-list-filtering__per-page,
.t-display-list-filtering .x-display-list-filtering__sort-by,
.t-display-list-filtering .c-form-list__item,
.t-display-list-filtering .c-form-label,
.t-display-list-filtering .c-form-select {
	margin-bottom: 0;
}

.t-display-list-filtering .c-form-label {
	font-size: 0.6875rem;
}

.t-display-list-filtering .c-form-select__dropdown {
	padding: 0;
	font-size: 0.75rem;
	background-color: #fff;
	border: 0 none;
	color: initial;
}

.t-pagination.x-pagination--centered {
	width: 13rem;
	justify-content: center;
}

.t-pagination .o-list-inline {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}

.t-pagination .c-button {
	width: 2em;
	height: 2em;
	padding: 0;
	line-height: 2;
	border-color: #c0c0c0;
}

.t-pagination .c-form-select {
	margin-bottom: 0;
}

.t-pagination .c-form-select__dropdown {
	padding: 0;
	border: 0 none;
}

/* Product Page
    =========================================== */
.t-quantify .c-control-group__button {
	padding-top: calc(1.5em + 1px);
	padding-bottom: calc(1.5em + 1px);
}

.t-quantify .c-control-group__button,
.t-quantify .c-control-group__field {
	max-width: 33.33333%;
	flex-basis: 33.33333%;
}

/* Basket Page
    =========================================== */
.t-basket__product-summary .c-table-responsive__row,
.t-basket__order-summary .c-table-simple__row {
	border-color: #eaeaea;
}

.t-basket__product-summary thead {
	border-top: 1px solid #eaeaea;
}

.t-basket__product-summary tbody .c-table-responsive__cell {
	padding-top: 1.5rem;
}

.t-basket__product-details {
	font-size: 0.875rem;
	font-weight: 600;
}

.t-basket-update .x-quantify {
	width: 10em;
	font-size: 0.875rem;
}

.t-basket-update .x-quantify .c-control-group__button {
	padding-top: calc(1.25em + 1px);
	padding-bottom: calc(1.25em + 1px);
	font-size: 0.875em;
}

.t-basket-update .x-quantify .c-control-group__button,
.t-basket-update .x-quantify .c-control-group__field {
	max-width: 33.33333%;
	flex-basis: 33.33333%;
}

.t-basket__product-remove {
	width: 3em;
	height: 3em;
	padding: 0;
	line-height: 3;
}

.t-basket_coupon-form,
.t-checkout-log-in__form {
	margin-bottom: 0;
}

.t-basket_coupon-form[aria-hidden='false'],
.t-checkout-log-in__form[aria-hidden='false'] {
	min-height: 3rem;
	margin-top: 0.5rem;
}

/* Checkout Pages
    =========================================== */
.t-ocst-account-message {
	display: block;
	padding: 2em;
	font-size: 0.75rem;
}

.t-checkout-basket-summary {
	height: calc(100% - 1rem);
	padding: 2rem 2rem 0;
	background-color: #f2f2f2;
}

.t-checkout-basket-summary__product-summary tbody .c-table-simple__cell {
	padding-top: 1.5rem;
}

.t-checkout-basket-summary__image {
	margin-right: 2rem;	
}
.t-checkout-basket-summary__image.image-left { 
	float: left; 
	max-width: 33%;
}
.t-checkout-basket-summary__text.text-right { 
	float: left;
	white-space: break-spaces;
	min-width: 66%;
}

.t-checkout-basket-summary__promo-form,
.t-checkout-basket-summary__promo-form:first-child,
.t-checkout-basket-summary__promo-form:last-child {
	display: block;
	margin: -1px -2rem;
	padding-right: 2rem;
	padding-left: 2rem;
	background-color: #b0b0b0;
}

@media (max-width: 59.9em) {
	.t-page-ocst .t-site-header__logo,
	.t-page-osel .t-site-header__logo,
	.t-page-opay .t-site-header__logo {
		flex-basis: 100%;
		max-width: 100%;
	}
}

@media (min-width: 90em) {
	.t-page-ocst .t-main-content-element,
	.t-page-osel .t-main-content-element,
	.t-page-opay .t-main-content-element {
		max-width: none;
		padding-right: 0;
		padding-left: 0;
	}
	.t-checkout-basket-summary {
		height: 100%;
	}
	.t-checkout-basket-summary .c-table-simple {
		width: 60%;
	}
	.t-checkout-basket-summary__promo-form,
	.t-checkout-basket-summary__promo-form:first-child,
	.t-checkout-basket-summary__promo-form:last-child {
		margin: -1px 0;
	}
	.t-page-ocst .t-site-footer,
	.t-page-osel .t-site-footer,
	.t-page-opay .t-site-footer {
		padding-top: 0;
	}
	.t-page-ocst .t-site-footer__disclaimer,
	.t-page-osel .t-site-footer__disclaimer,
	.t-page-opay .t-site-footer__disclaimer {
		padding-top: 1em;
		padding-bottom: 1em;
		text-align: left;
	}
	.t-page-ocst .t-site-footer__disclaimer .o-layout__item,
	.t-page-osel .t-site-footer__disclaimer .o-layout__item,
	.t-page-opay .t-site-footer__disclaimer .o-layout__item {
		flex: 0;
		white-space: nowrap;
	}
}

@media (min-width: 48em) {
	.t-payment-cta {
		flex-grow: 0;
	}
	.t-payment-form {
		justify-content: center;
	}
	.t-payment-form .o-layout__item {
		display: flex;
		max-width: 75%;
		align-items: center;
	}
	.t-payment-form .c-form-label {
		width: 25%;
		margin-right: 1rem;
	}
	.t-payment-form .c-form-input {
		max-width: 50%;
	}
	.t-payment-form .c-form-input--cvv {
		max-width: none;
	}
	.t-payment-form .t-data-cvv {
		margin-left: 0.5rem;
	}
	.t-payment-form .c-control-group {
		max-width: 50%;
		flex-grow: 1;
	}
}

.t-checkout-customer-summary {
	margin-bottom: 1rem;
	padding: 1rem 2rem 0;
}

.t-checkout-customer-summary .c-keyline {
	border-color: #c0c0c0;
}

.t-shipping-method .c-form-checkbox__caption::before {
	position: absolute;
}

.t-shipping-method-name {
	max-width: 45ch;
}

.t-shipping-method .c-keyline {
	margin-bottom: 0;
}

.t-order-complete-heading {
	padding: 2em 2em 1em 1em;
}

.t-order-complete-heading form {
	padding-top: 0.5em;
}

.t-page-invc .x-toggle-password {
	margin-top: 0;
	padding: 0.5em;
	top: 25%;
}

/* Account Landing Page
    =========================================== */
.t-account-landing-section {
	margin-bottom: 1rem;
}

.t-account-landing-section .c-heading-echo {
	font-size: 14px;
}

@media (min-width: 48em) {
	.t-account-landing-section .x-collapsible-content__toggle {
		display: none;
	}
	.t-account-landing-section .x-collapsible-content__item {
		max-height: none;
		opacity: 1;
		overflow: visible;
		visibility: visible;
	}
	.t-account-landing-section .c-heading-echo {
		font-size: 15px;
	}
}

.t-account-landing-section__content {
	padding-top: 1.25rem;
	padding-right: 1rem;
	padding-bottom: 1rem;
}

.t-account-landing-section__content.x-category-tree__row {
	padding-left: 1rem;
}

.t-account-landing-section__content.x-category-tree__row span.x-category-tree__link:hover {
	text-decoration: none;
}

/* Wish List Page
    =========================================== */
.t-wish-list-search .c-control-group {
	border: 1px solid #eaeaea;
}

.t-wish-list-search__button {
	padding-right: calc(1em - 1px);
	padding-left: calc(1em - 1px);
}

.t-wish-list__item .c-control-group__button {
	flex: 1 1 50%;
	padding-right: 0;
	padding-left: 0;
}


.tinytabs .tabs {margin-left: 15px; display: flex; flex-flow: row wrap; } .tinytabs .tabs .tab .close {padding-left: 5px; } .tinytabs .tabs .tab {margin: 0 3px 0 0; background: #e1e1e1; display: block; padding: 6px 15px; text-decoration: none; color: #666; font-weight: bold; border-radius: 3px 3px 0 0; } .tinytabs .section {/* background: #f1f1f1; */border: 3px solid #f1f1f1;overflow: hidden;padding: 15px;clear: both;border-radius: 3px;} .tinytabs .tab.sel {background: #f1f1f1; color: #333; text-shadow: none; }
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none;}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;margin-left:5px;padding:0;max-width:100%;resize:none;height:18px;vertical-align:bottom;font-family:sans-serif;overflow:hidden;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height: 28px;}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px;padding-right:0px}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:bold;height:20px;margin-right:10px;margin-top:5px;position:absolute;right:0;padding:1px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;padding:0;padding-left:20px;position:relative;max-width:100%;overflow:hidden;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-right:1px solid #aaa;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px;position:absolute;left:0;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-top-left-radius:4px;border-bottom-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:bold;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{border-top-left-radius:0;border-bottom-left-radius:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}


#recipient-tabs button.save {
    margin: 10px 55px;
    display: block;
    padding: 10px 30px;
    font-size: 17px;
    cursor: pointer;
    float: left;
}

#recipient-tabs button.save.disabled {
    pointer-events: none;
    opacity: 0.4;
    color: grey;
}

#recipient-tabs button.edit {
    padding: 10px 30px;
    margin: 10px auto;
    cursor: pointer;
    display: block;
    float: left;
}

#recipient-tabs table {
    border: 1px solid black;
    border-radius: 3px;
    border-collapse: collapse;
    font-size: 12px;
    margin-bottom: 20px;
    width: calc(100% - 30px) !important;
	margin-left: 0 !important;
}

#customer-recipients {
  /* width: 100% !important; */
}

#recipients-tabs table tfoot tr {
    display: none;
}

#recipient-tabs table.editable {
    width: 100% !important;
}

#recipient-tabs table th {
    background-color: #262323;
    color: white;
    text-transform: capitalize;
    white-space: nowrap;
    padding: 5px;
    font-size: 13px;
    cursor: pointer;
}

#recipient-tabs table th.action-remove {
    display: none;
    width: 30px;
}

#recipient-tabs table.editable th.action-remove {
    display: table-cell;
}

#recipient-tabs table td {
    border-right: 1px solid #262323;
    padding: 2px;
    text-align: center;
    white-space: nowrap;
    color: black;
}

#recipient-tabs table.editable td {
}

#recipient-tabs table td.remove {
    display: none;
}

#recipient-tabs table.editable td.remove {
    display: table-cell;
}

#recipient-tabs table tr:nth-child(even) {
    background: #bcbbba;
}

#recipient-tabs table tr {
    position: relative;
}

#recipient-tabs table input {
    width: 80%;
    max-width: 500px;
    text-align: center;
    font-size: inherit;
    line-height: 1.5;
    pointer-events: none;
    padding: 0 5px;
    background: none;
    border: 1px solid transparent;
    border-radius: 2px;
}



#recipient-tabs table td.edited input:not(input:focus) {
    outline: 2px solid #3ee011;
}

#recipient-tabs table.editable input {
    pointer-events: auto;
    border: 1px solid #767676;
    background: white;
    width: 80% !important;
}

.filters input {
   pointer-events: auto !important;
   width: 80% !important;
   background: none !important;
   border: none !important;
   text-align:left;
}

#recipient-tabs table.editable input:focus {transform: scale(1.3);z-index: 999;position: relative;/* pointer-events: auto; */}


#recipient-tabs table tr.edited td:first-child:before {
    content: '*';
    position: absolute;
    color: green;
    right: 100%;
    margin-right: 5px;
    font-size: 15px;
    top: 0;
}

#recipient-tabs {
    margin: 30px 0 50px;
}

#recipient-tabs button.download-csv {
    float: right;
    margin: 0 30px 10px 0;
    font-size: 13px;
    padding: 3px 5px;
    cursor: pointer;
}
#recipient-tabs th .fa-sort-up,
#recipient-tabs th .fa-sort-down {
    display:none;
}
#recipient-tabs th.sorted.ascending .fa-sort {
    display:none;
}

#recipient-tabs th.sorted.ascending .fa-sort-up {
    display:initial;
}

#recipient-tabs th.sorted.descending .fa-sort {
    display:none;
}

#recipient-tabs th.sorted.descending .fa-sort-down {
    display:initial;
}

#recipient-tabs .select2-container {

width: 500px !important;
}

#recipient-groups .select2-selection {
    height: auto;
    min-height: 50px;
    background: none;
    border: 1px solid transparent;
    pointer-events: none;
}

#recipient-groups.editable .select2-selection {
    background: #eaeaea;
    border: 1px solid #aaa;
    pointer-events: auto;
}

#recipient-groups .select2-selection__arrow {
    display: none;
}

#recipient-groups.editable .select2-selection__arrow {
    display: block;
}

#recipient-groups .x-search-preview__image {
    width: 42px;
    border-radius: 3px;
    height: 42px;
    margin-left: -5px;
}


#js-ARCP .x-search-preview__line {
    border-bottom: none;
    padding: 0;
}

#recipient-groups .x-search-preview__line {
    padding: 3px 0px;
}

#recipient-groups .x-search-preview__list {
    padding: 0 20px 0 0;
}

#js-ARCP .select2-container .product-code {
    position: absolute;
    top: 0;
    font-size: 10px;
    font-weight: bold;
}

#js-ARCP .select2-results .product-code {
    top: auto;
    margin-top: -7px;
    font-size: 11px;
}

#js-ARCp {}

#js-ARCP .select2-container .x-search-preview__item-name {
    position: relative;
    top: 9px;
}


#js-ARCP .select2-results__options {
    max-height: 400px;
}

#js-ARCP .select2-results {
    /* padding-bottom: 5px; */
    border-bottom: 3px solid #888;
}

#recipient-groups #new-recipient-group .select2-selection {
    opacity: 0;
}

#recipient-groups.editable #new-recipient-group .select2-selection {
    opacity: 1;
}

table#recipient-groups input {
    line-height: 2.5;
}

#recipient-groups .x-search-preview__item {}

.dataTables_wrapper .dataTables_filter input {
 background-color: white !important;
 color: black !important;
}

#customer-recipients_filter, #customer-recipients_length {
display:none !important;
}

.input-search input, .input-search input:active, .input-search input:hover {
text-align : left;
border:1px solid grey !important;
}

.filters input:hover {
    cursor: -moz-zoom-in; 
    cursor: -webkit-zoom-in; 
    cursor: zoom-in;
}
.input-search span {
 margin-left: -20px;
}



#customer-recipients_length {
padding: 10px !important;
display:none !important;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 65px; /* Above header */
    width: 100%;
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  /* Modal Content/Box */
  .modal-content {
      display: flex;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
  }

  /* The Close Button */
  #js-ARCP .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  #js-ARCP .close:hover,
  #js-ARCP .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  #js-ARCP .btn {
      padding: 10px 20px;
      margin: 10px;
      cursor: pointer;
      display: block;
      float: left;
  }


#js-ARCP .overlay{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255,255,255,0.8) url(https://cdnjs.cloudflare.com/ajax/libs/jquery-mobile/1.4.5/images/ajax-loader.gif) center no-repeat;
}

#js-ARCP.loading{
    overflow: hidden;   
}

#js-ARCP.loading .overlay{
    display: block;
}
.showPopup-modal {
	max-width: 665px !important;
	height: auto;
	overflow-x: hidden !important;
	padding: 10px 0!important;
	width: 100% !important;
	cursor: auto;
}

.ctgy-openPopup-btn {
	cursor: pointer;
	color: white;
	font-size: 13.30px;
	font-family: Inter;
	font-weight: 700;
	text-transform: uppercase;
	word-wrap: break-word;
	background-color: #841D1D;
	border: none;
	border-radius: 1.60px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 8px;
	padding-right: 8px;
	width: 100%;
	max-width: 275px;
	margin-top: 24px;
}

@media (max-width: 960px) {
	.ctgy-openPopup-btn {
		display: none;
	}
}

.global-basket_prod_name {
	color: #595959;
	font-size: 13.30px;
	font-family: Inter;
	font-weight: 700;
	line-height: 23.96px;
	word-wrap: break-word;
}

.global-basket_prod_sku-qty {
	color: #595959;
	font-size: 11.10px;
	font-family: Inter;
	font-weight: 400;
	line-height: 19.94px;
	word-wrap: break-word;
}

.global-basket_prod_recepient-group {
	font-size: 16px;
	font-family: Inter;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 24.19px;
	word-wrap: break-word;
	color: #841d1d;
	background-color: #f4f4f4;
	padding: 16px 16px 0 16px;
	margin-top: 16px;
}

.recipient-wrapper:first-child .global-basket_prod_recepient-group {
  margin-top: 0;
}

.global-basket_prod_price {
	margin-top: 20px;
}

.input-first-name {
	padding: 15px !important;
}

.input-last-name {
	padding: 15px !important;
}

.add-another_recipient_btn {
	display: flex;
	background-color: white;
	border: none;
	gap: 4px;
	align-items: center;
	padding-left: 0;
	cursor: pointer;
}

.shipto_recipient {
	padding: 15px !important;
}

.add-another_recipient_btn-text {
	color: black;
	font-size: 14px;
	font-family: Inter;
	font-weight: 400;
	line-height: 24px;
	word-wrap: break-word;
}

.add-another_recipient_btn-circle {
	background-color: #841D1D;
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.recepient-block {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding-left: 0;
}

#addProductModal .recepient-block {
	justify-content: space-between;
}

.AnotherRecepientBlock {
	width: 100%;
	display: flex;
	gap: 40px;
	padding-left: 16px;
	padding-top: 30px;
}

.AnotherRecepientBlock:first-child {
	padding-top: 0;
}

.modal_popup-option {
	border-left: 1px solid #C0C0C0;
	border-right: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
}

.styles-for-modal_popup-recipient {
	border-left: 1px solid #C0C0C0;
	border-right: 1px solid #C0C0C0;
}

.add-another_recipient_btn-block {
	width: auto; 
	padding-left: 16px; 
	margin: 0;
	border-left: 1px solid #C0C0C0; 
	border-right: 1px solid #C0C0C0;
}

.modal-popup_close-button {
	display: none;
}
#addProductModal .modal-popup_close-button {
	display: block;
	position: absolute;
    top: -12px;
    right: 17px;
    font-size: 40px;
    cursor: pointer;
	z-index: 9999;
	color: black;
}

#addProductModal .related_title {
	display: none;
}

#addProductModal .select-one-block {
	padding-top: 17px;
}

#addProductModal .modal-popup_close-button:hover {
	text-decoration: none !important;
}

#addProductModal #styles-for-modal_popup-choose {
	padding-bottom: 30px;
}

.styles-for-modal_popup-attr {
	padding-bottom: 36px;
}

#styles-for-modal_popup-option {
	margin: 0;
}
#addProductModal .choose_recipient {
	padding-bottom: 0;
}

.close-modal {
	display: none !important;
}

#addProductModal .close-modal {
	display: none !important;
}

.show-name_recipient {
	display: flex;
}

.recepient-qty_block {
	padding-left: 36px !important;
}

.block_selects_options {
	max-width: 368px !important; 
	padding-left: 0 !important;
}

.names_recipient-holder {
	display: flex; 
}
.u-padding-left_36 {
	padding-left: 36px;
}

@media (max-width: 1400px) {
	.names_recipient-holder {
		display: flex; 
		justify-content: space-between;
	}
	.recepient-qty_block {
		padding-left: 16px !important;
	}
	.u-padding-left_36 {
		padding-left: 0;
	}
}

@media (max-width: 1355px) {
	.names_recipient-blocks {
		max-width: 250px;
	}
}

@media (max-width: 1160px) {
	.names_recipient-blocks {
		max-width: 210px;
	}
}
@media (max-width: 1240px) {
	.block_selects_options {
		max-width: 300px !important; 
	}
	
	.recepient-block {
		justify-content: space-between;
	}
}

@media (max-width: 1090px) {
	.block_selects_options {
		max-width: 260px !important; 
	}
}

@media (max-width: 990px) {
	.block_selects_options {
		max-width: 230px !important; 
	}
	.block_selects_options {
		max-width: 230px !important; 
	}
	.names_recipient-holder {
		display: flex; 
		justify-content: normal;
		flex-direction: column;
	}
	.names_recipient-blocks {
		max-width: 230px;
	}
}

@media (max-width: 860px) {
	.block_selects_options {
		max-width: 210px !important; 
	}
	.names_recipient-blocks {
		max-width: 210px;
	}
}

@media (max-width: 768px) {
	.block_selects_options {
		max-width: 368px !important; 
	}
	.names_recipient-blocks {
		max-width: 368px;
	}
	.recepient-qty_block {
		max-width: 200px !important;
		padding-left: 36px !important;
	}
	#styles-for-modal_popup-choose {
		justify-content: center;
	}
	
}

@media (max-width: 635px) {
	.recepient-qty_block {
		padding-left: 0 !important;
	}
	.block_selects_options {
		max-width: 318px !important;
	}
	.names_recipient-blocks {
		max-width: 318px;
	}
}

#addProductModal .names_recipient-blocks {
    max-width: 320px;
	padding-left: 0;
}

#addProductModal .names_recipient-holder {
	justify-content: space-between;
}

/********************************* 
start: OCST 
*********************************/

/* header */
.t-page-ocst .t-site-header__logo {
  max-width: fit-content;
}

@media (min-width: 48rem) {
  .t-page-ocst .t-site-header {
    display: none !important;
  }
}

/* basket */
.x-mini-basket__line {
  background-color: #f4f4f4;
  padding: 16px 16px 0 16px;
  box-sizing: border-box;
  margin: 0 !important;
}
.x-mini-basket__line:last-of-type {
  padding: 16px !important;
}
.x-mini-basket__line .global-basket_prod_name {
  font-size: 14px;
}

.x-mini-basket__cta.c-control-group {
  display: flex;
  gap: 1.5em;
}

.x-mini-basket__cta.c-control-group > * {
  width: 50%;
}

.x-mini-basket__total {
  border-top: 4px solid #f4f4f4;
}

/* footer */
.t-page-ocst .t-site-footer {
  padding: 3rem 0;
}
.t-page-ocst .t-site-footer section > p {
  white-space: nowrap;
  max-width: fit-content;
}

/********************************* 
end: OCST 
*********************************/

/********************************* 
start: NICE SELECT
*********************************/
/*nice-select div */
.select-wrapper {
  position: relative;
}

.select-label {
  font-family: 'Inter', sans-serif !important;
  position: absolute;
  left: 13px;
  top: 2px;
  pointer-events: none;
  color: var(--color-grey);
  font-size: 12px;
  margin-left: 1px;
}

.nice-select {
  height: 38px !important;
  width: 100% !important;
  float: none !important;
  background-color: transparent !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--color-brand);
  border-radius: 12px !important;
  border: 1px solid var(--color-grey) !important;
  padding: 10px 13px !important;
  padding-right: 40px !important;
  line-height: normal !important;
}

/*nice-select menu */
.nice-select .list {
  margin: 4px 0 0 0 !important;
  box-shadow: none !important;
  border: 1px solid var(--color-grey) !important;
}

/* arrow */
.nice-select:after {
  border-bottom: 2px solid #727272 !important;
  border-right: 2px solid #727272 !important;
  height: 6px !important;
  width: 6px !important;
  margin-right: 7px !important;
}

/* current option */
.nice-select span.current {
  display: block;
  transform: translateY(8px);
  color: #000000;
}

/* option  */
.nice-select .option {
  color: var(--color-grey) !important;
  padding: 0 13px !important;
  font-size: 12px !important;
}
.nice-select .option:hover,
.nice-select .option.selected,
.nice-select .option.focus {
  background-color: #f0f3f5 !important;
}

.nice-select .option.selected {
  color: #000000 !important;
  font-weight: normal !important;
  font-size: 13.5px !important;
  background-color: #f0f3f5 !important;
}

/* preferred shipping day styles */
.nice-select.checkout-shipping__preferred-select {
  height: 48px !important;
}
.nice-select.checkout-shipping__preferred-select .option {
  font-size: 13.5px !important;
}
.nice-select.checkout-shipping__preferred-select span.current {
  transform: translateY(5px);
  font-size: 15px !important;
}
.nice-select.checkout-shipping__preferred-select .option.selected {
  font-size: 15px !important;
}

/* use saved address */
label.checkout-step__form-label {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 0.25rem;
}
label .nice-select.checkout-step__form-select {
  border-radius: 2em !important;
  width: calc(50% - 12px) !important;
}

label .nice-select.checkout-step__form-select span.current {
  transform: translateY(0px);
}

/********************************* 
end: NICE SELECT
*********************************/
