/* Seamless Switching
================================================================ */
div.swapimg-container {
    position: relative;
    margin: 0 auto;
    background-color: #000;
    -webkit-box-shadow: 0px 0px 0px 7px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 0px 7px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 0px 7px rgba(0, 0, 0, 1);
    overflow: hidden;
    width: 550px;
    height: 311px;
}

div.swapimg-2 {
    position: absolute;
    background: url(/landing/content/mgp641/img/swap-2.png) no-repeat;
    background-size: 550px;
    width: 550px;
    height: 365px;
}

div.swapimg-1 {
    position: absolute;
    background: url(/landing/content/mgp641/img/swap-1.png) no-repeat;
    background-size: 550px;
    width: 550px;
    height: 311px;
}

div.swapimg-blk {
    position: absolute;
    background: url(/landing/content/mgp641/img/swap-blk.jpg) no-repeat;
    background-size: 550px;
    width: 550px;
    height: 311px;
}

.cut-in {
    opacity: 1;
}

.cut-out {
    opacity: 0;
}

.dissolve-in {
    animation-name: fadingin;
    -webkit-animation-name: fadingin;
    animation-duration: .8s;
    -webkit-animation-duration: .8s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
}

@-webkit-keyframes fadingin {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadingin {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.dissolve-out {
    animation-name: fadingout;
    -webkit-animation-name: fadingout;
    animation-duration: .8s;
    -webkit-animation-duration: .8s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
}
@-webkit-keyframes fadingout {

    100% {
        opacity: 0;
    }
}
@keyframes fadingout {

    100% {
        opacity: 0;
    }
}





.swapimg-container .container {
    overflow: hidden;
}

@media (max-width: 767.98px) {
  div.swapimg-container {
    background-size: 400px;
    width: 400px;
    height: 226px;
  }
  div.swapimg-shadow {
    background-size: 400px;
    width: 400px;
    height: auto;
  }

  div.swapimg-2 {
    background-size: 400px;
    width: 400px;
    height: 226px;
  }

  div.swapimg-1 {
    background-size: 400px;
    width: 400px;
    height: 226px;
  }

  div.swapimg-blk {
    background-size: 400px;
    width: 400px;
    height: 226px;
  }
}

@media (max-width: 450px) {
  div.swapimg-container {
    background-size: 320px;
    width: 320px;
    height: 181px;
  }
  div.swapimg-shadow {
    background-size: 320px;
    width: 320px;
    height: 181px;
  }

  div.swapimg-2 {
    background-size: 320px;
    width: 320px;
    height: 181px;
  }

  div.swapimg-1 {
    background-size: 320px;
    width: 320px;
    height: 181px;
  }

  div.swapimg-blk {
    background-size: 320px;
    width: 320px;
    height: 181px;
  }
}

/* End of Seamless Switching
=================================================*/