<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cart-delivery-wrapper
{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}
.cart-delivery-inner
{
  width: 100%;
  max-width: 1200px;
}
.delivery-types-nav
{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}
.delivery-types-nav-btn
{
  width: auto;
  height: 36px;

  border: 0;
  background: #28381850;

  box-sizing: border-box;
  padding: 0 24px;

  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #fff;


  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;

  transition: all .25s ease-out;
}
.delivery-types-nav-btn:hover,
.delivery-types-nav-btn.active
{
  background: #283818;
  color: #fff;
}

.delivery-types-content
{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.delivery-types-content-item
{
  width: 100%;
}

.address-suggest-wrapper
{
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  position: relative;
}
.address-suggest
{
  width: 100%;
  border: 1px solid #E6E6E6;
  background: #FFFFFF;
  height: 46px;
  line-height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  font-family: 'Ysabeau Infant', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
}
.address-suggest-list
{
  width: 100%;
  display: none;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  box-sizing: border-box;
  padding: 0;
  background: #fff;
  border-left: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;

  position: absolute;
  top: 75px;
  left: 0;
}
.address-suggest-list.active
{
  display: flex;
}

.address-suggest-list-item
{
  width: 100%;
  height: 46px;

  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  text-decoration: none;

  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 120%;
  text-decoration: none;
  text-align: left;

  border: 0;
  background: #fff;
  transition: all .25s ease-out;
  cursor: pointer;
}
.address-suggest-list-item:hover
{
  background: #f2f2f2;
}
.address-suggest-label
{
  font-family: 'Ysabeau Infant', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #4D4D4D;
  margin: 0 0 0.5rem 0;
}

.select-custom-tk
{
  width: 100%;
  border: 1px solid #E6E6E6;
  background: #FFFFFF;
  height: 46px;
  line-height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
  font-family: 'Ysabeau Infant', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
}
</pre></body></html>