/*!****************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./src/styles/reset.css ***!
  \****************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
} 
/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/
body {
  background-color: #e6b1d8;
}
body .main-section {
  margin: auto;
  display: flex;
  padding: 20px 100px;
  flex-direction: row;
  justify-content: space-between;
}
body .main-section .transaction-section, body .main-section .overview-section {
  width: 45%;
  padding: 20px;
  background-color: rgb(243, 234, 240);
  border-radius: 36px;
  border: 5px solid purple;
}
body .main-section .transaction-section .navigation-bar, body .main-section .overview-section .navigation-bar {
  margin: auto;
  display: flex;
  justify-content: center;
}
body .main-section .transaction-section .navigation-bar .transaction-button, body .main-section .overview-section .navigation-bar .transaction-button {
  margin: 0 6px;
  background-color: rgb(228, 141, 204);
  border-radius: 10px;
  border-style: none;
  color: #08000d;
  font-size: 14px;
  font-weight: 500;
  line-height: 5px;
  margin: 0px 5px;
  padding: 8px 13px;
  text-align: center;
  cursor: pointer;
}
body .main-section .transaction-section .navigation-bar .transaction-button:hover, body .main-section .overview-section .navigation-bar .transaction-button:hover {
  background-color: rgb(160, 160, 255);
  color: white;
}
body .main-section .transaction-section .navigation-bar .clicked-display-text-color, body .main-section .overview-section .navigation-bar .clicked-display-text-color {
  background-color: rgb(160, 160, 255);
  color: white;
}
body .key-group {
  display: flex;
  justify-content: center;
}
body .calc-btn {
  color: #a655a6;
  background-color: #f2e2f5;
  font-size: 15px;
  padding: 15px;
  margin: 10px;
  border-radius: 10px;
  width: 75px;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid purple;
}
body .calc-btn:hover {
  background-color: rgb(160, 160, 255);
  color: white;
}
body #keyAddTransaction {
  width: 100%;
}
body #keydot {
  padding-top: 0px;
  font-size: 64px;
  line-height: 0;
  vertical-align: middle;
  text-align: center;
  padding-bottom: 32px;
}
body .screen {
  padding: 10px;
  width: 100px;
  margin: auto;
  text-align: center;
  font-size: 50px;
}
body .top-of-app {
  display: flex;
  justify-content: space-between;
  width: 98%;
}
body .middle-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
body .middle-section .category-section, body .middle-section .calculator-section {
  border: solid 4px purple;
  height: auto;
  width: 50%;
  margin: 5px;
  padding: 5px;
  border-radius: 10px;
}
body .inflation-switch {
  position: relative;
  display: inline-block;
  width: 128px;
  height: 34px;
}
body .inflation-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
body .checkbox {
  position: fixed;
}
body .switch {
  display: flex;
  flex-direction: row-reverse;
}
body .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(228, 141, 204);
}
body .slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
  background-color: rgba(255, 255, 255, 0.838);
}
body input:checked + .slider {
  background-color: purple;
}
body input:focus + .slider {
  box-shadow: 0 0 1px #741173;
}
body input:checked + .slider:before {
  transform: translateX(26px);
}
body .slider.round {
  border-radius: 34px;
  width: 72%;
  height: 50%;
}
body .slider.round:before {
  border-radius: 100%;
}

.inflation-text {
  position: absolute;
  z-index: 10;
  color: purple;
  font-size: 17px;
  font-weight: 600;
  left: 19px;
}

.main-header {
  display: flex;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 65px;
  justify-content: center;
  color: #550055;
}

.empty-display-text-color {
  color: #d6c2c2;
}

.active-display-text-color {
  color: #a655a6;
}

.top-section {
  margin: 3px 10px;
  display: flex;
  justify-content: space-between;
}

#transaction-date {
  background-color: #f2e2f5;
  color: #a655a6;
  border-radius: 4px;
  border: 2px solid purple;
}

#frequency-select {
  background-color: #f2e2f5;
  color: #a655a6;
  border-radius: 4px;
  border: 2px solid purple;
}

.bottom-calculator-section {
  margin: 0px 0px -8px 2px;
  padding: 2px;
  width: 97%;
  height: 75px;
  border: 4px solid purple;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
}

.category-button {
  border: 3px solid purple;
  border-radius: 13px;
  margin: 5px;
  min-width: 100px;
  min-height: 50px;
  color: #a655a6;
  background-color: #f2e2f5;
}

.bottom-calculator-section::-webkit-scrollbar {
  display: none;
}

#instructions-btn {
  width: 131px;
  height: 35px;
  display: flex;
  margin: 10px 0px 0px 56px;
  border: 2px solid purple;
  border-radius: 4px;
  font-size: 23px;
  font-family: ui-serif;
  background-color: #3f193f;
  color: #ffdbff;
  cursor: pointer;
}

.github-img {
  width: 30px;
  height: 30px;
  margin: 10px 5px 0px 0px;
}

.instructions-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
.modal-info {
  background-color: #ffe1ff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}

.modal-info-text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 20px;
  color: purple;
  align-content: center;
  align-items: center;
  height: 275px;
  justify-content: space-between;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.draggable {
  padding: 1rem;
  background-color: #550055;
  border: 1px solid black;
  cursor: move;
}

.draggable.dragging {
  opacity: 0.5;
}

.bottom-graph-section {
  margin: 12px 156px 0px 183px;
  border: 10px solid purple;
  display: flex;
  justify-content: center;
  height: 128px;
  width: 254px;
  color: #250225;
  font-size: 29px;
}

#edit-goal-btn {
  width: 65px;
  height: 21px;
  display: flex;
  margin: 66px 231px 0px 60px;
  border: 2px solid purple;
  border-radius: 4px;
  font-size: 12px;
  font-family: ui-serif;
  background-color: #3f193f;
  color: #ffdbff;
  justify-content: flex-end;
  flex-direction: column;
}

.edit-goal-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.goal-modal-info {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 30%;
}

.note {
  margin: 0px 0px 1px 167px;
}

.category-button {
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.category-button:hover {
  background-color: rgb(160, 160, 255);
  color: white;
}

.selected-category-button {
  box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 4px, rgba(0, 0, 0, 0.5) 0px 7px 13px -3px, rgba(0, 0, 0, 0.4) 0px -3px 0px inset;
  background-color: rgb(160, 160, 255);
  color: white;
}

.category-transaction {
  height: 50px;
  display: flex;
  width: 100%;
  color: purple;
  font-size: 20px;
  justify-content: center;
  border: 2px solid purple;
  align-items: center;
  border-radius: 10px;
  margin-top: 12px;
}
