﻿/* Scss Document */
@font-face {
  font-family: "Montserrat";
  src: url("/style/fonts/Montserrat/Montserrat-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/style/fonts/Montserrat/Montserrat-Bold.ttf");
  font-weight: 600;
  font-style: normal;
}
/* ELEMENT CMS - GENERAL CSS */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

html, body {
  height: 100%;
}

html, body, input, textarea {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 14px;
}

table {
  font-size: 1em;
  border-spacing: 0;
  border-collapse: collapse;
}

html, body, td, p, form, tr, div, input, textarea, h1, h2, h3, h4, h5, h6, h7, h8, h9 {
  margin: 0px;
  padding: 0;
  outline: 0px;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

/* ////////////////////////////////////////////////////////// GENERAL ////////////////////////////////////////////////// */
.global-container {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0 20px;
  line-height: 35px;
  height: 35px;
  cursor: pointer;
  color: #ffffff;
  background-color: #2394b1;
}
.btn:visited {
  color: #ffffff;
}
.btn:focus {
  color: #ffffff;
}
.btn:active {
  color: #ffffff;
}
.btn:hover {
  color: #ffffff;
}
.btn:visited {
  background-color: #2394b1;
}
.btn:focus {
  background-color: #2394b1;
}
.btn:active {
  background-color: #2394b1;
}
.btn:hover {
  background-color: #33363b;
}
.btn.red {
  background-color: #b21f2d;
}
.btn.red:visited {
  background-color: #b21f2d;
}
.btn.red:focus {
  background-color: #b21f2d;
}
.btn.red:active {
  background-color: #b21f2d;
}
.btn.red:hover {
  background-color: #33363b;
}
.btn.dark {
  background-color: #33363b;
}
.btn.dark:visited {
  background-color: #33363b;
}
.btn.dark:focus {
  background-color: #33363b;
}
.btn.dark:active {
  background-color: #33363b;
}
.btn.dark:hover {
  background-color: #43484c;
}
.btn.black {
  background-color: #202020;
}
.btn.black:visited {
  background-color: #202020;
}
.btn.black:focus {
  background-color: #202020;
}
.btn.black:active {
  background-color: #202020;
}
.btn.black:hover {
  background-color: #43484c;
}

input, select {
  border: none;
  background: #ffffff;
  line-height: 35px;
  height: 35px;
  padding: 0 10px;
}

input[type=file] {
  cursor: pointer;
}

/* /////////////////////////////////////////////////////////// HEADER ////////////////////////////////////////////////// */
header {
  background: #43484c;
  color: #ffffff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}

.logo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 20px;
}
.logo span {
  padding: 0 20px;
}
.logo span:nth-child(1) {
  padding: 0 20px;
}

.headbuttons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  flex-grow: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
}
.headbuttons a {
  text-decoration: none;
  padding: 0 20px;
  color: #939da7;
}
.headbuttons a:visited {
  color: #939da7;
}
.headbuttons a:focus {
  color: #939da7;
}
.headbuttons a:active {
  color: #939da7;
}
.headbuttons a:hover {
  color: #2394b1;
}
.headbuttons a:before {
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
}
.headbuttons a:nth-child(1):before {
  content: url(/style/images/icons/icon-clients-grey.png);
}
.headbuttons a:nth-child(2):before {
  content: url(/style/images/icons/icon-settings-grey.png);
}
.headbuttons a:nth-child(3):before {
  content: url(/style/images/icons/icon-profile-grey.png);
}
.headbuttons a:nth-child(4):before {
  content: url(/style/images/icons/icon-how-to-grey.png);
}

.headlogin div a {
  height: auto;
  line-height: 0;
  padding: 15px 20px;
}
.headlogin div a:before {
  display: inline-block;
  vertical-align: middle;
  padding-right: 10px;
  content: url(/style/images/icons/icon-login-white.png);
}

/* //////////////////////////////////////////////////////////// MAIN /////////////////////////////////////////////////// */
main {
  background: #eeeff3;
  flex-grow: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
}

.mainleft {
  display: none;
}

