2024-02-16 08:29:40 +00:00
|
|
|
|
|
|
|
|
/**************** Fonts ******************/
|
2024-02-15 13:10:07 +00:00
|
|
|
@font-face {
|
|
|
|
|
font-family: "MontserratVar";
|
|
|
|
|
src: url( '../fonts/Montserrat-VariableFont_wght.ttf' );
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: "OpenSansVar";
|
2024-02-15 13:15:57 +00:00
|
|
|
src: url( '../fonts/OpenSans-VariableFont_wdth_wght.ttf' );
|
2024-02-15 13:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
2024-02-16 08:29:40 +00:00
|
|
|
/**************** Typography ******************/
|
|
|
|
|
a {
|
|
|
|
|
color: #a9cd2e;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: 0.3s ease-in-out;
|
|
|
|
|
}
|
2024-02-22 06:51:56 +00:00
|
|
|
.nav-link.active, a.nav-dropdown-link.active {
|
|
|
|
|
color: #a9cd2e;
|
|
|
|
|
}
|
2024-02-16 08:29:40 +00:00
|
|
|
|
2024-02-19 11:50:55 +00:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
|
font-weight:normal;
|
2024-02-20 11:44:20 +00:00
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
2024-02-22 06:51:56 +00:00
|
|
|
h1, h2, .content h1, .content h2{
|
2024-02-20 14:51:00 +00:00
|
|
|
font-weight:bold;
|
|
|
|
|
}
|
2024-02-20 11:44:20 +00:00
|
|
|
h3 {
|
|
|
|
|
font-weight:500;
|
|
|
|
|
}
|
2024-02-21 09:12:01 +00:00
|
|
|
h4, .content h4 {
|
2024-02-20 11:44:20 +00:00
|
|
|
color: #a9cd2e;
|
2024-02-19 11:50:55 +00:00
|
|
|
}
|
|
|
|
|
|
2024-02-20 11:44:20 +00:00
|
|
|
p {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
margin-bottom:10px;
|
|
|
|
|
margin-top:10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-nav .nav-item {
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: grey!important;
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 35px;
|
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
}
|
2024-02-20 14:51:00 +00:00
|
|
|
h2 {
|
|
|
|
|
font-size:22px;
|
|
|
|
|
}
|
2024-02-20 11:44:20 +00:00
|
|
|
h3 {
|
|
|
|
|
font-size:18px;
|
|
|
|
|
}
|
|
|
|
|
h4 {
|
|
|
|
|
font-size:18px;
|
|
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
.navbar-nav .nav-item {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-21 09:12:01 +00:00
|
|
|
|
2024-02-20 11:44:20 +00:00
|
|
|
footer, footer h1, footer h2, footer h3, footer h4, footer h5, footer h6, footer p, footer a {
|
2024-02-21 09:12:01 +00:00
|
|
|
color: white!important;
|
2024-02-20 11:44:20 +00:00
|
|
|
}
|
|
|
|
|
|
2024-02-21 09:12:01 +00:00
|
|
|
.content .light-text h2 , .content .light-text h1 , .content .light-text h3, .content .light-text p {
|
|
|
|
|
color:white!important;
|
|
|
|
|
}
|
2024-02-20 14:51:00 +00:00
|
|
|
.light-text, .light-text h1, .light-text h2, .light-text h3, .light-text h4, .light-text h5, .light-text h6, .light-text p, .light-text a {
|
|
|
|
|
color:white;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-21 09:12:01 +00:00
|
|
|
ol {
|
|
|
|
|
list-style: decimal;
|
|
|
|
|
counter-reset: my-awesome-counter;
|
|
|
|
|
padding-left: 30px;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-20 11:44:20 +00:00
|
|
|
img {
|
|
|
|
|
margin-bottom:16px;
|
|
|
|
|
}
|
2024-02-20 13:51:18 +00:00
|
|
|
|
|
|
|
|
hr {
|
2024-02-20 14:51:00 +00:00
|
|
|
width: 12%;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: #a9cd2e;
|
|
|
|
|
margin: 0!important;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.aligncenter hr {
|
2024-02-20 13:51:18 +00:00
|
|
|
width: 12%;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: #a9cd2e;
|
|
|
|
|
margin: 15px auto 0 auto !important;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-20 14:51:00 +00:00
|
|
|
.light-text hr {
|
|
|
|
|
width: 12%;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin: 0!important;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2024-02-20 11:44:20 +00:00
|
|
|
@media (max-width: 770px) {
|
|
|
|
|
.btn{
|
|
|
|
|
display:block
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 1750px;
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 1750px) {
|
|
|
|
|
.container {
|
|
|
|
|
padding-left:80px;
|
|
|
|
|
padding-right:80px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
|
.container {
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
padding-left:80px;
|
|
|
|
|
padding-right:80px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-16 08:29:40 +00:00
|
|
|
|
2024-02-21 09:12:01 +00:00
|
|
|
table .far {
|
|
|
|
|
color: #333!important;
|
|
|
|
|
font-size: 18px!important;
|
|
|
|
|
margin: 0!important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content thead, .content tr, .content td, .content th {
|
|
|
|
|
background-color: #fafafa;
|
|
|
|
|
border:0;
|
|
|
|
|
font-size:1em;
|
|
|
|
|
// padding-left:0;
|
|
|
|
|
}
|
|
|
|
|
.content thead strong, .content tr strong, .content td strong, .content th strong {
|
|
|
|
|
font-weight:800;
|
|
|
|
|
}
|
|
|
|
|
.content table {
|
|
|
|
|
font-size:1em;
|
|
|
|
|
}
|
2024-02-21 11:40:11 +00:00
|
|
|
|
|
|
|
|
/* Formular */
|
2024-02-22 06:51:56 +00:00
|
|
|
#formular {
|
2024-02-21 11:40:11 +00:00
|
|
|
max-width: 64rem;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 06:51:56 +00:00
|
|
|
#formular div {
|
2024-02-21 11:40:11 +00:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 06:51:56 +00:00
|
|
|
#formular label {
|
2024-02-21 11:40:11 +00:00
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #4B5563;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 06:51:56 +00:00
|
|
|
#formular select,
|
2024-02-23 09:41:24 +00:00
|
|
|
#formular input[type="text"], #formular input[type="email"], #formular input[type="url"], #formular input[type="number"], #formular input[type="tel"], #formular textarea {
|
2024-02-21 11:40:11 +00:00
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
border: 1px solid #D1D5DB;
|
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 06:51:56 +00:00
|
|
|
#formular select:focus,
|
|
|
|
|
#formular input:focus,
|
|
|
|
|
#formular textarea:focus {
|
2024-02-21 11:40:11 +00:00
|
|
|
outline: none;
|
|
|
|
|
border-color: #3B82F6;
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 19:46:57 +00:00
|
|
|
#formular button, #notification {
|
|
|
|
|
width:400px;
|
2024-02-21 11:40:11 +00:00
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
margin-bottom:10px;
|
|
|
|
|
margin-top:10px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
border-radius: 0.375rem;
|
2024-02-22 19:46:57 +00:00
|
|
|
text-align:center;
|
2024-02-21 11:40:11 +00:00
|
|
|
}
|
|
|
|
|
|
2024-02-22 19:46:57 +00:00
|
|
|
#formular .submitbutton {
|
2024-02-21 11:40:11 +00:00
|
|
|
background-color: #a9cd2e;
|
|
|
|
|
align-self: center;
|
2024-02-22 19:46:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#formular button:hover {
|
2024-02-21 11:40:11 +00:00
|
|
|
background-color: #2563EB;
|
2024-02-22 19:46:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#formular .submitbutton:hover {
|
2024-02-21 11:40:11 +00:00
|
|
|
background-color: #88a625;
|
2024-02-22 19:46:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#formular .submitbutton:disabled {
|
|
|
|
|
background-color: #ccc;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
2024-02-21 11:40:11 +00:00
|
|
|
.captcha-container {
|
|
|
|
|
box-shadow: none!important;
|
|
|
|
|
}
|
2024-02-22 19:46:57 +00:00
|
|
|
#captcha-response { display:none; }
|
|
|
|
|
.captcha-refresh {
|
|
|
|
|
background-color: white!important;
|
|
|
|
|
color:black!important;
|
|
|
|
|
}
|
|
|
|
|
.captcha-verify {
|
|
|
|
|
background-color: white!important;
|
|
|
|
|
color:black!important;
|
|
|
|
|
border: 1px solid #000!important;
|
|
|
|
|
}
|
|
|
|
|
.captcha-verify:hover, .captcha-refresh:hover {
|
|
|
|
|
background-color: #ebebeb!important;
|
|
|
|
|
color:rgb(42, 42, 42)!important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-tooltip {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input-tooltip:before {
|
|
|
|
|
content: attr(data-tooltip);
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0; // Adjust the left position here
|
|
|
|
|
transform: translateY(-50%);
|
|
|
|
|
color: #fff;
|
|
|
|
|
background: #333;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
transition: opacity 0.3s ease-in-out;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
@apply px-4;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-20 11:44:20 +00:00
|
|
|
/**** Utility *****/
|
|
|
|
|
.aligncenter * {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
}
|
2024-02-19 11:50:55 +00:00
|
|
|
|
2024-02-23 06:34:03 +00:00
|
|
|
.accordion-collapse {
|
|
|
|
|
max-height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
transition: max-height 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 06:51:56 +00:00
|
|
|
.fadeOut {
|
2024-02-22 19:46:57 +00:00
|
|
|
@apply transition-opacity duration-500 ease-in-out opacity-0;
|
2024-02-22 06:51:56 +00:00
|
|
|
}
|
|
|
|
|
.fadeIn {
|
2024-02-22 19:46:57 +00:00
|
|
|
@apply transition-opacity duration-1000 ease-in-out opacity-100;
|
2024-02-22 06:51:56 +00:00
|
|
|
}
|
2024-02-23 08:27:33 +00:00
|
|
|
|
|
|
|
|
// Honeypot- und Validierungsfelder im Bestellformular
|
2024-02-23 06:34:03 +00:00
|
|
|
#verify_email, #age, #hobbies {
|
|
|
|
|
display:none;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-22 19:46:57 +00:00
|
|
|
|
2024-02-20 11:44:20 +00:00
|
|
|
/**************** Component Styles ******************/
|
|
|
|
|
|
|
|
|
|
// Icons
|
|
|
|
|
.verua-icon {
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
}
|
2024-02-19 11:50:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-02-16 08:29:40 +00:00
|
|
|
// Verua Slider
|
2024-02-20 11:44:20 +00:00
|
|
|
|
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
|
.verua-slider-wrapper .verua-slider .slides h1 {
|
|
|
|
|
margin-top:0px;
|
|
|
|
|
}
|
|
|
|
|
.hero-slider {
|
|
|
|
|
margin-top:-200px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper {
|
2024-02-15 10:26:33 +00:00
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider {
|
2024-02-15 10:26:33 +00:00
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides {
|
2024-02-15 10:26:33 +00:00
|
|
|
position: absolute;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: 0.3s ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides.current {
|
2024-02-16 08:29:40 +00:00
|
|
|
// z-index: 1;
|
2024-02-15 10:26:33 +00:00
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides:nth-child(1) {
|
2024-02-15 10:26:33 +00:00
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.pexels.com/photos/2339009/pexels-photo-2339009.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides:nth-child(2) {
|
2024-02-15 10:26:33 +00:00
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.pexels.com/photos/2303337/pexels-photo-2303337.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides:nth-child(3) {
|
2024-02-15 10:26:33 +00:00
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.pexels.com/photos/2346091/pexels-photo-2346091.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides:nth-child(4) {
|
2024-02-15 10:26:33 +00:00
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.pexels.com/photos/1168764/pexels-photo-1168764.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides:nth-child(5) {
|
2024-02-15 10:26:33 +00:00
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('https://images.pexels.com/photos/2693529/pexels-photo-2693529.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940');
|
|
|
|
|
background-size: cover;
|
|
|
|
|
background-attachment: fixed;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides h1 {
|
|
|
|
|
font-family: "MontserratVar" !important;
|
|
|
|
|
font-weight:700;
|
|
|
|
|
color: white;
|
2024-02-15 10:26:33 +00:00
|
|
|
text-shadow: 0px 0.5px 12px rgba(0, 0, 0, 0.9);
|
|
|
|
|
transition: 0.3s linear;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides.current h1 {
|
2024-02-15 10:26:33 +00:00
|
|
|
animation: animateHeading 0.3s linear forwards 1;
|
|
|
|
|
animation-delay: 0.2s;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes animateHeading {
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides p {
|
2024-02-15 10:26:33 +00:00
|
|
|
text-shadow: 0px 0.5px 5px rgba(0, 0, 0, 0.5);
|
|
|
|
|
transition: 0.3s linear;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .verua-slider .slides.current p {
|
2024-02-15 10:26:33 +00:00
|
|
|
animation: animateparagraph 0.3s linear forwards 1;
|
|
|
|
|
animation-delay: 0.2s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes animateparagraph {
|
|
|
|
|
to {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .prev {
|
2024-02-15 10:26:33 +00:00
|
|
|
position: fixed;
|
|
|
|
|
color: #fff;
|
|
|
|
|
top: 50%;
|
|
|
|
|
left: 5%;
|
|
|
|
|
transform: translateY(-50%);
|
2024-02-16 08:29:40 +00:00
|
|
|
// z-index: 99;
|
2024-02-15 10:26:33 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
border: 2px solid #fff;
|
|
|
|
|
padding: 10px 17px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
transition: 0.2s ease-in-out;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.9);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .next {
|
2024-02-15 10:26:33 +00:00
|
|
|
position: fixed;
|
|
|
|
|
color: #fff;
|
|
|
|
|
top: 50%;
|
|
|
|
|
right: 5%;
|
|
|
|
|
transform: translateY(-50%);
|
2024-02-16 08:29:40 +00:00
|
|
|
// z-index: 99;
|
2024-02-15 10:26:33 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
border: 2px solid #fff;
|
|
|
|
|
padding: 10px 17px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
transition: 0.2s ease-in-out;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper .prev:hover,
|
|
|
|
|
.verua-slider-wrapper .next:hover {
|
2024-02-15 10:26:33 +00:00
|
|
|
background: #16a085;
|
|
|
|
|
border-color: #16a085;
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper a {
|
2024-02-15 10:26:33 +00:00
|
|
|
position: fixed;
|
|
|
|
|
color: #fff;
|
|
|
|
|
bottom: 15%;
|
|
|
|
|
left: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
2024-02-16 08:29:40 +00:00
|
|
|
// z-index: 99;
|
2024-02-15 10:26:33 +00:00
|
|
|
font-size: 1em;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
border: 1px solid #16a;
|
|
|
|
|
padding: 10px 17px;
|
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
transition: 0.2s ease-in-out;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background: #16a;
|
|
|
|
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-15 13:10:07 +00:00
|
|
|
.verua-slider-wrapper a:hover {
|
2024-02-15 10:26:33 +00:00
|
|
|
background: #017f
|
|
|
|
|
}
|