/* General resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    font-family: 'Texta','Lato',Verdana,Arial,Helvetica,sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.ad-wrapper {
    position: relative;
    width: 300px;
    height: 250px;
    overflow: hidden;
    border: 1px solid #b7b7b7;
}

.content-container {
    position: absolute;
    width: 150px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 12px 15px 12px;
    background-color: #f7f7fa;
    z-index: 2;
    overflow: hidden;
    border-top-right-radius: 25px 125px;
    border-bottom-right-radius: 25px 125px;
}

.logo {
    max-width: 85px;
    height: auto;
}

.headline {
    font-size: 1.188rem;
    line-height: 1.188rem;
    font-weight: 500;
    color:#4a0dcd;
    letter-spacing: .02em;
}

.copy-body {
    font-size: 0.938rem;
    line-height: 1rem;
    letter-spacing: .03em;
    color:#555555;
}

.button-lny {
    display:inline-block;
    width:auto;
    align-self: flex-start;
    padding: 6px 14px;
    background-color: #4a0dcd;
    color: white;
    text-decoration: none;
    font-size: 0.625rem;
    font-weight:800;
    letter-spacing:.12em;
    border-radius: 40px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.video-container {
    position: absolute;
    left: 125px;
    width: calc(100% - 125px);
    height: 100%;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.click-tag-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: block;
}
