@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.match-percentage {
	position: absolute;
	right: 28px;
	top: 20px;
	transform: translateY(-50%);
	font-size: 0.6rem;
	font-weight: bold;
	padding: 8px;
	border-radius: 50%;
	width: 26px;
	height: 26px;
    border: 1px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000000;
    color: #ffffff;
    z-index: 2;
	/* animation: pulse 2s infinite ease-in-out; */
}

.card-content-wrapper {
    position: relative;
    width: 100%;
}

html {
	overflow-y: scroll;
}

body {
	font-size: larger;
	font-family: "Roboto Condensed", sans-serif;
	color: #212529;
	background-size: cover;
}

h1 {
	font-family: "Sen", sans-serif;
	font-size: 2.5rem;
}

.selected-movie + button {
	/* transition: transform 0.2s ease; */
}

.selected-movie + button:hover {
	transform: scale(1.2);
}

@media (max-width: 1024px) {
	.offset-md-1 {
		margin-left: 0 !important;
	}
}

.text-muted:first-of-type {
	letter-spacing: 0.05rem;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	text-underline-offset: 6px;
	text-decoration-thickness: 3px;
}

#noMoviesToast {
	position: fixed;
	top: 1%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	transition: all 0.2s ease;
}

.gradient {
	background: linear-gradient(to bottom, white, transparent);
	min-height: 25px;
}

.ui-menu-item {
	height: 5rem;
}

.ui-widget-content {
	border: 0px important!;
}

.ui-state-active {
	border: 0px important!;
}

#hideme {
	transition: display 2s;
}

.active {
	background-color: #F0F0F0 !important;
	color: rgb(0, 0, 0) !important;
	border: 1px solid black !important;
}

.card {
	background-color: transparent;
	border-color: #2125293d !important;
	/* animation: fadeIn 0.5s ease-out; */
	/* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

.card:hover {
	/* transform: translateY(-2px); */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tr {
	background-color: #f8f8f8;
}

.hovered:hover {
	background-color: #212529;
	/* transition: background-color 0.2s, color 0.15s;
	transition-timing-function: ease-out; */
}

.hovered {
	font-family: "Roboto Condensed";
}

.input-group-text {
	border-radius: 0px;
	background-color: #212529;
	/* color: white; */
}

.form-check-input:checked {
	background-color: #212529;
	border-color: #212529;
}

.form-check-input:focus {
	border-color: #212529;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
		0 0 8px rgba(33, 37, 41, 0.6);
}

.btn-primary {
	/* transition: all 0.2s ease; */
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn {
	color: #ffffff;
}

.btn:hover {
	text-decoration: none;
	color: #ffffff;
}

.card .btn {
    background-color: #f0f0f0;
        color: #000000;
        border: none;
        position: relative;
        z-index: 1;
}

.card-footer .btn {
    padding: 0 0 0 0 !important;
    margin-bottom: 0px !important;
    position: relative;
    min-width: 100%;
    height: 36px;
}

.small-text {
	font-size: 0.8rem;
}

.collapsing {
	-webkit-transition-delay: 0.15s;
	/* transition-delay: 0.15s; */
	/* transition: height 0.15s ease; */
}

.collapse {
    position: relative;
    z-index: 1;
    transform-origin: top;
    transition: all 0.2s ease-out;
	/* transition: all 0.3s ease-out; */
}

.collapse.show {
    transform-origin: top;
    transition: all 0.2s ease-out;
}

.list-group-item {
	font-size: 0.75rem;
	min-height: 5.6rem;
	border: 0.05rem solid #212529;
	background-color: transparent;
}

.list-group-item.active {
	border: 0px;
}

.card-text {
	font-size: 0.8rem;
}

.card-title {
	font-size: 0.8rem;
}

.card-footer {
	padding: 0 0 0 0 !important;
	margin-bottom: 0px !important;
}

.btn {
	font-size: 0.9rem;
}

#basic-addon2 {
	font-size: 0.9rem;
}

.form-control {
	background-color: #fff;
}

.form-control:focus {
	border-color: #212529;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
		0 0 8px rgba(33, 37, 41, 0.6);
}

@media (max-width: 768px) {
	.non-sticky-md {
		position: static !important;
	}
}
