#mainWrapper {
	width: 100%;
	/* min-width: 760px; */
	height: 100%;
	margin: auto;
	background-color: #545454;
}
#body-container {
	margin: 0 auto;
	padding:0px;
}
#account-container {
	color: #ffffff;
 	width: 100%;
 	background-color: #ffffff;
}
#account-main {
  color: #ffffff;
  font-size: 14px;
  background-color: #545454;
}
#account-top-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
    padding: 15px 20px 15px 30px;
    border-bottom: 1px solid #5f5f5f;
    align-items: center;
    background: #2b2b2b;
}
@media screen and (max-width: 500px) {
  #account-top-section {
    display: none;
  }
}
.account-balance-wrapper {
	display: grid;
	grid-column: 1;
	grid-template-columns: repeat(3,min-content);
	grid-column-gap: 10px;
}
.balance-yourbalance { 
    display: grid;
    text-align: left;
    line-height: 16px;
    align-items: center;
}
.balance-main {
	font-weight: bold;
    font-size: 25px;
    display: grid;
    align-items: center;
}
.balance-refresh {
    display: grid;
    font-size: 25px;
    font-weight: bolder;
    align-items: center;
    cursor: pointer;
}
.balance-refresh-spinner {
  animation: rotate 1.5s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.account-button-normal {
    grid-row: 1;
    color: #EEE;
    background-color: #0d5c42;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 42px;
    padding: 0px 20px 0px 20px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;    
}
.account-button-normal:hover {
    background: #084632;
    transition: 0.5s;
}
.account-button-goback {
  background-color: #a38e73;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  line-height: 42px;
  padding: 5px 20px 5px 20px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  color: #fff;
}
.account-deposit-button {
	background-color: #ffd200;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	line-height: 42px;
	padding: 0px 20px 0px 20px;
	cursor: pointer;
  border-radius: 3px;
}
.account-deposit-button-wrapper {
	width: 100px;
}
.account-button-wrapper {
	display: grid;
	grid-column: 2;
	grid-auto-columns: max-content;
	grid-column-gap: 5px;
	justify-content: right;
}
#account-main-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-column-gap: 16px;
}

@media screen and (max-width: 535px) {
	.account-page-title { grid-row:1; }
	.account-button-wrapper { 
		grid-row:2;
		grid-column: 1;		
	}
}
@media screen and (max-width: 600px) {
	.account-button-wrapper { grid-column:1; }
	.account-button-normal {
		width: 100%;
		margin-bottom: 5px;	
		grid-row:auto;
	}
}

