#container {
    margin-top: 20px;
    margin-left: 30px;
    position: absolute;
    background: #45453f;
    left: -48px;
    bottom: 28px;
}

.pulse {
    width: 15px;
    height: 15px;
    border: 5px solid #faa51f;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #faa51f;
    z-index: 10;
    position: absolute;
    cursor: pointer;
}

.dot {
    border: 10px solid #faa51f;
    background: transparent;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    height: 60px;
    width: 60px;
    -webkit-animation: pulse 3s ease-out;
    -moz-animation: pulse 3s ease-out;
    animation: pulse 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    position: absolute;
    top: -22px;
    left: -23px;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}


.videoTutorialWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoTutorialWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@keyframes pulse {
 0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
 }
 25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
 }
 50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
 }
 75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
 }
 100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
 }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-device-width: 667px) and (min-device-width: 375px) and (orientation: portrait) {
    .step_container {
        max-width: 355px;
        margin: 0 auto;
        margin-top: 10px !important;
    }
}