body {
    font-family: "Bai Jamjuree", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.card-link {
    display: inline-block;
    position: relative;
    background-color: #D0ECE7;
    border-radius: 4px;
    padding: 32px 24px;
    max-width: 262px;
    margin: 8px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;

    &:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: -16px;
        right: -16px;
        background: #00838d;
        height: 32px;
        width: 32px;
        border-radius: 32px;
        transform: scale(1);
        transform-origin: 50% 50%;
        transition: transform 0.25s ease-out;
    }

    &:hover:before {
        transform: scale(21);
    }
}

.card-link:hover {
    p {
        transition: all 0.3s ease-out;
        color: rgba(255, 255, 255, 0.8);
    }
    h3 {
        transition: all 0.3s ease-out;
        color: #ffffff;
      }
}

.col-amount {
    width: 195px;
}

.col-amount-sm {
    width: 125px;
}

.col-amount-xs {
    width: 110px;
}

.col-box {
    cursor: pointer;
    width: 100%;
    border: 2px solid #16A085;
    border-radius: 16px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    padding: 16px;
}

.col-box:hover {
    background-color: #A2D9CE;
}

.col-code {
    width: 175px !important;
}

.col-img {
    width: 95px;
}

.col-mgr {
    text-align: right !important;
    width: 135px;
}

.col-mgr-lg {
    text-align: right !important;
    width: 170px;
}

.col-mgr-sm {
    width: 115px;
}

.col-num {
    width: 85px;
}

.col-opt {
    text-align: center !important;
    width: 125px;
}

.col-row {
    text-align: center !important;
    width: 45px;
}

.col-status {
    text-align: center !important;
    width: 145px;
}

.content-footer {
    position: relative;
}

.content-ctrl-btn {
    position:absolute;
    right: 0px;
    bottom: 0px;
}

/* .data-item { */
    /* border-bottom: 1px solid #CCD1D1; */
/* } */

fieldset {
    border: 1px solid#ddd;
    padding: 12px;
}

.go-arrow {
    margin-top: -4px;
    margin-right: -4px;
    color: white;
    font-family: courier, sans;
}

.go-corner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 32px;
    height: 32px;
    overflow: hidden;
    top: 0;
    right: 0;
    background-color: #00838d;
    border-radius: 0 4px 0 32px;
  }

.i-date {
    background-color: #EDBB99;
}

.i-number {
    background-color: mediumaquamarine;
}

.i-number-primary {
    background-color: #A9CCE3;
}

.i-readonly {
    background-color: #E5E8E8;
}

.i-select {
    background-color: #dcafad;
}

.i-text {
    background-color: #FAE5D3;
}

.i-textarea {
    background-color: wheat;
}

input::-webkit-input-placeholder { /* For Chrome, Safari, etc. */
    opacity:1;
    transition: opacity 0.5s ease-in-out;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
}

input::-moz-placeholder { /* For Mozilla Firefox */
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

input:focus::-moz-placeholder {
    opacity: 0;
}

legend {
    font-size: 18px;
    padding: 0 10px; 
}

.score-box {
    transition: 0.3s;
    cursor: pointer;
}

.score-box:hover {
    transform: translate(0, -10px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}

.tsticky {
    position: relative;
}
.theader {
    position: sticky;
    top: 60px;
}