@media (min-width: 768px) {
  .product_container {
    grid-template-columns: auto auto auto auto auto; }

  #modalProductContainer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh; }
    #modalProductContainer .modalProductList {
      padding: 12px 5%;
      background-color: #c80e2d;
      border-right: 1px solid #eee;
      height: 100vh;
      display: flex;
      align-items: center; }
      #modalProductContainer .modalProductList .modalList a {
        min-width: 160px;
        display: block;
        padding: 12px 0px;
        border-radius: 3px;
        color: #fff;
        transition: .4s;
        font-size: 16px; }
        #modalProductContainer .modalProductList .modalList a:hover, #modalProductContainer .modalProductList .modalList a:focus {
          background-color: #bf0d2b;
          color: #fff;
          padding: 12px 24px; }
    #modalProductContainer .product {
      padding: 12px 5% 65px 5%;
      overflow-y: scroll;
      height: 100vh;
      display: flex;
      justify-content: flex-start;
      align-items: center; }
      #modalProductContainer .product .product_img {
        text-align: center;
        padding: 12px 0; }
        #modalProductContainer .product .product_img img {
          width: 100%; }
      #modalProductContainer .product .product_info p {
        margin: 12px 0;
        font-size: 14px;
        text-align: justify; }
      #modalProductContainer .product .product_info h2 {
        font-size: 18px; }
      #modalProductContainer .product .product_info h3 {
        font-size: 16px; } }
@media (max-width: 768px) {
  .product_container {
    grid-template-columns: auto auto; }

  #modalProductContainer {
    overflow-y: scroll;
    height: 100vh;
    padding-bottom: 53px; }
    #modalProductContainer .modalProductList {
      width: 100%;
      white-space: nowrap;
      overflow-x: scroll;
      padding: 12px 5%; }
      #modalProductContainer .modalProductList .modalList a {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 3px;
        background-color: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        color: #130c0c; }
        #modalProductContainer .modalProductList .modalList a:hover {
          background-color: #c80e2d;
          color: #fff; }
    #modalProductContainer .product {
      padding: 12px 5% 150px 5%; }
      #modalProductContainer .product .product_img {
        text-align: center;
        padding: 12px 0; }
        #modalProductContainer .product .product_img img {
          width: 100%; }
      #modalProductContainer .product .product_info p {
        margin: 12px 0;
        font-size: 14px;
        text-align: justify; }
      #modalProductContainer .product .product_info h2 {
        font-size: 18px; }
      #modalProductContainer .product .product_info h3 {
        font-size: 16px; } }
.product_container {
  display: grid;
  grid-gap: 10px 20px;
  padding: 12px; }
  .product_container .product {
    background-color: #fff;
    position: relative;
    padding-top: 24px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 2px; }
    .product_container .product h2 {
      font-weight: 500;
      margin: 24px 0; }
    .product_container .product p {
      margin: 18px 0;
      color: #130c0c;
      text-transform: uppercase; }
    .product_container .product button {
      width: 100%;
      background-color: #efefef;
      border: 0;
      text-transform: uppercase;
      font-weight: bold;
      padding: 12px 0;
      transition: background .4s;
      color: #333;
      cursor: pointer;
      border-bottom-left-radius: 2px;
      border-bottom-right-radius: 2px; }
      .product_container .product button:hover {
        background-color: #c80e2d;
        color: #fff; }
    .product_container .product a {
      position: absolute;
      cursor: pointer;
      display: none;
      top: 5%;
      right: 5%;
      font-size: 12px;
      color: #ababab; }
    .product_container .product:hover a {
      display: block; }

#_modalProduct {
  background-color: #fafafa;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 4; }
  #_modalProduct #_modalHead {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    #_modalProduct #_modalHead ._modalHeadInfo {
      width: 100%;
      background-color: #efefef;
      height: 53px;
      line-height: 53px;
      padding-left: 5%; }
    #_modalProduct #_modalHead ._closeModalProduct {
      display: inline-block;
      padding: 12px 24px;
      font-size: 24px;
      color: #000;
      background-color: #eaeaea;
      cursor: pointer; }
      #_modalProduct #_modalHead ._closeModalProduct:hover {
        background-color: #cacaca; }

/*# sourceMappingURL=product.css.map */