.title-bar {
	display: grid;
	align-items: center;
	height: 37px;
	background-color: #000000;
	color: #ffffff;
	text-align: left;
	font-weight: bold;
	font-size: 15px;
}
.title-item {
  background-color: #0d5c42;
  color: white;
  white-space: nowrap;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
  font-size: 15px;
}
.title-leftpadding {

}
.deposit-form-title {
  background-color: #b39b75;
  color: white;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.deposit-form-fill-wrapper {
	display: flex;
	padding: 5px;
  align-items: center;
  width: 100%;
}
.deposit-form-fill-left {
	width: 40%;
}
.deposit-form-fill-right {
	display: flex;
	float: right;
	min-width: 174px;
  width: 60%;
}

@media screen and (max-width: 480px) {
  .deposit-form-fill-right { min-width: auto; }
}
  
@media screen and (max-width: 380px) {
	.deposit-form-fill-right { 
		float: none;
    width: 100%;	
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: 20px;
	}

  .deposit-form-fill-right > strong{ 
    display: flex;
    align-items: center;
  }
	.deposit-form-fill-wrapper { 
    flex-direction: column;
    align-items: center;
  }
	.deposit-form-fill-wrapper { text-align: left; margin-bottom: 15px;}
	.deposit-form-fill-left { width:auto; }
}
  .deposit-form-fill-info {
      white-space: nowrap;
      align-items: center;
      display: flex;
  }
  /*.title-item:first-child {
  	padding-left: 20px;
  }*/
  /*.title-item:last-child {
      padding-right: 5px;
  }*/
  .title-leftpad {
    padding-left: 20px;
  }
  .title-rightpad {
    padding-right: 5px;
  }
  .content-item {
    padding: 5px;
    font-size: 13px;
  }
  .account-info-wrapper {
  }
  .account-wallet-funds {
  	display: grid;
  	grid-column: 1/3;
  }
  .account-row {
  	position: relative;
  	padding: 20px;
  	border-color: #e0e0e0;
  	border-width: 1px;
  	border-style: none none solid none;
  	text-align: left;
  }
  .account-row:last-child {
  	border-style: none none none none;
  }

  .grid-wallet-funds {
  	display: grid;
  	grid-template-columns: 1fr 1fr; 
  }
  .deposits-wrapper {
    display: grid;
    grid-template-columns: 5fr 2fr 2fr;
  	text-align: left;
  	align-items: center;
    background-color: #fff;
    width: 40%;
    min-width: 700px;
    max-width: 800px;
    margin: 40px auto;
    margin-bottom: 100px;
    box-shadow: 0px 0px 80px black;
    border-radius: 3px;
  }
@media screen and (max-width: 500px) {
  .deposits-wrapper { 
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin: unset;
    margin-bottom: unset;
    overflow-x: auto;
  }
}
.deposit-item {
	padding: 10px;
  color: #000;
}
.deposit-form-container {
	display: grid;
	text-align: left;
  background-color: #fff;
  color: #000;
  width: 40%;
  min-width: 700px;
  max-width: 800px;
  margin: 40px auto;
  margin-bottom: 40px;
  /*padding-bottom: 10px;*/
  border-radius: 3px;
}
.deposit-form-wrapper {
	/*padding: 10px;*/
  width: 69%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 20px 0;
}
.deposit-form-description {
	font-size: 12px;
	font-weight: bold;
	padding-top: 10px;
}
.account-wallet-wrapper {
	display: grid;
	grid-template-columns: 1fr 2fr;
  white-space: nowrap;
}
.account-balances-wrapper {
	display: grid;
	grid-template-columns: 1fr 6fr;
}
.account-wallet-balance {
	grid-column: 1;
	font-weight: bold;
	padding-left: 20px;
	padding-right: 20px;
}
.account-wallet-name {
	grid-column: 2;
}
.account-view-details {
	position: absolute;
	right: 0;
	top: 0;
	margin-top: 30px;
	color: #0c9bff;
}
.account-faq-wrapper {
	padding-top: 30px;
	text-align: left;
}
.account-faq-selected-wrapper {
	padding-left: 22px;
	padding-bottom: 15px;
}
.account-faq-subjects-wrapper {
	/*padding-top: 15px;*/
}
.account-faq-subject {
	color: #0c9bff;
	padding-bottom: 15px;
  cursor: pointer;
}
.account-faq-answer {
	color: #6b6b6b;
  display: none;
}
.account-faq-eval-bar {
	display: grid;
	align-items: center;
	padding-left: 21px;
	height: 37px;
	background-color: #e5e5e5;
	margin-bottom: 12px;
}
.account-faq-button {
	display: inline-block;
	height: 37px;
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	line-height: 42px;
	padding: 0px 20px 0px 20px;
	cursor: pointer;
  border-radius: 3px;
}
.button-yellow { background-color: #ffd200; }
.button-gray { background-color: #e5e5e5; }
.account-page-title {
	display: grid;
	text-align: left;
	align-items: end;
	font-size: 23px;
	font-weight: bold;
}
#account-deposits-section {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
}

.withdraws-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  text-align: left;
  width: 40%;
  min-width: 700px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 100px;
  box-shadow: 0px 0px 80px black;
  border-radius: 3px;
}

div#transfers_container {
  width: 44%;
  max-width: unset;
}

