html {
  box-sizing: border-box;
  font-family: Arial;
  font-weight: 600;
  letter-spacing: 0.02em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
    margin: 0px;
    background-color: #FFFFFF;
}
div,
span {
    margin: 0px;
    padding: 0px;
}
img {
    border: none;
    vertical-align: top;
}
p {
    margin: 0;
    padding: 0;
}
a:link {
    text-decoration: none;
    z-index: 10;
}
svg {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

#wrapper {
    position: relative;
    width: 300px;
    height: 250px;
    background-color: #82bec8;
    overflow: hidden;
}

#banner {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: solid 1px #415A68;
}

#bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.anim {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.slide-container {
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    z-index: 4;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header {
    position: absolute;
    font-weight: 600;
    z-index: 3;
    left: 0;
    top: 0;
    width: 165px;
    height: 25px;
    background: #f8db00;
    color: #1f5aa5;
    font-size: 13px;
    line-height: 9px;
    padding: 8px;
}

.textbox {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    color: #FFF;
    font-size: 21px;
    line-height: 28px;
    letter-spacing: 2px;
    opacity: 0;
}

.textbox .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

#slide-3-textbox{
    font-size: 20px;
    letter-spacing: 1px;
}

#textbox-bg {
    z-index: 3;
    background: #1f5aa5;    
}

#slide-4 {
    z-index: 4;
    background: #1f5aa5;
    display: none;
}

.logo {
    position: absolute;
    left: 71px;
    top: 48px;
    width: 160px;
    height: 86px;
}

.cta {
    position: absolute;
    left: 50%;
    top: 168px;
    transform: translateX(-50%);
    width: 185px;
    height: 32px;
    background: #f8db00;
    color: #1f5aa5;
    font-size: 0;
    padding: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.cta .icon,
.cta .text {
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: top;
}

.cta .icon {
    width: 8px;
    height: 12px;
    margin: 1px 8px 0 16px
}

.cta .text {
    font-size: 16px;
    font-weight: 600; 
}

.cta .shimmer {
    position: absolute;
    left: -40px;
    top: 0;
    z-index: 1;
    width: 100px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.3) 20%,rgba(255,255,255,0.3) 55%,rgba(255,255,255,0.4) 67%,rgba(255,255,255,0.5) 76%,rgba(255,255,255,0.5) 84%,rgba(255,255,255,0) 100%);
    transform: skewX(-50deg) translateX(-100%);
}


.tshirts-container {
    position: absolute;
    z-index: 2;
    display: none;
}

#tshirts-container-1 {
    top: 45px;
    left: 50%;
    transform-origin: 50% 10%;
    transform: translate(-50%, -50%), scale(1);
    width: 0;
    height: 250px;
}

.tshirt {
    position: absolute;
    z-index: 3;
    width: 200px;
    height: 250px;
    background: #82bec8;
    /*transform: scale(0.8);*/
}

#tshirt-1 {
    right: -4px;
    text-align: right;
}
#tshirt-2 {
    left: 4px;
    text-align: left;
}

#tshirts-container-2 {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: red;
}

#tshirt-clones-container {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.tshirt-clone {
    transition: all 0.25s ease-out;
    position: absolute;
    z-index: 1;
    /*background: yellow;*/
    transform: scale(0.2);
    opacity: 0;
    background: url(tshirt2.png);
    background-size: cover;
}

.tshirt-clone.active {
    transform: scale(1);
    opacity: 1;
}