/* Generic styles */
@font-face {
  font-family: "Nunito-regular";
  src: url("fonts/nunito/Nunito-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Nunito-bold";
  src: url("fonts/nunito/Nunito-Bold.ttf") format("truetype");
}

html {
  width: 100%;
  height: 100%;
  font-family: "Nunito-regular", Arial, sans-serif;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
}

.bold {
  font-weight: bold;
}
a {
  text-decoration: none;
  color: #57585b;
}
a:focus,
a:hover {
  color: #0093d0;
}

.active-widget a,
.active,
.link {
  color: #0093d0;
}
.pointer {
  cursor: pointer;
}

.space-no-wrap {
  white-space: nowrap;
}

/* Flex classes */
.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-center {
  justify-content: center;
  align-items: center;
}
.flex-centered-v {
  align-items: center;
  align-content: center;
}
.flex-space-between {
  justify-content: space-between;
}
.flex-no-wrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Main paddings and margins */
.margin-right-30 {
  margin-right: 30px;
}
.margin-right-20 {
  margin-right: 20px;
}
.margin-right-10 {
  margin-right: 10px;
}
.margin-bottom-20 {
  margin-bottom: 20px;
}
/* Font sizes */
.font-13 {
  font-size: 13px;
}
.font-14 {
  font-size: 14px;
}
.font-18 {
  font-size: 18px;
}
.font-20 {
  font-size: 20px;
}

/* floats */
.left {
  float: left;
}
.right {
  float: right;
}

/* Colors */
.gray-light {
  color: #838384;
}
.gray {
  color: #59595b;
}
.blue-light {
  color: #0093d0;
}
