


/* Transparent area on tap */
input,
textarea,
button,
select,
a,
* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}




/* display */

.hidden {
  visibility: hidden;
}

.block {
    display: block;
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  
  
  /* .row {
    flex-direction: row;
    
  } */

  .row.group {
    padding-top: 30px;
  }
  
  .column {
    flex-direction: column;
  }

  .m-t {
      margin-top: 20px;
  }
  

  .left {
    justify-content: start;
    text-align: left;
  }
  
  .right {
    justify-content: end;
    text-align: right;
  }

  
  .center-sm {
    justify-content: center;
  }

  .left-sm {
    justify-content: center;
  }

  .right-sm {
    justify-content: center;
  }


  .f-between {
    justify-content: space-between;
  }

  .f-around {
    justify-content: center;
  }

  .f-evenly {
    justify-content: space-evenly;
  }

@media only screen and ( min-width: 420px ) {
  .left-sm {
    justify-content: start;
  }

  .right-sm {
    justify-content: end;
  }

  
  .f-between {
    justify-content: space-between;
  }

  .f-around {
    justify-content: space-around;
  }
}
  
  .top {
    align-items: flex-start;
  }
  
  .nowrap {
    flex-wrap: nowrap;
  }
  
  .wrap {
    flex-wrap: wrap;
  }

  .inline-block {
      display: inline-block;
  }
  
  .inline-text {
      display: inline;
  }

  .w100, .w200 {
    width: 100%;
  }


  .w360 {
    width: 360px;;
  }

  .wm360 {
    max-width: 360px;;
  }

  .wide {
    width: 100%;
  }

  .z2 {
    z-index: 2;
  }
  
  .p-40 {
    padding-left: 60px;
    padding-right: 10px;
  }

  @media (max-width: 576px){
    .p-40 {
      padding-left: 0;
      padding-right: 0;
    }
  } 

  @media (min-width: 576px) {
    .w200 {
      width: 200px;
    }
  }
  
  
  /* position */
  
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }

  .oxo {
    /* top: 13px; */
    left: 16px;
  }

  @media only screen and (min-width: 576px) {
    .oxo {
      top: 0;
    }
  }
  
  
  /* align */
  
  .center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* about fonts */

  .n-ls { /* NO LETTER SPACING */
      letter-spacing: initial;
  }


  /* table */

  .table_div {
    overflow: auto;
  }

  .table_div table {
    table-layout: fixed;
  }


  /* scroller*/

  /* .scrolling-container {
    display: flex;
    justify-content: center;
    align-items: center;

    /* opacity: 0; */
    /* transition: opacity 1s ease; 
  } */

  .scrolling-scroller {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    overflow-y: clip;
    padding-top: 10px;


}

.scrolling-scroller::-webkit-scrollbar {
    visibility: hidden;
    height: 0;
}

.r-scroll, .l-scroll {
    width: 30px;
    background-color: seagreen;
    height: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: large;
    margin: 10px;
    margin-top: 13px;
    border: 1px solid seagreen;

    display: none;
    /* transition: opacity 2s ease; */
}






