div.starter-popup a{
	text-decoration:none
}
div.starter-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    max-width: 480px;
	font-family: 'Open Sans', serif;
}

div.starter-popup a {
    display: block;
    color: #333;
}

div.starter-popup div.imgcover {
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-position: center;
}

div.starter-popup .content-container {
    position: relative;
    margin-left: 110px;
    border-radius: 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15), 0 0 10px rgba(0, 0, 0, 0.1);
    height: 90px;
	background-color: #fff;
}

div.starter-popup .content-container .caret {
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid #FFF;
    left: -10px;
    top: 20px;
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

div.starter-popup .content-container .close {
    display: block;
    position: absolute;
    right: 10px;
    z-index: 50;
    top: 0px;
    font-size: 20px;
    cursor: pointer;
}

div.starter-popup .content-container .content {
    position: relative;
    padding: 5px 20px;
    border-radius: 5px;
    height: auto;
    background-color: #fff;
    padding-right: 120px;
	min-height: 70px;
	line-height:20px
}

div.starter-popup .content-container .content .cta {
    background-color: #454545;
    padding: 7px 15px;
    color: #fff;
    border-radius: 4px;
    bottom: 10px;
    position: absolute;
    right: 10px;
    cursor: pointer;
}

div.starter-popup .content-container .content .cta:hover {
    background-color: #353535;
}

div.starter-popup .content-container .content .title {
    height: 100%;
    overflow-y: hidden;
    font-size: 16px;
}

@media (max-width: 500px) {
    body {
        padding-bottom: 60px;
    }
    div.starter-popup {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 99999;
        background-color: #fff;
        box-shadow: 0 -3px 7px rgba(0, 0, 0, 0.35)
    }
    div.starter-popup div.imgcover {
        width: 60px;
        height: 60px;
        margin-left: 5px;
        float: left;
        border-radius: 0px;
        box-shadow: initial;
    }
    div.starter-popup .content-container {
        position: relative;
        margin-left: 75px;
        border-radius: 0px;
        box-shadow: initial;
        height: 60px;
    }
    div.starter-popup .content-container .caret {
        display: none;
    }
    div.starter-popup .content-container .close {
        background-color: #353535;
        color: #fff;
        top: -14px;
        border-radius: 50%;
        display: block;
        width: 28px;
        height: 28px;
        text-align: center;
        font-size: 25px;
        line-height: 0.85;
        font-weight: bold;
    }
    div.starter-popup .content-container .content {
        padding: 5px;
        border-radius: 0px;
        background-color: transparent;
        padding-right: 25px;
    }
    div.starter-popup .content-container .content .cta {
        display: none;
    }
    div.starter-popup .content-container .content .title {
        font-size: 14px;
    }
}