@media screen and (max-width: 500px) {
  .withdraws-wrapper { 
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin: unset;
    margin-bottom: unset;
  }
}
.withdrawals-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  text-align: left;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
  width: 40%;
  min-width: 700px;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 100px;
  box-shadow: 0px 0px 80px black;
  border-radius: 3px;
}
@media screen and (max-width: 500px) {
  .withdrawals-wrapper { 
    width: 100%;
    min-width: unset;
    max-width: unset;
    margin: unset;
    margin-bottom: unset;
    overflow-x: auto;
  }
}
.withdraw-item {
	display: grid;
	align-items: center;
	padding: 10px;
  background-color: #fff;
  color: #000;
}
.row-padding-big {
	padding: 30px 0px 30px 0px;
}

.deposit-type-wrapper {
	display: grid;
	grid-template-columns: 87px 3fr 1fr;
	padding-left: 21px;
	align-content: center;
  align-items: center;
  white-space: nowrap;

}
@media screen and (max-width: 500px) {
  .deposit-type-wrapper {
    padding-left: 15px;
    grid-template-columns: 60px 3fr 1fr;
  }
}
.withdraw-type-wrapper {
	display: grid;
	grid-template-columns: 87px 1fr;
	padding-left: 21px;
}
.deposit-icon {
	width: 80px;
	height: 47px;
	background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}
.deposit-name {
	font-weight: bold;
	font-size: 14px;
	padding-left: 22px;
  padding-right: 10px;
}
.status-box {
    display: grid;
    font-weight: bold;
    font-size: 12px;
    color: #ffffff;
    background-color: #a38e73;
    border-radius: 3px;
    text-align: center;
    align-items: center;
    margin-right: 10px;
    padding: 10px;
    white-space: nowrap;
}
.status-box:hover {
    background: #887863;
    transition: 0.5s;
}
#account-withdraw-section {
	display: grid;
	grid-template-columns: 3fr 2fr 1fr;
}
@media screen and (max-width: 600px) {
  #account-withdraw-section { display: none; }
}
.account-withdraw-info {
	grid-column: 1/4;
	background-image: url('/images/account/info-bg.png');
  background-size: 100px;
  padding: 30px 30px 20px 30px;
	text-align: left;
  background-repeat: no-repeat;
  background-position: right 20px bottom 20px;
	margin-bottom: 20px;
}
.info-title {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}
.info-content {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}
#account-transaction-section { padding-top: 15px; }
.transactions-wrapper {
	display: grid;
    grid-template-columns: 60px 100px 60px repeat(4,1fr);
    text-align: left;
}
.transactions-header {
	grid-column: 1/-1;
	background-color: black;
}
.transaction-row:nth-child(odd) {
	background-color: #f8f8f8;
}
.transaction-id {
	/*padding-left: 20px;*/
  display: flex;
  justify-content: center;
  align-content: center;
}
#account-transaction-controls {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: 25px 40px;
	grid-column-gap: 12px;
	text-align: left;
	padding: 0px 20px 20px 20px;
}

@media screen and (max-width: 450px) {
	#account-transaction-controls { grid-auto-flow: row; }
}

.transaction-control-label {
	font-weight: bold;
	font-size: 16px;
	padding-bottom: 5px;
}
@media screen and (max-width: 500px) {
  .transaction-control-label {
    padding-top: 5px;
  }
}

.transaction-control-button {
  background-color: #084632;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  line-height: 39px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
}
.noResult {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    text-align: center;
    padding: 15px 0px;
}
.procSuccess {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    margin-top: 10px;
    padding: 7px;
}
.warningText {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
    padding: 15px 10px;
}
#account-profile-section {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-column-gap: 55px;
  padding: 20px 50px;
}
.profile-buttons-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#profile-column-left {

}
#profile-column-right {

}
#profile-bottom-row {
	grid-column: 2/3;
	padding-top: 20px;
}
.profile-save-button {
    background-color: #084632;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    line-height: 47px;
    padding: 0px 35px 0px 35px;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    color: #EEE;
}
.chPersonalAns-form-container {
    width: 350px;
    margin: 0 auto;
}
@media screen and (max-width: 400px) { 
  .chPersonalAns-form-container { width: 100%; }
}

