/** ================== // INVOICE CSS START // ================== **/
body{
	padding: 0;
	margin: 0;
	font-family: "Inter", sans-serif;
	font-weight: normal;
	background: #f7f7f7;
	overflow-x: hidden;
	font-size: 16px;
	color: #000;
}
.invoice-section {
	margin: 100px;
}
.invoice-conteol{
	max-width: 1071px;
	margin: 0px auto;
	background: #fff;
	padding: 20px;
}
.invoice-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
.invoice-col-left {
	width: 600px;
}
.invoice-col-right {
	width: 335px;
	margin-right: 30px;
}
.logo-upload-box {
	width: 200px;
	height: 130px;
	border: 1px solid rgba(0,0,0,.1);
	border-radius: 4px;
	background-color: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color 0.3s;
	color: #bebebe;
	font-size: 17px;
	column-gap: 6px;
	font-family: "Inter", sans-serif;
}

.logo-upload-box:hover {
	border-color: #ccc;
}

input[type="file"] {
	display: none;
}

.full-col {
	width: 385px;
}
.form-control:focus{
	border-color: rgba(140,152,164,.25);
	outline: none;
	box-shadow: 0 0 1rem 0 rgba(140,152,164,.25);
}
.form-control {
	appearance: none;
	background-clip: padding-box;
	background-color: #fff;
	border: 1px solid;
	border-radius: 5px;
	color: #1e2022;
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	padding: .6125rem 1rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	width: 100%;
	border-color: rgba(196, 205, 213, .7);
	outline: none;
	font-family: "Inter", sans-serif;
}
.form-group {
	margin-top: 16px;
}
.form-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.form-group.haff-col {
	width: 48%;
}
.input-group-text {
	font-size: 13px;
	color: #8c98a4;
}
.form-group label {
	color: #777;
	font-size: 13px;
	padding-left: 10px;
	margin-bottom: 10px;
}
.form-control::placeholder{
	color: #777;
}
.invoice-title h3 {
	font-size: 38px;
	font-weight: 400;
	height: auto;
	margin: 0 0 5px;
	padding: 0 15px;
	text-align: right;
	font-family: "Inter", sans-serif;
	color: #1e2022;
}
.input-group-text {
	background: transparent;
}
.input-group .form-control {
	text-align: right;
	border-left: none;
}
.invoice-col-right .input-group .form-control {
	height: 37px;
}
.form-group.input-group {
	max-width: 170px;
	margin-left: auto;
}
.date-form {
	margin-top: 54px;
}
.form-col-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 7px;
}
.form-col-wrap label {
	margin-bottom: 0px;
	width: 57%;
	text-align: right;
	padding-right: 20px;
}
.form-col-wrap .form-control {
	width: 43%;
}

/* TABLE */

.table-wrapper {
	margin-top: 30px;
}
table {
	width: 100%;
	border-collapse: collapse;
}
thead {
	background-color: rgb(56, 127, 244);
	color: #fff;
}
th {
	padding: 8px 16px;
	text-align: left;
	font-weight: 400;
	font-size: 13px;
}
th:last-child {
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	padding-right: 40px;
}
th:first-child {
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	width: 677px;
}
td {
	padding: 10px 15px;
	border: 1px solid #ddd;
}
/* TABLE END */

.service-form .form-wrap {
	padding-right: 34px;
	position: relative;
}
.service-form .form-group {
	margin-top: 9px;
}
.service-form .form-group {
	width: 630px;
}
.service-form .form-control {
	height: 38px;
	line-height: 12px;
}
.service-form .haff-col {
	width: 88px;
}
.service-form .haff-col:last-child{
	text-align: right;
}
.service-form .input-group{
	margin-left: 0px;
	width: 118px;
	text-align: left;
}
.service-form .input-group .form-control{
	text-align: left;
	padding-left: 5px;
}
.amount {
	font-size: 13px;
	padding: 8px 16px;
	color: #777;
}
.item-btn{
	margin-top: 10px;
}
.btn-green {
	background: #fff;
	color: #009e74;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	border: 1px solid #009e74;
	border-radius: 4px;
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	text-transform: capitalize;
	padding: 8px 16px;
	column-gap: 5px;
	text-decoration:none;
}
.btn-green:hover {
	background: #009e74;
	color: #fff;
}
.btn-red {
    position: absolute;
    right: -10px;
    background: #fff;
    color: red;
    font-size: 13px;
    display: inline-flex ;
	margin-top: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    border: 1px solid red;
    border-radius: 4px;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s; 
    padding: 8px 10px; 
    text-decoration: none;
}
.btn-red:hover {
	background: red;
	color: #fff;
}
.invoice-bottom {
	margin-top: 13px;
}
.invoice-bottom .full-col {
	width: 502px;
}
.summary-wrap label {
	width: 55%;
}
.summary-wrap .input-group {
	width: 150px;
}
.summary-wrap .input-group .form-control {
	width: 70px;
	height: 37px;
}
.summary-wrap .input-group .form-control{
	text-align: left;
	border-left: 1px solid;
	border-color: rgba(196, 205, 213, .7);
}
.refresh-btn{
	transition: .4s all;
	cursor: pointer;
}
.refresh-btn:hover {
	background: #71869d;
}
.refresh-btn:hover i {
	color: #fff;
}
.add-rates-btn {
	text-align: right;
	margin: 7px 0px 0px 0px;
}
.btn-link {
	color: #009e74;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	padding: 8px 16px;
	font-family: "Inter", sans-serif;
}
.btn-link:hover {
	color: #007a5a;
}
.btn-link i {
	margin-right: 5px;
}
.download{
    margin-top: 40px;
    margin-bottom: 20px; 
    background: rgb(56, 127, 244);
    padding: 10px 25px;
    color: #fff; 
}
.currency{
    right: 0;
    margin: 0;
    position: absolute;
    top: -40px;
    float: right;
    border: 0;
}
.currency select{
    border: 0;
    border-radius: 0;
}
/** ================== // INVOICE CSS END // ================== **/
