/*--------------------------------------------------------------
## Custom Css 
--------------------------------------------------------------*/
:root {
  --rad: 0.7rem;
  --dur: 0.3s;
  --color-dark: #2f2f2f;
  --color-light: #fff;
  --color-brand: #c10100;
  --font-fam: "Lato", sans-serif;
  --height: 4 rem;
  --btn-width: 6rem;
  --bez: cubic-bezier(0, 0, 0.43, 1.49);
}
.contact-block .widget_information {
  margin-bottom: 55px;
}
.contact-block .widget-title {
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: #222222;
  margin-bottom: 17px;
  font-size: 18px;
}
.contact-block .widget_information ul li {
  font-size: 15px;
  padding-left: 40px;
  padding-top: 0;
  color: #444444;
  padding-bottom: 21px;
}
.contact-block .widget_information ul li:last-of-type {
  padding-bottom: 0;
}
.contact-block .widget_information ul li i {
  font-size: 20px;
  color: #c10100;
  top: 5px;
}
.contact-block .widget_information ul li span:nth-of-type(1) {
  display: block;
  font-weight: bold;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: #222222;
}
.contact-block .button {
  margin-bottom: 0;
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 150%;
}
/* page code voucher */
.container_code {
  box-sizing: border-box;
  height: 100%;
  max-width: 600px;
  margin: 50px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.container_code form {
  position: relative;
  width: 30rem;
  border: 2px solid;
  background: var(--color-brand);
  border-color: var(--color-brand);
  border-radius: var(--rad);
}
.container_code input,
button {
  height: var(--height);
  font-family: var(--font-fam);
  border: 0;
  color: var(--color-light);
  font-size: 1.8rem;
}
.container_code input {
  color: var(--color-dark);
}

.container_code input[type="search"] {
  outline: 0;
  width: 100%;
  background: var(--color-light);
  padding: 0 1.6rem;
  border-radius: var(--rad);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all var(--dur) var(--bez);
  transition-property: width, border-radius;
  z-index: 1;
  position: relative;
}

.container_code button {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: var(--btn-width);
  font-weight: bold;
  background: var(--color-brand);
  border-radius: 0 var(--rad) var(--rad) 0;
}

.container_code input:not(:-moz-placeholder-shown) {
  border-radius: var(--rad) 0 0 var(--rad);
  width: calc(100% - var(--btn-width));
}

.container_code input:not(:-ms-input-placeholder) {
  border-radius: var(--rad) 0 0 var(--rad);
  width: calc(100% - var(--btn-width));
}

.container_code input:not(:placeholder-shown) {
  border-radius: var(--rad) 0 0 var(--rad);
  width: calc(100% - var(--btn-width));
}
.container_code input:not(:-moz-placeholder-shown) + button {
  display: block;
}
.container_code input:not(:-ms-input-placeholder) + button {
  display: block;
}
.container_code input:not(:placeholder-shown) + button {
  display: block;
}

/*--------------------------------------------------------------
## Responsive 
--------------------------------------------------------------*/
@media only screen and (max-width: 849.98px) {
}

@media only screen and (max-width: 699.98px) {
}

@media only screen and (max-width: 549.98px) {
}

@media only screen and (min-width: 550px) {
}

@media only screen and (min-width: 700px) {
}

@media only screen and (min-width: 850px) {
  .contact-block .widget_information ul li {
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) {
}

@media only screen and (min-width: 1200px) {
}