@media screen and (max-width: 770px) {
	#profile-column-left { grid-row: 2; }
	#profile-column-right { grid-row: 3; }
	#profile-bottom-row {
		grid-column: auto;
		grid-row: 4;
	}
	.deposit-form-container { 
		margin: 0px; 
		min-width: auto !important;
		width: 100% !important;
	} 
	#account-profile-section { grid-template-columns: repeat(1,1fr); }
}

#account-changemail-section {
    margin: 0 auto;
    width: 350px;
    padding-top: 10px;
    padding-bottom: 50px;
	text-align: left;
}
#account-transaction-history {
	padding-bottom: 10px;

}
@media screen and (max-width: 500px) {
  #account-transaction-history {
    overflow-x: auto;
  }
}
@media screen and (max-width: 500px) {
	#account-changemail-section {
		width: auto;
	}
}

.icon-bank { background-image: url('/images/account/payments/bank.svg'); }
.icon-cepbank { background-image: url('/images/account/payments/cepbank.png'); }
.icon-visa { background-image: url('/images/account/payments/visa.svg'); }
.icon-mastercard { background-image: url('/images/account/payments/mastercard.svg'); }
.icon-skrill { background-image: url('/images/account/payments/skrill.svg'); }
.icon-neteller { background-image: url('/images/account/payments/neteller.svg'); }
.icon-paykasa { background-image: url('/images/account/payments/paykasa.png'); }
.icon-astropay { background-image: url('/images/account/payments/astropay.png'); }
.icon-ecopayz { background-image: url('/images/account/payments/ecopayz.png'); }
.icon-qrcode { background-image: url('/images/account/payments/qrcode.svg'); }
.icon-papara { background-image: url('/images/account/payments/papara.svg'); }


#account-transaction-section {

}
#account-betslist-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 12px;
  text-align: left;
  padding: 0px 20px 20px 20px;
  align-items: center;
}

@media screen and (max-width: 500px) {
	#account-betslist-controls { 
    padding: 0px 5px 20px 5px;
	} 
}
.betslist-control-label {
  font-weight: bold;
  font-size: 15px;
  padding-bottom: 5px;
  padding-top: 10px;
}
.betslist-wrapper {
  display: grid;
  grid-template-columns: repeat(9,1fr);
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .betslist-wrapper {
    overflow-x: auto;
  } 
}
.betslist-mobile-margin {
  margin-left: 12px;
}

.deldb1 { background-color: #ECECEC; border-left: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; }
.deldb2 { background-color: #FAFAFA; border-left: 1px solid #e4e4e4; border-bottom: 1px solid #e4e4e4; }

/* ################################### SUCCESS PAYMENT ANIMATION START ################################### */ 
.check_mark {
  width: 80px;
  height: 130px;
  margin: 0 auto;
}

.hide{
  display:none;
}

.sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}

.sa-icon.sa-success {
  border-color: #4CAF50;
}

.sa-icon.sa-success::before, .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}

.sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}

.sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(76, 175, 80, .5);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}

.sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sa-icon.sa-success.animate::after {
  -webkit-animation: rotatePlaceholder 4.25s ease-in;
  animation: rotatePlaceholder 4.25s ease-in;
}

.sa-icon.sa-success {
  border-color: transparent\9;
}
.sa-icon.sa-success .sa-line.sa-tip {
  -ms-transform: rotate(45deg) \9;
}
.sa-icon.sa-success .sa-line.sa-long {
  -ms-transform: rotate(-45deg) \9;
}

.animateSuccessTip {
  -webkit-animation: animateSuccessTip 0.75s;
  animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
  -webkit-animation: animateSuccessLong 0.75s;
  animation: animateSuccessLong 0.75s;
}

@-webkit-keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
@-webkit-keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes animateSuccessTip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}

@keyframes animateSuccessLong {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}

.sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}

.sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@-webkit-keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
@keyframes rotatePlaceholder {
  0% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
  }
}
/* ################################### SUCCESS PAYMENT ANIMATION END ################################### */ 

