/*
Theme Name: Iversen Productions
Author: Thomas Iversen
Author URL: https://www.iversenproductions.dk
Description: Iversen Productions Theme
Text Domain: Iversen Productions
*/

:root {
    --azure-blue: #0080FF;
    --gainsboro-silver: #D9D9D9;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    background: url(../img/bg.jpg) center / cover fixed no-repeat;
    color: black;
    background-color: white;
    font-family: sans-serif;
    user-select: none;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

h1 {
    font-size: 3.2rem;
    font-weight: bold;
}

h2 {
    font-size: 2.4rem;
    font-weight: bold;
}

h3 {
    font-size: 1.872rem;
    font-weight: bold;
}

h4 {
    font-size: 1.6rem;
    font-weight: bold;
}

h5 {
    font-size: 1.328rem;
    font-weight: bold;
}

h6 {
    font-size: 1.072rem;
    font-weight: bold;
}

p {font-size: 1.6rem;}

/*********** Header ***********/

.page-header {
    display: flex;
    flex-direction: column;
    width: 100%;
    top: 0;
    padding-bottom: 100px;
}

.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

/* Navigation Start */

.logo {
    display: inline-block;
    font-size: 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    padding: 25px 10px 15px;
    top: 0;
}

.header-bottom {
    list-style-type: none;
    text-align: center;
    line-height: 60px;
    height: 60px;
    top: 0;
}

.nav-item {
    display: inline;
    padding: 0 15px 0 20px;
    font-size: 18px;
}

.nav-item a {
    text-decoration: none;
}

.nav-item + .nav-item {
    border-left: 1px solid #272727;
}

/* Navigation End */

/* Page Content Start */

.page-content {
    flex: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.page-content a:hover {
    color: var(--gainsboro-silver);
}

a {
    color: var(--gainsboro-silver);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -khtml-transition: all .3s linear;
    transition: all .3s linear;
}

a:hover {
    color: var(--azure-blue);
}

img {
    max-width: 100%;
}

.mirror {
    transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    color: #555555;
}

.adtext {
    position: absolute;
    font-size: 8px;
    color: var(--gainsboro-silver);
    top: -10;
    left: 0;
    right: 0;
}

.button {
    border-radius: 10px;
    background-color: var(--azure-blue);
    border: none;
    color: var(--gainsboro-silver);
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.button:hover, .button:focus, .button:active {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

/* Page Content End */

/* Tooltip Styles Start */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    position: relative;
    z-index: 99;
    cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
    position: absolute;
    bottom: 120%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -80px;
    padding: 7px;
    width: 160px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: black;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: white;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
    position: absolute;
    bottom: 120%;
    left: 50%;
    width: 0;
    border-top: 5px solid black;
    border-top: 5px solid hsla(0, 0%, 20%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
}

form[name="form"] input[name="lastname"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 15px;
}
::-webkit-scrollbar-track {
    background-color:rgba(0,0,0,0.9);
    border-left: 1px solid black;
}
::-webkit-scrollbar-thumb {
    background-color: var(--azure-blue);
    border-radius: 8px;
    border: 1px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover::before {
    content: "";
    background-color: rgba(var(--azure-blue), 0.1);
}

.disabled-script {
    background: #D63232;
    padding: 20px;
    text-align: center;
}

.transition {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -khtml-transition: all .3s linear;
    transition: all .3s linear;
}

.transition.fast {
    -webkit-transition: all .1s linear;
    -o-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -ms-transition: all .1s linear;
    -khtml-transition: all .1s linear;
    transition: all .1s linear;
}

.box-shadow {
    box-shadow: 0px 0px 15px black;
    -webkit-box-shadow: 0px 0px 15px black;
    -moz-box-shadow: 0px 0px 15px black;
}

#background-overlay {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    background: radial-gradient(ellipse at center,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%);
}

.background-transparent {
    background: black;
    background: rgba(0, 0, 0, 0.7);
}

.inner-wrapper-large, .inner-wrapper-small {
    position: relative;
    z-index: 1;
}

.error {
    border: 1px dashed red;
}

/* Tooltip Styles End */

/* Footer Start */

.page-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    bottom: 0;
    padding-bottom: 25px;
    padding-top: 100px;
}

.terms-and-policy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    color: var(--gainsboro-silver);
    z-index: 0;
}

.terms-and-policy__list {
    display: flex;
}

.terms-and-policy__link {
    text-decoration: none;
}

/* Footer End */