.mainright {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.mainright .mainbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.mainright .mrtop {
  background: #f1f4f2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  align-items: stretch;
}
.mainright .mrtop .mrtoptitle {
  flex-grow: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  padding: 0 20px;
}
.mainright .mrtop .mrtoptitle h1 {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
}
.mainright .mrtop .mrtopicons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.mainright .mrtop .mrtopicons a {
  text-decoration: none;
  text-align: center;
  padding: 20px;
  min-width: 160px;
  position: relative;
  color: #202020;
}
.mainright .mrtop .mrtopicons a:visited {
  color: #202020;
}
.mainright .mrtop .mrtopicons a:focus {
  color: #202020;
}
.mainright .mrtop .mrtopicons a:active {
  color: #202020;
}
.mainright .mrtop .mrtopicons a:hover {
  color: #2394b1;
}
.mainright .mrtop .mrtopicons a:before {
  display: block;
  padding-bottom: 10px;
}
.mainright .mrtop .mrtopicons a:nth-child(1):before {
  content: url(/style/images/icons/icon-transactions-black.png);
}
.mainright .mrtop .mrtopicons a:nth-child(2):before {
  content: url(/style/images/icons/icon-history-black.png);
}
.mainright .mrtop .mrtopicons a:nth-child(3):before {
  content: url(/style/images/icons/icon-profile-black.png);
}
.mainright .mrtop .mrtopicons a:hover, .mainright .mrtop .mrtopicons a.active {
  background: #ffffff;
}
.mainright .mrtop .mrtopicons a:hover:after, .mainright .mrtop .mrtopicons a.active:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* loading screen */
.loader {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  background: rgba(32, 32, 32, 0.95);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.loader.active {
  transform: translateY(0);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
.loader .loader-text {
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 60px;
}
.loader .loader-animation {
  color: #ffffff;
  font-size: 90px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 0 auto 80px auto;
  position: relative;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loadinganimation 1.7s infinite ease, round 1.7s infinite ease;
  animation: loadinganimation 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes loadinganimation {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes loadinganimation {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%, 95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%, 59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.transactions {
  padding: 20px;
  font-size: 13px;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.transactions .enrty-screen {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 100%;
}
.transactions .enrty-screen > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgba(32, 32, 32, 0.1);
  padding: 50px;
  border-radius: 3px;
}
.transactions .enrty-screen h2 {
  color: #2394b1;
  font-size: 34px;
  font-weight: 700;
  padding: 0 0 30px 0;
}
.transactions .enrty-screen > div > div:nth-child(2) {
  padding: 0 0 30px 0;
  font-size: 16px;
}
.transactions .enrty-screen .upload-file {
  width: 100%;
  position: relative;
}
.transactions .enrty-screen .upload-file input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.transactions .enrty-screen .upload-file .upload-field {
  width: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: background 0.3s ease-in-out;
  font-size: 15px;
}
.transactions .enrty-screen .upload-file .upload-field .success {
  display: none;
}
.transactions .enrty-screen .upload-file:hover .upload-field {
  background: rgba(255, 255, 255, 0.1);
}
.transactions .enrty-screen .upload-file input[type=file]:focus + .upload-field {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline: -webkit-focus-ring-color auto 5px;
}
.transactions .enrty-screen .upload-file input[type=file]:valid + .upload-field {
  border-color: #48b89f;
  background-color: #6dc6b2;
  color: #ffffff;
}
.transactions .enrty-screen .upload-file input[type=file]:valid + .upload-field .success {
  display: inline-block;
}
.transactions .enrty-screen .upload-file input[type=file]:valid + .upload-field .default {
  display: none;
}
.transactions .enrty-screen .import-files {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
  margin-top: 20px;
}
.transactions .enrty-screen .import-files a {
  line-height: 50px;
  height: 50px;
  padding: 0 40px;
  font-size: 16px;
  cursor: pointer;
}
.transactions .trans-filter {
  padding: 0 15px 10px 15px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.transactions .trans-filter input, .transactions .trans-filter select, .transactions .trans-filter .btn {
  font-size: 12px;
  line-height: 30px;
  height: 30px;
}
.transactions .trans-filter form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.transactions .trans-filter form > div {
  padding-right: 5px;
}
.transactions .trans-filter > div {
  padding-right: 5px;
}
.transactions .trans-filter > div:first-child {
  line-height: 30px;
  font-size: 12px;
  padding-right: 10px;
}
.transactions .trans-filter .paging {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background: #ffffff;
  border-radius: 3px;
  padding: 5px;
  box-shadow: 0 0 3px rgba(32, 32, 32, 0.3);
  position: absolute;
  z-index: 2;
  top: -10px;
  right: 0;
}
.transactions .trans-filter .paging .itemscount {
  position: relative;
  padding: 0 15px 0 10px;
  margin-right: 10px;
  line-height: 30px;
  font-size: 12px;
}
.transactions .trans-filter .paging .itemscount:after {
  content: "";
  display: block;
  width: 1px;
  position: absolute;
  right: 0;
  bottom: -5px;
  top: -5px;
  background: #eeeff3;
}
.transactions .trans-filter .paging ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.transactions .trans-filter .paging ul li a {
  display: block;
  padding: 0 5px;
  line-height: 30px;
  min-width: 30px;
  text-align: center;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  color: #939da7;
  margin: 0 2px;
}
.transactions .trans-filter .paging ul li a:hover, .transactions .trans-filter .paging ul li a.active {
  background: #2394b1;
  color: #ffffff;
}
.transactions .trans-filter .paging .paging-prev a, .transactions .trans-filter .paging .paging-next a {
  padding: 0;
  -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
}
.transactions .trans-filter .paging .paging-prev a:hover, .transactions .trans-filter .paging .paging-next a:hover {
  -webkit-transition: all ease-in-out 0.1s;
  transition: all ease-in-out 0.1s;
  -moz-transition: all ease-in-out 0.1s;
  -ms-transition: all ease-in-out 0.1s;
  -o-transition: all ease-in-out 0.1s;
  background: none;
  transform: scale(120%);
}
.transactions .trans-list {
  flex-grow: 2;
  -webkit-flex-grow: 2;
  -moz-flex-grow: 2;
  overflow: auto;
  height: calc(100vh - 250px) !important;
}
.transactions .trans-list::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.transactions .trans-list::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #e7e7e7;
  border: 1px solid #cacaca;
}
.transactions .trans-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #2394b1;
}
.transactions .trans-list table {
  width: 100%;
  position: relative;
  border-collapse: collapse;
}
.transactions .trans-list th {
  padding: 10px;
  text-align: left;
  font-size: 12px;
}
.transactions .trans-list td {
  padding: 10px;
  text-align: center;
}
.transactions .trans-list td:nth-child(1) {
  text-align: left;
}
.transactions .trans-list td:nth-child(2) {
  text-align: left;
}
.transactions .trans-list td:nth-child(3) {
  text-align: left;
}
.transactions .trans-list td:nth-child(4) {
  text-align: left;
}
.transactions .trans-list td:nth-child(6) {
  text-align: left;
}
.transactions .trans-list td:nth-child(10) {
  text-align: right;
}
.transactions .trans-list td:nth-child(11) {
  text-align: right;
}
.transactions .trans-list td:nth-child(12) {
  text-align: right;
}
.transactions .trans-list td:nth-child(14) {
  text-align: right;
}
.transactions .trans-list tr:nth-child(odd) td {
  background: rgba(32, 32, 32, 0.05);
}
.transactions .trans-list th {
  background: #939da7;
  border-right: 1px solid #eeeff3;
  color: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}
.transactions .trans-list td {
  fill: #2394b1;
}
.transactions .trans-list td a#edit {
  content: url(/style/images/icons/icon-edit-black.svg);
  width: 25px;
  filter: invert(47%) sepia(78%) saturate(461%) hue-rotate(145deg) brightness(90%) contrast(87%);
}
.transactions .trans-list td a#save {
  content: url(/style/images/icons/icon-save.svg);
  width: 20px;
}
.transactions .trans-list td a#delete {
  content: url(/style/images/icons/icon-remove-black.svg);
  width: 25px;
  filter: invert(16%) sepia(67%) saturate(4190%) hue-rotate(343deg) brightness(84%) contrast(90%);
}
.transactions .trans-list td:nth-child(2) input {
  max-width: 70px;
}
.transactions .trans-list td:nth-child(7) select {
  max-width: 200px;
}
.transactions .trans-list td:nth-child(8) input, .transactions .trans-list td:nth-child(9) input {
  max-width: 150px;
}
.transactions .trans-list td:nth-child(10) input, .transactions .trans-list td:nth-child(12) input, .transactions .trans-list td:nth-child(13) input {
  max-width: 100px;
}
.transactions .trans-list td:nth-child(11) input {
  max-width: 115px;
}
.transactions .trans-list td:nth-child(14) input {
  max-width: 60px;
}
.transactions .trans-bottom-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-top: 10px;
  /*
  position: fixed;
  bottom: 0;
  left: 0;
  */
  width: 100%;
  background: #fff;
}
.transactions .trans-bottom-row.notfixed {
  position: relative;
  background: none;
}
.transactions .trans-buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #43484c;
  padding: 15px 20px;
  font-size: 12px;
}
.transactions .trans-buttons .btn, .transactions .trans-buttons input[type=file] {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
}
.transactions .trans-buttons input[type=file] {
  background: #939da7;
}
.transactions .trans-buttons > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  /* zakomentirano za eToro 03.1.2023 gumb za sample download
  &:nth-last-child(2) {
      padding-right: 10px;

      & a {
          word-wrap: break-word;
          font-size: $font-normal - 4;
          line-height: $font-normal - 1;
          padding: 5px 20px 5px 40px;
          position: relative;

          &:before {
              content: url(/style/images/icons/icon-download-file.png);
              position: absolute;
              left: 10px;
          }
      }
  }
      */
}
.transactions .trans-buttons > div:first-child {
  white-space: nowrap;
}
.transactions .trans-buttons > div:last-child {
  padding-top: 10px;
}
.transactions .trans-buttons > div:last-child div {
  padding-right: 5px;
}
.transactions .trans-buttons > div:last-child .btn {
  background-color: transparent;
  border-color: #43484c;
  border-width: 1px;
  border-style: solid;
}
.transactions .trans-buttons > div:last-child .btn:visited {
  background-color: transparent;
}
.transactions .trans-buttons > div:last-child .btn:focus {
  background-color: transparent;
}
.transactions .trans-buttons > div:last-child .btn:active {
  background-color: transparent;
}
.transactions .trans-buttons > div:last-child .btn:hover {
  background-color: transparent;
}
.transactions .trans-buttons > div:last-child .btn:visited {
  border-color: #43484c;
}
.transactions .trans-buttons > div:last-child .btn:focus {
  border-color: #43484c;
}
.transactions .trans-buttons > div:last-child .btn:active {
  border-color: #43484c;
}
.transactions .trans-buttons > div:last-child .btn:hover {
  border-color: #202020;
}
.transactions .createreport {
  background: #43484c;
  padding: 10px 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: right;
  -moz-justify-content: right;
  -ms-justify-content: right;
  justify-content: right;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  flex-grow: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
}
.transactions .createreport > div {
  padding-right: 5px;
}
.transactions .createreport > div:nth-child(1) {
  width: 100%;
  padding-bottom: 10px;
}
.transactions .createreport > div:last-child {
  width: 100%;
  text-align: right;
  padding-top: 5px;
  color: #ffffff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: right;
  -moz-justify-content: right;
  -ms-justify-content: right;
  justify-content: right;
}
.transactions .createreport > div:last-child input {
  height: auto;
  line-height: auto;
  margin-right: 10px;
}
.transactions .createreport h3 {
  color: #ffffff;
  text-align: right;
}
.transactions .createreport .btn {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
}
.transactions .createreport #btnCreateReport {
  pointer-events: none;
  opacity: 0.5;
  background: #43484c;
}
.transactions .createreport #btnCreateReport.active {
  background: #2394b1;
  pointer-events: all;
  opacity: 1;
}
.transactions .createreport input, .transactions .createreport select {
  height: 40px;
  line-height: 40px;
  font-weight: 600;
}
.transactions .createreport input::-webkit-input-placeholder, .transactions .createreport select::-webkit-input-placeholder {
  color: #202020;
}
.transactions .createreport input#txtEmail {
  min-width: 250px;
}

/* /////////////////////////////////////////////////////////// FOOTER ///////////////////////////////////////////////// */
footer {
  background: #43484c;
  color: #939da7;
  padding: 30px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
  line-height: 2em;
}
footer h3 {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: font-normal2;
}
footer h4 {
  font-weight: 600;
}
footer > div {
  padding: 0 30px;
}
footer > div > div {
  padding-top: 20px;
}
footer > div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer > div ul li {
  list-style: none;
}
footer > div ul li a {
  color: #939da7;
  text-decoration: none;
}
footer > div ul li a:visited {
  color: #939da7;
}
footer > div ul li a:focus {
  color: #939da7;
}
footer > div ul li a:active {
  color: #939da7;
}
footer > div ul li a:hover {
  color: #939da7;
}
footer > div ul li a:hover {
  text-decoration: underline;
}
