.slide {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For Internet Explorer/Edge */
}

svg {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-select: none;
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none;    /* For Firefox */
  -ms-user-select: none;     /* For Internet Explorer/Edge */
}

.clickable {
  cursor: pointer;
}

.margin-top {
  margin-top: auto;
}

.secondary-text {
  font-size: 14px;
}

.light-text {
  color: #707070;
}

.big {
  color: #000;
  font-family: "Google Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.medium {
  color: #000;
  font-family: "Google Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.small-text {
  font-size: 14px;
}

.flip-vertical {
  transform: scaleY(-1);
}

.blue-button {
  border-radius: 100px;
  background: #0B57D0;
  color: white;
  margin: auto;
  width: fit-content;
  padding: 10px 24px;
  font-size: 14px;
  cursor: pointer;
}

.horizontal {
  display: flex;
}

.vertical {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.width100 {
  width: 100%;
}

.widthfill {
  width: fill-available;
}

.spaced-evenly {
  justify-content: space-evenly;
  width: 100%;
}

.spaced-between {
  justify-content: space-between;
  width: fill-available;
}


.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.link {
  text-decoration-line: underline;
  text-decoration-style: solid;
  color: #707070;
  cursor: pointer;
}

.external::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("external-link.svg") no-repeat center center;
  background-size: contain;
  margin-left: 3px;
}

.vertical-bar {
  width: 1px;
  background-color: #AAAAAA;
  margin: 0 5px;
  cursor: pointer;
}

.disable-selection {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Supported by modern browsers */
}
