/*** global ***/
@font-face {
  font-family: "Digital";
  src: url(../fonts/Digital.ttf) format("truetype");
}

body {
  background-color: #f1f1f1 !important;
}

a:hover {
  text-decoration: none !important;
}

.header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.welcomeLogo {
  display: flex;
  height: 85vh;
  align-items: center;
  justify-content: center;
}

.welcomeLogo img {
  width: 300px;
}

/*** login ***/
.loginBox {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.loginContent {
	width: 300px;
	height: 320px;
  background-color: #fff;
	border: 1px solid #b2b2b2;
	border-radius: 5px;
	box-shadow: 0 0px 15px rgba(150,150,150,0.5);
	padding: 60px 20px;
  position: relative;
	box-sizing: border-box;
}

.logoPG {
  position: absolute;
  top: -60px;
  left: 90px;
}

.nextLabel {
  margin-top: 19px;
}

.loginSubmit {
  margin-top: 21px;
  text-align: center;
}

.loginForgot {
  text-align: center;
  font-size: 12px;
  margin-top: 10px;
  color: #ff4d4d;
  text-decoration: underline;
  cursor: pointer;
}

/*** content ***/
.topBar {
  position: fixed;
  top: 0px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #002b6d;
  color: #fff;
  z-index: 1000;
}

.topBarFlag {
  flex: initial;
  width: 160px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
}

.topBarFlag.CZ {
  background-image: url(../img/flagCZ.svg);
}

.topBarFlag.SK {
  background-image: url(../img/flagSK.svg);
}

.topBarFlag.EN {
  background-image: url(../img/flagEN.svg);
}

.topBarFlag.UK {
  background-image: url(../img/flagUK.svg);
}

.topBarFlag.FR {
  background-image: url(../img/flagFR.svg);
}

.topBarFlag.PL {
  background-image: url(../img/flagPL.svg);
}

.topBarFlag.RU {
  background-image: url(../img/flagRU.svg);
}

.topBarFlag.TR {
  background-image: url(../img/flagTR.svg);
}

.topBarFlag.HU {
  background-image: url(../img/flagHU.svg);
}

.topBarFlag.ES {
  background-image: url(../img/flagES.svg);
}

.topBarHeader {
  flex: 1;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding-left: 200px;
}

.topBarLogout {
  flex: initial;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5px;
}

.topBarName {
  display: inline-block;
  font-size: 17px;
  font-weight: bold;
  padding-right: 10px;
  text-align: right;
  min-width: 1px;
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.topBarCompany {
  font-size: 13px;
  font-style: italic;
}

.sidePanel {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #e5e5e5;
  border-right: 1px solid #b2b2b2;
  color: #666;
  width: 160px;
  height: 100vh;
  z-index: 999;
}

.sidePanelMenu {
  flex: 1;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding-top: 55px;
  color: #666;
}

.sidePanelMenuItem {
  display: flex;
  justify-content: center;
  padding: 7px 0 0 0;
  cursor: pointer;
}

.sidePanelMenuItem.disabled {
  cursor: default;
}

.sidePanelMenuItem.disabled > .sidePanelMenuItemBox {
  background-color: #b2b2b2;
}

.sidePanelMenuItem:hover {
  text-decoration: none;
}

.sidePanelMenuItem:active {
  text-decoration: none;
}

.sidePanelMenuItemBox {
  padding: 13px;
  background-color: #002b6d;
  border-radius: 8px;
}

.sidePanelMenuItemIcon {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.sidePanelMenuItemIcon.HoReCa {
  background-image: url(../img/HRClogo.svg);
}

.sidePanelMenuItemIcon.oneWash {
  background-image: url(../img/AWSlogo.svg);
}

.sidePanelMenuItemIcon.tickets {
  background-image: url(../img/ticketsIcon.svg);
}

.sidePanelMenuItemIcon.faq {
  background-image: url(../img/faqIcon.svg);
}

.sidePanelMenuItemIcon.accounts {
  background-image: url(../img/accountsIcon.svg);
}

.sidePanelMenuItemIcon.companies {
  background-image: url(../img/companiesIcon.svg);
}

.sidePanelMenuItemIcon.settings {
  background-image: url(../img/settingsIcon.svg);
}

.sidePanelMenuItemIcon.statistics {
  background-image: url(../img/statisticsIcon.svg);
}

.sidePanelMenuItem.active {
  background-repeat: no-repeat;
  background-position: center right;
  background-image: url(../img/mainMenuArrow.svg);
}

.sidePanelMenuHeader {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}

.sidePanelMenuHeader:first-of-type {
  margin: 0px;
}

.mainContent {
  padding-left: 180px;
  padding-top: 70px;
  padding-right: 20px;
  padding-bottom: 20px;
}

/*** HoReCa ***/
.horecaTopMenuBox {
  height: 65px;
}

.topButton {
  display: inline-flex;
  align-items: center;
  width: 200px;
  height: 65px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.topButton.prices {
  background-image: url(../img/pricesHoreca.svg);
}

.topButton.prices.active {
  background-image: url(../img/pricesHorecaActive.svg);
}

.topButton.settings {
  background-image: url(../img/settingsHoreca.svg);
}

.topButton.settings.active {
  background-image: url(../img/settingsHorecaActive.svg);
}

.topButton.downloads {
  background-image: url(../img/downloadsHoreca.svg);
}

.topButton.downloads.active {
  background-image: url(../img/downloadsHorecaActive.svg);
}

.topButton.products {
  background-image: url(../img/productsHoreca.svg);
}

.topButton.products.active {
  background-image: url(../img/productsHorecaActive.svg);
}

.topButton.texts {
  background-image: url(../img/textsHoreca.svg);
}

.topButton.texts.active {
  background-image: url(../img/textsHorecaActive.svg);
}

.topButton.texts.active {
  background-image: url(../img/textsHorecaActive.svg);
}

.topButton:first-of-type {
  margin-left: 10px;
}

.horecaContent {
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  background-color: #fff;
  padding: 15px;
  margin-top: -1px;
}

.horecaCategories {
  margin-left: -15px;
  margin-bottom: 10px;
}

.horecaCategories img {
  width: 790px;
}

.awsCategories {
  display: inline-block;
}

.awsCategories img {
  width: 150px;
}

.formBox {
  display: flex;
  margin: 15px;
  padding: 20px 20px 20px 0;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
}

.productBoxImg {
  flex: initial;
  height: 160px;
  width: 130px;
  margin: 0 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  cursor: pointer;
}

.productImgModal {
  height: 420px;
  margin: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.productInfo {
  flex: 1;
}

.formLineBox {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.formLineBox.first {
  margin-top: 20px;
}

.formLineBox.logo {
  margin-bottom: 20px;
}

.formLineLabel {
  flex: initial;
  width: 70px;
  font-weight: bold;
}

.formLineLabel.products, .formLineLabel.categories {
  margin-top: 30px;
  margin-bottom: 10px;
}

.formLineInput {
  flex: initial;
}

.w90 {
  width: 90px;
}

.w100 {
  width: 100px;
}

.w175 {
  width: 175px;
}

.w200 {
  width: 200px;
}

.w570 {
  width: 570px;
}

.formLineRest {
  flex: 1;
  padding-left: 10px;
}

.formLineRest.left {
  padding-left: 0;
}

.warning {
  font-size: 14px;
  font-weight: bold;
  color: #dc3545;
}

.emailContentBox {
  margin-top: 40px;
}

.uploadChooseFileBox {
  margin-bottom: 20px;
}

#uploadedBox, #previewBox {
  display: inline-flex;
  flex-direction: column;
  width: 300px;
  height: 300px;
  background-color: #f9f9f9;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  padding: 15px;
  margin-right: 20px;
}

.uploadHeader, .uploadFooter {
  flex: initial;
  height: 30px;
  text-align: center;
  font-weight: bold;
}

.uploadFooter {
  padding-top: 5px;
}

#uploadedLogo, #previewLogo {
  flex: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.emailEditorHeader {
  font-weight: bold;
  margin-top: 30px;
}

.emailEditorBox {
  display: flex;
  align-items: center;
}

.emailEditorBoxLeft {
  flex: 1;
}

.emailEditorBoxRight {
  flex: initial;
  width: 150px;
}

.emailBody {
  margin-top: 15px;
}

.downloadItem {
  display: flex;
  align-items: center;
  height: 50px;
  padding-left: 65px;
  margin-bottom: 15px;
  background-position: left center;
  background-repeat: no-repeat;
}

.downloadItem.android {
  background-image: url(../img/downloadAndroid.svg);
}

.downloadItem.ios {
  background-image: url(../img/downloadIos.svg);
}

.downloadItem.manual {
  background-image: url(../img/downloadManual.svg);
}

.downloadItemTime {
  display: inline-block;
  margin-left: 10px;
  font-size: 12px;
  font-style: italic;
}

.productCategoryBox {
  display: inline-flex;
  flex-direction: column;
  width: 200px;
  height: 200px;
  background-color: #f9f9f9;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  padding: 15px;
  margin-right: 20px;
}

.productCategoryHeader {
  flex: initial;
  height: 30px;
  color: #002b6d;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.productCategoryImg {
  flex: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.productTitle {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

/*** filters ***/
.filtersBox {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 50px 20px 0px 160px;
  background-color: #e5e5e5;
  border-bottom: 1px solid #b2b2b2;
  z-index: 998;
}

.filtersSubBox {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 40px;
}

.filtersSubBoxAdd {
  flex: initial;
  width: 100px;
  text-align: left;
  padding-left: 20px;
}

.filtersSubBoxHeader {
  flex: 1;
  text-align: left;
  padding-left: 20px;
  font-size: 22px;
  font-weight: bold;
  color: #666;
}

.filtersSubBoxFilter {
  flex: 1;
  text-align: right;
}

.filtersSubBoxFilter form {
  margin-bottom: 0px;
}

.filtersAlign {
  height: 35px;
}

.filterLabel {
  font-size: 12px;
}

.multiselect.dropdown-toggle {
  min-width: 108px;
  max-width: 108px;
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*** buttons ***/
.mainButtonBox {
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  background-color: #fff;
  margin: 5px 0;
  cursor: pointer;
}

.mainButtonBox.inactive {
  filter: grayscale(100%);
}

.mainButtonInfo {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  font-size: 14px;
}

.mainButtonInfoDate {
  font-style: italic;
}

.mainButtonInfoAuthor {
  font-weight: bold;
}

.mainButtonInfoSubject {
  margin-top: 5px;
  font-size: 17px;
  font-weight: bold;
  min-width: 1px;
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mainButtonInfoCompany {
  font-size: 17px;
  font-weight: bold;
}

.mainDealerBox {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.mainDealerName, .mainDealerEmail {
  flex: initial;
  width: 250px;
  background-image: url(../img/mainDealer.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  padding-left: 40px;
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mainDealerEmail {
  background-image: url(../img/emailIcon.svg);
  font-style: italic;
}

.mainButtonFile {
  flex: initial;
  width: 50px;
  min-height: 50px;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url(../img/fileAttached.svg);
}

.mainButtonAccounts {
  flex: initial;
  width: 100px;
}

.mainButtonAppBox {
  flex: initial;
  width: 190px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mainButtonAppBox.dealer {
  width: 320px;
}

.mainButtonAppHoreca, .mainButtonAppAWS, .mainButtonAppPrices, .mainButtonAppSettings {
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 20px;
}

.mainButtonAppHoreca {
  background-image: url(../img/HRClogoInactive.svg);
}

.mainButtonAppAWS {
  background-image: url(../img/AWSlogoInactive.svg);
  margin-right: 0px;
}

.mainButtonAppPrices {
  background-image: url(../img/priceDealerInactive.svg);
}

.mainButtonAppSettings {
  background-image: url(../img/settingsDealerInactive.svg);
}

.mainButtonAppHoreca.active {
  background-image: url(../img/HRClogoActive.svg);
}

.mainButtonAppAWS.active {
  background-image: url(../img/AWSlogoActive.svg);
}

.mainButtonAppPrices.active {
  background-image: url(../img/priceDealerActive.svg);
}

.mainButtonAppSettings.active {
  background-image: url(../img/settingsDealerActive.svg);
}

.mainButtonAccounts {
  height: 40px;
  background-image: url(../img/mainButtonAccounts.svg);
  background-repeat: no-repeat;
  background-position: right center;
  font-family: Digital;
  font-size: 30px;
  color: #3771c8;
  text-align: right;
  padding-right: 40px;
}

.dealerName {
  font-size: 17px;
  font-weight: bold;
  min-width: 1px;
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
  background-image: url(../img/mainButtonAccounts.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 23px;
  padding-left: 35px;
}

.dealerName.mainDealer {
  background-image: url(../img/mainDealer.svg);
}

.dealerEmail {
  background-image: url(../img/emailIcon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  margin-top: 5px;
  padding-left: 35px;
  font-style: italic;
}

.mainDealerEmail {
  background-image: url(../img/emailIcon.svg);
  font-style: italic;
}

.dealerTicketsCount {
  flex: initial;
  width: 61px;
  height: 30px;
  background-image: url(../img/dealerTicketsCount.svg);
  background-repeat: no-repeat;
  background-position: center center;
  font-family: Digital;
  font-size: 23px;
  color: #fff;
  text-align: center;
  padding-right: 5px;
}

.mainButtonType, .mainButtonStatus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 10px;
}

.mainButtonType {
  width: 95px;
}

.mainButtonChange {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 10px;
}

.mainButtonStatusBox {
  flex: initial;
  text-align: right;
  width: 230px;
  padding-right: 20px;
}

.mainButtonType.question {
  background-color: #de87aa;
}

.mainButtonType.web {
  background-color: #ab37c8;
}

.mainButtonType.android {
  background-color: #5fd38d;
}

.mainButtonType.ios {
  background-color: #3771c8;
}

.mainButtonType.other {
  background-color: #916f7c;
}

.mainButtonStatus.new {
  background-color: #ff5555;
}

.mainButtonStatus.author {
  background-color: #cd87de;
}

.mainButtonStatus.support {
  background-color: #ff9955;
}

.mainButtonStatus.solved {
  background-color: #37c871;
}

.mainButtonStatus.closed {
  background-color: #b3b3b3;
}

.ticketModalHeader, .ticketModalFooter {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.ticketModalHeader .mainButtonFile {
  min-height: 30px;
  background-size: contain;
  cursor: pointer;
}

.ticketModalHeader .mainButtonInfo {
  padding-left: 15px;
}

.ticketStatusBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: initial;
  width: 170px;
  padding-right: 15px;
}

.ticketStatus {
  height: 45px;
  width: 45px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ticketStatus.new {
  background-image: url(../img/ticketsStatusNew.svg);
}

.ticketStatus.support {
  background-image: url(../img/ticketsStatusSupport.svg);
}

.ticketStatus.author {
  background-image: url(../img/ticketsStatusAuthor.svg);
}

.ticketStatus.solved {
  background-image: url(../img/ticketsStatusSolved.svg);
}

.ticketStatus.closed {
  background-image: url(../img/ticketsStatusClosed.svg);
}

.ticketType {
  height: 20px;
  width: 90px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: -5px;
}

.ticketType.question {
  background-image: url(../img/ticketTypeQuestion.svg);
}

.ticketType.web {
  background-image: url(../img/ticketTypeWeb.svg);
}

.ticketType.android {
  background-image: url(../img/ticketTypeAndroid.svg);
}

.ticketType.ios {
  background-image: url(../img/ticketTypeiOS.svg);
}

.ticketType.other {
  background-image: url(../img/ticketTypeOther.svg);
}

.ticketModalContent {
  overflow-y: auto;
  overflow-x: hidden;
  padding: 15px;
}

.ticketModalFooter {
  border-top: 1px solid #e9ecef;
  padding: 0;
  border-bottom: 0;
}

.ticketModalFooter textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  margin-right: 15px;
}

.ticketModalFooter form {
  display: flex;
  padding: 15px;
  width: 100%;
  align-items: center;
  margin-bottom: 0px;
}

.ticketChatBubbleAuthorBox {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-left: 40px;
  margin-top: 30px;
}

.ticketChatBubbleSupportBox {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-right: 40px;
  margin-top: 40px;
}

.ticketChatBubbleAuthor, .ticketChatBubbleSupport {
  max-width: 80%;
  font-size: 13px;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  background-repeat: no-repeat;
}

.ticketChatBubbleAuthor p:last-of-type {
  margin-bottom: 0px !important;
}

.ticketChatBubbleSupport p:last-of-type {
  margin-bottom: 0px !important;
}

.ticketChatBubbleAuthor {
  background-color:#f2f2f2;
  padding: 15px;
}

.ticketChatBubbleSupport {
  padding: 15px;
}

.ticketChatBubbleIconAuthor, .ticketChatBubbleIconSupport {
  position: absolute;
  top: -25px;
  width: 50px;
  height: 50px;
  border: 1px solid #b2b2b2;
  border-radius: 25px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.ticketChatBubbleIconAuthor {
  left: -25px;
  background-image: url(../img/authorChat.svg);
  background-color: #f2f2f2;
}

.ticketChatBubbleIconSupport {
  right: -25px;
  background-image: url(../img/supportChat.svg);
  background-color: #fff;
}

.ticketChatBubbleTime {
  font-size: 11px;
  font-style: italic;
  margin-bottom: 8px;
}

.ticketChatSeparator {
  border: 1px dashed #e5e5e5;
  margin-top: 10px;
  margin-bottom: 10px;
}

.ticketChatSeparator:last-of-type {
  display: none;
}

.modalContent {
  padding: 15px;
}

.modalLineBox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.modalLineBox:last-of-type {
  margin-bottom: 0px;
}

.modalLineLabel {
  flex: initial;
  width: 110px;
  text-align: right;
  padding-right: 10px;
  font-weight: bold;
}

.modalLineLabel.company {
  width: 250px;
}

.modalInput {
  flex: 1;
}

.modalInput.narrow {
  flex: initial;
  width: 200px;
}

.modalLineBox textarea {
  height: 200px;
}

.modalLineCheckboxBox {
  width: 100%;
}

/*** faq ***/
.mb-0 > a {
  display: inline-block;
  width: 100%;
  padding:0.75rem 1.25rem;
}

.card {
  margin-bottom: 5px;
}

.card-header {
  padding: 10px 0 !important;
  background-color: #f0f8fb !important;
}

.card-block {
  background-image: url(../img/faqIconDetailAnswer.svg);
  background-position: left 15px center;
  background-repeat: no-repeat;
  padding: 20px 20px 20px 80px;
}

a.collapse[aria-expanded="true"] {
  padding-left: 80px !important;
  background-image: url(../img/faqIconDetailCollapsed.svg);
  background-position: left 15px center;
  background-repeat: no-repeat;
}

a.collapse[aria-expanded="false"] {
  padding-left: 80px !important;
  background-image: url(../img/faqIconDetail.svg);
  background-position: left 15px center;
  background-repeat: no-repeat;
  min-width: 1px;
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*** settings ***/
.settingsPasswordBox {
  width: 400px;
  height: 230px;
  background-color: #fafafa;
  border: 1px solid #b2b2b2;
  border-radius: 8px;
  padding: 15px;
}

.settingsLineBox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.settingsLineBox:last-of-type {
  margin-bottom: 0px;
}

.settingsLabel {
  flex: initial;
  width: 170px;
  text-align: right;
  font-size: 13px;
  padding-right: 10px;
  font-weight: bold;
}

.settingsInput {
  flex: 1;
}

/*** bootstrap tune ***/
.btn {
  cursor: pointer;
}

form {
  margin-bottom: 0px !important;
}

@media (min-width: 576px) {
.modal-dialog {
  max-width: 900px !important;
}

.sidePanelMenuItemBox {
  width: 70px;
  height: 70px;
}

.ticketModalContent {
  min-height: 275px;
  max-height: 275px;
}
}

@media (min-width: 1370px) {
.modal-dialog {
  max-width: 1200px !important;
  margin: 80px auto !important;
}

.sidePanelMenuItemBox {
  width: 100px;
  height: 100px;
}

.ticketModalContent {
  min-height: 400px;
  max-height: 400px;
}
}

.modal-header {
  cursor: move;
  background-color: #f0f8fb;
  color: #548dd4;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.close {
  color: #548dd4 !important;
  cursor: pointer;
}

.modal-body {
  padding: 0px !important;
}

.modal-footer form {
  margin-bottom: 0px;
}

.btn-xs {
    padding: 3px 4px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    border-radius: 3px !important;
}

.btn-argument {
  margin-top: 20px;
}

.multiselect-container>li>a>label {
    padding: 3px 15px 3px 15px !important;
}

.workingBox {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  z-index: 2000;
}

.workingSubBox {
  width: 150px;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../img/working.svg);
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 15px;
}

/*** checkbox ***/
input[type=checkbox].checkbox {
	position:absolute;
	z-index:-1000;
	left:-1000px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height:1px;
	width:1px;
	margin:-1px;
	padding:0;
	border:0;
}

input[type=checkbox].checkbox + label.checkboxLabel {
	padding-left:20px;
	height:20px;
	display:inline-block;
	line-height:20px;
	background-repeat:no-repeat;
	background-position: 0 0;
	font-size:20px;
	vertical-align:middle;
	cursor:pointer;
}

input[type=checkbox].checkbox:checked + label.checkboxLabel {
	background-position: 0 -20px;
}

input[type=checkbox][disabled].checkbox:checked + label.checkboxLabel {
	background-image: url(../img/checkboxDisabled.svg);
  background-position: 0 0;
}

label.checkboxLabel {
	background-image:url(../img/checkbox.svg);
	user-select: none;
  margin-bottom: 0px;
}

/**** radio ***/
input[type=radio].radio {
	position:absolute;
	z-index:-1000;
	left:-1000px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	height:1px;
	width:1px;
	margin:-1px;
	padding:0;
	border:0;
}

input[type=radio].radio + label.radioLabel {
	padding-left: 22px;
	height: 15px;
	line-height: 16px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: 0 0;
	vertical-align: middle;
	cursor: pointer;
}

input[type=radio].radio:checked + label.radioLabel {
	background-position: 0 -15px;
}

label.radioLabel {
	background-image: url(../img/radio.svg);
	user-select: none;
}

.noty_body {
  text-align: center;
  font-weight: bold;
}

.noty_buttons {
  text-align: center;
  border-top: none !important;
}

.noty_buttons .btn {
  width: 80px;
  margin: 0 10px;
}

hr.line {
  border: 0;
  height: 1px;
  margin: 20px 0;
  background-image: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.75), rgba(0,0,0,0));
}