.account-bets-results-info-wrapper {
    display: grid;
}
.account-bets-results-empty-wrapper {
  display: grid;
    text-align: center;
    justify-items: center;
    font-size: 17px;
    font-weight: bold;
    padding-top: 20px;
    padding-bottom: 20px;
}
.account-bets-results-info-icon {
    width: 100%;
    height: 105px;
    padding-bottom: 20px;
}
.account-bets-results-info-icon > img {
  width: 100px;
}

@media screen and (max-width: 710px){
  .deposit-form-wrapper {
    width: 69%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1000px){
  .profile-buttons-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .profile-save-button {
    margin-bottom: 10px;
  }

}

/*================== Transactions.php ================================*/
.transaction_wrapper {
    width: 80%;
    margin: 50px auto;
}

.transaction_grid_container {
    display: grid;
    grid-template-rows: 1fr 5fr auto;
      font-size: 15px;
}

div#grid_header_container {
    width: 100%;
    height: 40px;
    background-color: #16523f;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
}

.search_container {
    width: 100%;
    height: 100%;
}

.transaction_form_container {
    width: 100%;
    height: 100%;
}

form.agent_form {
    display: grid;
    height: 100%;
    grid-template-columns: 3fr 1fr 1fr 1fr;
}

form.user_form {
    display: grid;
    height: 100%;
    grid-template-columns: 1fr 1fr 1fr;
}

.form_label {
    height: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.form_input {
    width: 90%;
}

div.agent_submit {
    grid-column: 1 / 5;
    height: 40px;
}

div.user_submit {
    grid-column: 1 / 4;
    height: 40px;
}

input.submit_btn {
    background-color: #ffdf1b;
    height: 100%;
    width: 130px;
    border: none;
    font-weight: bold;
}

.result_container {
    display: grid;
    grid-auto-rows: minmax(40px, auto);
}

.result_row_grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: minmax(35px, auto);
    color: #fff;
}

.result_row_grid.result_header {
    background-color: #16523f;
}

.header_item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #16523f;
    color: #fff;
}

.result_item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
}

.total_row_grid {
    display: grid;
    grid-template-columns: 3fr 1fr 3fr 1fr;
  grid-column: 1 / -1;
}

.total_item {
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.method_total {
    font-size: 17px;
    color: #ffdf1b;
}

.neg_method {
  color: #ff082a;
}

.pos_method {
  color: #03e403;
}

div#no_result {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff082a;
}

@media screen and (max-width: 1000px){
  .transaction_wrapper{
    width: 100%;
      margin: 0;
  }

  div#choose_list_label {
      grid-area: choose;
  }

  div#type_label {
      grid-area: type;
  }

  div#dateFrom_label {
      grid-area: dateFrom;
  }

  div#dateTo_label {
      grid-area: dateTo;
  }

  div#subject_input_container {
      grid-area: subject_input;
  }

  div#type_input_container {
      grid-area: type_input;
  }

  div#dateFrom_input_container {
      grid-area: dateFrom_input;
  }

  div#dateTo_input_container {
      grid-area: dateTo_input;
  }

  div#search_submit_container {
      grid-area: submit;
  }

  form.agent_form {
      width: 100%;
      grid-template-areas: 'choose' 'subject_input' 'type' 'type_input' 'dateFrom' 'dateFrom_input' 'dateTo' 'dateTo_input' 'submit';
      grid-template-columns: 1fr;
  }

  form.user_form {
      width: 100%;
      grid-template-areas: 'type' 'type_input' 'dateFrom' 'dateFrom_input' 'dateTo' 'dateTo_input' 'submit';
      grid-template-columns: 1fr;
  }

  div#trans_id_label {
      grid-area: trans;
  }

  div#fromUser_label {
      grid-area: fromUser;
  }

  div#toUser_label {
      grid-area: toUser;
  }

  div#date_label {
      grid-area: date;
  }

  div#time_label {
      grid-area: time;
  }

  div#amount_label {
      grid-area: amount;
  }

  div#type_label {
      grid-area: type;
  }

  div#user_balance {
      grid-area: balance;
  }

  .result_row_grid {
      display: block;
  }

  .result_grid_group {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: minmax(40px, auto);
      margin: 15px 0;
  }

  .header_item {
    border: 1px solid #fff;
  }
}