@charset "utf-8";
/* CSS Document */

/* Body - Custom Fonts */
@font-face {
    font-family: 'DecoStyle';
    src: url('https://hatsbydaisy.co.uk/files/fonts/DecoTech.ttf');
}
@font-face {
    font-family: 'Hatton';
    src: url('https://hatsbydaisy.co.uk/files/fonts/Hatton.otf');
}

/* Body - Default Font and Layout */
body {
	font-family: "Domine", serif;
	font-size: 16px;
	font-weight: 500;
	color: #3C3C4F;

	background-color: #000;
}

/* Body - Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Body - Links */
a {
	color: #3C3C4F;
	text-decoration: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 1px;

	transition: 0.3s;
}
	a:hover {
		color: #3C3C4F;
		text-decoration: underline;
		text-decoration-style: solid;
		text-decoration-thickness: 1px;

		transition: 0.3s;
	}

/* Body - Lines */
hr {
	border-top: 1px solid #dee2e6;
}

/* Body - Lists */
ul.custom {
	list-style-type: "\2605";

	padding: 0;
	margin: 0;
}
ul.custom li {
	padding: 0;
}

ul.inline {
	list-style: none;

	padding: 0;
	margin: 0;
}
ul.inline li {
	padding: 0;
}

/* Body - Headers */
h1, h2, h3, h4, h5 {
	font-family: "DecoStyle", serif;
}
	h1 {
		font-size: 114px;
	}
	h2 {
		font-size: 102px;
	}
	h3 {
		font-size: 96px;
	}
	h4 {
		font-size: 72px;
	}
	h5 {
		font-size: 32px;
	}

/* Body - Default Buttons */
button {
	box-shadow: none !important;

	outline: none !important;
}
	*:focus {
		box-shadow: none !important;

		outline: none !important;
	}
	*:active {
		box-shadow: none !important;

		outline: none !important;
	}

/* Tables */
.table {
	font-size: 14px;
	color: #3C3C4F;

	margin: 0;
	padding: 0;
}
.table thead th {
	border-top: none;
	border-bottom: 1px solid #dee2e6;
}
.table td, .table th {
	vertical-align: middle;
}
	.table td:last-child, .table th:last-child {
		text-align: right;
	}
.table img {
	border-radius: 25px;
	width: 40px;
	height: 40px;
}

/* Body - Disable Scroll */
.scroll-disable {
	position: fixed;

    overflow-y: scroll;

    width: 100%;

    touch-action: none;
}
.scroll-overlay {
	background: rgb(0, 0, 0, 0.8);

    position: absolute;
	z-index: 10003;

    width: 100%;
    height: 100%;

	transition: 0.5s;
	transition-timing-function: ease;
}

/* Body - Default Navigation - Sticky */
.sticky-element {
    position: sticky;
    top: 0;

    z-index: 35;
}

/* Text Lines Truncate */
.truncate-small {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

	min-height: 50px;
}
.truncate-medium {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

	min-height: 120px;
}
.truncate-large {
	width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;

	min-height: 180px;
}

/* Text Shadow */
.text-shadow {
	text-shadow: 0 2px 3px #000;
}

/* Images */
.image-fit {
	object-fit: cover;
}
.image-width-small {
	width: 160px;
}
.image-width-medium {
	width: 280px;
}
.image-width-large {
	width: 480px;
}

.image-height-small {
	height: 120px;
}
.image-height-medium {
	height: 250px;
}
.image-height-large {
	height: 450px;
}

/* */
.full-img-section {
	position: absolute;
	top: 0;
}
.full-img-section__right {
    position: relative;

    float: right;

    width: 50%;
    height: 100%;
}
.full-img-section__left {
    position: relative;

    float: left;

    width: 50%;
    height: 100%;
}

/* */
.image-with-text {
	position: relative;

    width: 100%;
	height: 100%;
}
	.image-with-text.large img {
		border-radius: 4px;

		width: 100%;
		height: 600px;

		object-fit: cover;
	}
	.image-with-text.small img {
		border-radius: 4px;

		width: 100%;
		height: 400px;

		object-fit: cover;
	}
	.image-with-text.filter img {
		filter: brightness(0.7);
	}
	.image-with-text .grad {
		background-image: linear-gradient(rgba(255, 0, 0, 0), rgba(0, 0, 0, 1));
	    position: absolute;
	    bottom: 0;
		border-radius: 0 0 4px 4px;

	    z-index: 20;

	    width: 100%;
	    height: 150px;
	}
	.image-with-text .content {
		position: absolute;
		bottom: 20px;
		left: 0;
		right: 0;

		width: 100%;
		height: auto;

		color: #fff;

		margin: 0 auto;

		z-index: 30;
	}
	.image-with-text .addFavourites, .image-with-text .removeFavourites {
		position: absolute;
		top: 10px;
		right: 10px;
	}

/* Alert Popup */
.swal-title {
	font-size: 22px;
	font-weight: 700;
	color: #3C3C4F;
}
.swal-text {
	font-size: 16px;
	color: #3C3C4F;
}
.swal-modal {
	max-width: 500px;

    margin: 1.75rem auto;

	will-change: initial !important;
}

.swal-icon--success {
	border-color: #000000;
}
.swal-icon--success__line {
	background-color: #000000;
}
.swal-icon--success__ring {
	border: 4px solid #000000;
}
.swal-overlay:before {
	height: auto;
}

.swal-button-container .btn-black {
    background: #000;
    border: none;

    color: #fff;
}
    .swal-button-container .btn-black:hover {
        background: #000;

        color: #fff;
    }

.swal-content__input {
	background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;

	font-size: 16px;

    padding: 0 15px;

    width: 100%;
    height: 50px;
}
	.swal-content__input:focus {
		border: 1px solid #dee2e6;
	}

/* Dropdowns */
.search .dropdown a {
	text-decoration: none;
}
	.search .dropdown a:hover {
		color: #3C3C4F;
		text-decoration: none;
	}
.search .dropdown-menu {
	border: 0;

	padding: 0;
	margin: 10px 0 0;
}
	.search .dropdown-item {
		padding: 12px 25px 12px 15px;

		transition: 0.1s;
	}
	.search .dropdown-item:hover {
		background-color: #000;

		color: #fff !important;

		transition: 0.1s;
	}

/* Modal - Hack */
body.modal-open {
    overflow: auto !important;
}
body.modal-open[style] {
    padding-right: 0px !important;
}
.modal::-webkit-scrollbar {
    width: 0 !important;
}
.modal-header, .modal-body {
	padding: 20px;
}
