@keyframes bg-gradient-animation {
	0% {
		background-position: 0 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}

.main-shorten-form {
	width: 100%;
}

.main-shorten-block {
	height: 74px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    margin: 0 auto;
    position: relative;
}

.main-shorten-block .shorten-input {
	padding: 10px 145px 10px 20px;
}
.custom-shorten-block .shorten-input {
	padding: 10px 20px 10px 20px;
}
.main-shorten-block .shorten-input, .custom-shorten-block .shorten-input {
    border-radius: 8px;
    box-shadow: #ccc 0 5px 16px;
    appearance: none;
    border: 0;
    box-sizing: border-box;
    color: gray;
    flex: 1 1 auto;
    font-size: 16px;
    height: 100%;
    line-height: normal;
    width: 100%;
}

.main-shorten-block .shorten-input:focus, .custom-shorten-block .shorten-input:focus {
    outline: 0;
}

.main-shorten-block .shorten-btn {
	align-items: center;
    border-radius: 5px;
    display: flex;
    font-size: 16px;
    justify-content: center;
    padding: 12px 0;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 115px;
    background: #6ca12b;
    border: 0;
    color: #fff;
    cursor: pointer;
    height: auto;
    animation: bg-gradient-animation 3s ease infinite alternate;
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    background-size: 300% 300%;
}

.main-shorten-block .shorten-btn-label {
	display: inline-block;
	margin-left: 10px;
}

.gutter-l-1 {
	padding-right: 2px;
}
.gutter-r-1 {
    padding-left: 2px;
}

.pd-r-2 {
	padding-right: 2px;
}
.pd-l-2 {
    padding-left: 2px;
}

.shorten-box-shadow {
	box-shadow: #ccc 0 5px 16px;
}
.shorten-box-shadow:focus {
    outline: 0;
}

/* File Links */
.file-links-background {
	background-color: #ecfdf5;
}

.file-links-icon {
	color: #10b981;
}

/* VCard Links */
.vcard-links-background {
	background-color: #ecfeff;
}

.vcard-links-icon {
	color: #06b6d4;
}

/* Event Links */
.event-links-background {
	background-color: #eef2ff;
}

.event-links-icon {
	color: #6366f1;
}

/* Tools */
.tools-background {
	background-color: #eef2ff;
}

.tools-icon {
	color: #06b6d4;
}

/* Domains */
.domains-background {
	background-color: #faf5ff;
}

.domains-icon {
	color: #a855f7;
}

/* Projects */
.projects-background {
	background-color: #fdf4ff;
}

.projects-icon {
	color: #d946ef;
}

.max-w-800px {
	max-width: 800px;
}

.margin-0 {
	margin: 0 0 0 0;
}

.main-content ul, .main-content ol {
	padding: 0px 0px 0px 15px;
}

.custom-row {
	border-radius: 0.35rem;
	padding: 1.25rem;
	position: relative;
	border: 1px solid #f6f8f8;
	background: #bbcdd5;
}

.bg-gray-200 {
    background-color: #467589 !important;
}

/* --- Minimal Bootstrap Modal Styles (No full Bootstrap) --- */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
  display: block;
}

.modal-dialog {
  position: relative;
  margin: 1.75rem auto;
  max-width: 500px;
}

.modal-content {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dee2e6;
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
}

.modal-body {
  padding: 1rem 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
}
/* --- /Minimal Bootstrap Modal Styles (No full Bootstrap) --- */

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1.75rem .5rem .75rem;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    color: #6c7789;
    vertical-align: middle;
    background: #fff url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2331363f' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e) right .75rem center / 8px 10px no-repeat;
    border: 1px solid #e5e8eb;
    border-radius: .35rem;
    appearance: none;
}

.custom-select:focus {
    border-color: #8fdcd8;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(56, 178, 172, .25);
}