  * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .col-1 {
    width: 8.333333333333333%;
  }
  .col-2 {
    width: 16.66666666666667%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33333333333333%;
  }
  .col-5 {
    width: 41.66666666666667%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33333333333333%;
  }
  .col-8 {
    width: 66.66666666666666%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33333333333333%;
  }
  .col-11 {
    width: 91.66666666666666%;
  }
  .col-12 {
    width: 100%;
  }
  .col-half {
    width: 49%
  }
  .col-third {
    width: 32.33333333333333%;
  }
  .col-fourth {
    width: 24%
  }
  .col-fifth {
    width: 19%
  }
  .justify-start {
    -webkit-box-pack:start;
    -ms-flex-pack:start;
    justify-content:flex-start
  }
  .justify-center {
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center
  }
  .justify-end {
    -webkit-box-pack:end;
    -ms-flex-pack:end;
    justify-content:flex-end
  }
  .justify-around {
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-around;
  }
  .justify-between {
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
  }
  .align-start {
    -webkit-box-align:start;
    -ms-flex-align:start;
    align-items:flex-start;
  }
  .align-center {
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
  }
  .align-end {
    -webkit-box-align:end;
    -ms-flex-align:end;
    align-items:flex-end;
  }
  .align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch
    }
  .flex {
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flexbox;
    display:-webkit-box;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -ms-flex-pack: justify;
    -ms-flex-direction: row;
  }
  .col-auto {
    width:auto
  }
  .col-grow {
    -webkit-box-flex:1;
    -ms-flex:1 1 auto;
    flex:1 1 auto;
  }
  
  .custom-calculator img {
    
    height:100%;
    max-width:100%;
    max-height:100%;
    /* display:block; */
  }
  
  .text-center {
    text-align: center
  }
  .text-right {
    text-align: right;
  }
  .text-left {
    text-align: left
  }