@charset "UTF-8";

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.my-login-header-img{
    max-height: 100px!important;
}

.my-header-tabs{
    align-self: auto !important;
}

.my-table-fixed{
    height: 350px;
}

.my-right-align-container{
    text-align: right !important;
}

.my-card-row-detail{
    height: 32.2px;
}

.show-me{
    display:block;
}

.hide-me{
    display:none;
}

.my-sm{
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}
.my-md{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.mt-md{
    margin-top: 0.5rem;
}
.mb-md{
    margin-bottom: 0.5rem;
}

.btn.btn-magenta{
    color: #fff !important;
    background-color: #3f48cc !important;
    border-color: #3f48cc !important;
}

.btn-clear{
    height: 38px !important;
    padding: 8.45px 13px;
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

@media only screen and (max-width: 600px) {
    .my-login-header-img{
        max-height: 80px!important;
    }
    .my-header-tabs{
        width: 100%;
    }

    .my-table-fixed{
        height: auto;
    }

    .my-right-align-container{
        text-align: center !important;
    }

    .my-table-divider{
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .wrapper-responsive{
        width: 100%;
    }
    .btn-responsive{
        width: 100%;
        margin-top: 5px;
    }
}

.image-preview{
    max-width: 80px;
    max-height: 80px;
    margin: 10px;
    box-shadow: -3px 3px 5px #7e8299;
}

.purchase-image, .purchase-radio, .purchase-label{
    cursor: pointer;
}

.purchase-image {
    width: 100%;
    box-shadow: -3px 3px 3px grey;
}

.floating-btn{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.floating-btn.wa{
    background-color:#25d366;
}

.floating-btn i{
	color:#FFF;
	
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.loading-screen{
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #7e829923;
}

.loading-screen .loading-circle{
    position: absolute;
    top: 50%;
    left: 50%;

    z-index: 101;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: 
        radial-gradient(farthest-side,#3699ff 94%,#0000) top/8px 8px no-repeat,
        conic-gradient(#0000 30%,#3699ff);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation:s3 1s infinite linear;
}

@keyframes s3{ 
  100%{transform: rotate(1turn)}
}