﻿ 
.deployment_container {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    padding: 10px;
   z-index: 100000;
}

.deployment_container .deployment_btn {
    padding: 8px 10px;
    background-color: #f1d600;
    cursor: pointer;
    -webkit-transition: font-size 200ms;
    transition: font-size 200ms;
    text-align: center;
    display: block;
    width: 33%;
    margin-left: 10px;
    float: right;
    max-width: 120px;
  position:absolute;
  right:10px
}

.deployment_container .deployment_message {
    -webkit-transition: font-size 200ms;
    transition: font-size 200ms;
    display: block;
  font-size:14px;
  width:70%
}

@media screen and (min-width: 500px) {
    .deployment_container .deployment_btn {
        font-size:0.8em
    }

    .deployment_container .deployment_message {
        margin-top: 0.5em;
        font-size: 0.8em
    }
}

@media screen and (min-width: 768px) {
    .deployment_container {
        padding:10px 30px 10px
    }

    .deployment_container .deployment_btn {
        font-size: 1em;
        padding: 8px 15px
    }

    .deployment_container .deployment_message {
        font-size: 1em
    }
}

@media screen and (min-width: 992px) {
    .deployment_container .deployment_message {
        font-size:1em
    }
}

.deployment_banner-wrapper,.deployment_container {
    -webkit-animation: none !important;
    animation: none !important
}

.deployment_container {
    background: #231f20;
    color: #fff;
    box-sizing: border-box
}

.deployment_container ::-moz-selection {
    background: #ff5e99;
    color: #fff;
    text-shadow: none
}

.deployment_container .deployment_btn,.deployment_container .deployment_btn:visited {
    color: #000;
    background-color: #ffc20e;
    -webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
    transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
    border-radius: 5px
}

.deployment_container .deployment_btn:hover,.deployment_container .deployment_btn:active {
    background-color: #fff;
    color: #000
}

.deployment_container a,.deployment_container a:visited {
    text-decoration: none;
    color: #31a8f0;
    -webkit-transition: 200ms color;
    transition: 200ms color
}

.deployment_container a:hover,.deployment_container a:active {
    color: #b2f7ff
}

@-webkit-keyframes slideDown {
    0% {
        margin-top: -66px
    }

    100% {
        margin-top: 0
    }
}

@keyframes slideDown {
    0% {
        margin-top: -66px
    }

    100% {
        margin-top: 0px
    }
}

@-webkit-keyframes growDown {
    0% {
        height: 0
    }

    100% {
        height: 66px
    }
}

@keyframes growDown {
    0% {
        height: 0
    }

    100% {
        height: 66px
    }
}

.deployment_container {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-name: slideDown;
    animation-name: slideDown
}

.deployment_banner-wrapper {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-name: growDown;
    animation-name: growDown
}