/* untuk input number */
* 
{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

body 
{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: arial;
  background-color: white;
  padding: 0px;
  margin: 0px;
}

.ctrl 
{
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparant;
  border-radius: 5px;
  font-size: 15px;
}

.ctrl__counter 
{
  position: relative;
  width: 100px;
  height: 50px;
  color: #333C48;
  text-align: center;
  overflow: hidden;
}

.ctrl__counter.is-input .ctrl__counter-num 
{
  visability: hidden;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.ctrl__counter.is-input .ctrl__counter-input 
{
  visability: visible;
  opacity: 1;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.ctrl__counter-input 
{
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  box-shadow: none;
  outline: none;
  border: none;
  color: #333C48;
  font-size: 15px;
  line-height: 50px;
  text-align: center;
  visability: hidden;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.ctrl__counter-num 
{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 50px;
  visability: visible;
  opacity: 1;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.ctrl__counter-num.is-increment-hide 
{
  opacity: 0;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-animation: increment-prev 100ms ease-in;
  animation: increment-prev 100ms ease-in;
}

.ctrl__counter-num.is-increment-visible 
{
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation: increment-next 100ms ease-out;
  animation: increment-next 100ms ease-out;
}

.ctrl__counter-num.is-decrement-hide 
{
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-animation: decrement-prev 100ms ease-in;
  animation: decrement-prev 100ms ease-in;
}

.ctrl__counter-num.is-decrement-visible 
{
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-animation: decrement-next 100ms ease-out;
  animation: decrement-next 100ms ease-out;
}

.ctrl__button 
{
  width: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  background-color: #8498a7;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

.ctrl__button:hover 
{
  background-color: #90a2b0;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

.ctrl__button:active 
{
  background-color: #778996;
  -webkit-transition: background-color 100ms ease-in;
  transition: background-color 100ms ease-in;
}

 @-webkit-keyframes
decrement-prev 
{  from 
    {
         opacity: 1;
         -webkit-transform: translateY(0);
         transform: translateY(0);
    }
}
 @keyframes
decrement-prev 
{  
    from 
    {
         opacity: 1;
         -webkit-transform: translateY(0);
         transform: translateY(0);
    }
}
@-webkit-keyframes
decrement-next 
{  
    from 
    {
         opacity: 0;
         -webkit-transform: translateY(-50px);
         transform: translateY(-50px);
    }
}
@keyframes
decrement-next 
{  
    from 
    {
         opacity: 0;
         -webkit-transform: translateY(-50px);
         transform: translateY(-50px);
    }
}
@-webkit-keyframes
increment-prev 
{  
    from 
    {
     opacity: 1;
     -webkit-transform: translateY(0);
     transform: translateY(0);
    }
}
@keyframes
increment-prev 
{  
    from 
    {
     opacity: 1;
     -webkit-transform: translateY(0);
     transform: translateY(0);
    }
}
@-webkit-keyframes
increment-next 
{  
    from 
    {
         opacity: 0;
         -webkit-transform: translateY(50px);
         transform: translateY(50px);
    }
}
@keyframes
increment-next 
{  
    from 
    {
         opacity: 0;
         -webkit-transform: translateY(50px);
         transform: translateY(50px);
    }
}


/*gambar segi*/
.gambarPersegi 
{
  object-fit: cover;
  width: 300px;
  height: 300px;
  opacity: 0.8;
}
.gambarPersegi:hover
{
  opacity: 1;
  transition: 0.5s;
}

.gambarPersegi2 
{
  object-fit: cover;
  width: 80px;
  height: 80px;
}

.gambarTransparant
{
    opacity: 0.8;
}
.gambarTransparant:hover
{
  opacity: 1;
  transition: 0.5s;
}

/*combobox*/
.styled-select 
{
    width: 240px;
    height: 25px;
    overflow: hidden;
    background: no-repeat right white;
    border: 1px solid #ccc;
}

.styled-select select 
{
    background: transparent;
    width: 240px;
    padding: 5px;
    font-size: 10pt;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 25px;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
}

/* button */
.button1 {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #5f6a73;
  width: 170px;
  height: 30px;
  border: 0;
  color: #FFFFFF;
  font-size: 9pt;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  margin: 5px;
}
.button1:hover,.form button:active,.form button:focus {
  background: #4f585f;
}


/*table*/
.table1 {
    border-collapse: collapse;
}
 
.table1, .td1{
    border: 1px solid black;
}