
.hint {
    /* Position the hint */
    position: absolute;
    left: 2px;
    right: auto;
    bottom: 7px;
    /* Copy styles from ng-messages */
    font-size: 12px;
    line-height: 14px;
    transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
    /* Set our own color */
    color: grey; }

.hint.ng-hide,
.hint.ng-enter,
.hint.ng-leave.ng-leave-active {
    bottom: 26px;
    opacity: 0; }
  .hint.ng-leave,
  .hint.ng-enter.ng-enter-active {
    bottom: 7px;
    opacity: 1; }

.campaignEdit {
    width: 40vw;
    max-width: 40vw;
}

body{
    /* background-image:url(../style/background.jpg);
    
       background-repeat:no-repeat;
    
       background-size:cover; */
}

.login-panel{
    width: 90vw;
}

.addMembership_content {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.addMembership_product {
    width: 80%;
    margin: auto;
}

.addMembership_product-image {
    max-width: 80%;
}

.addMembership_productList {
    width: 100%;
    margin: auto;
}

.addMembership_productList-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 5px 0 10px 0;
}

.addMembership_productList-column-1,
.addMembership_productList-column-3,
.addMembership_productList-column-4,
.addMembership_productList-column-5,
.addMembership_productList-column-6 {
    padding-left: 10px;
    padding-right: 10px;
}

.addMembership_productList-column-3 {
    width: 25%;
}

.addMembership_productList-column-4 {
    width: 35%;
}

.addMembership_productList-column-5 {
    width: 45%;
}

.addMembership__button-subscribe {
    background-color: #DD6577;
    color: #FFF;
    border-radius: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.addMembership__button-subscribe:hover {
    color: #DD6577;
    border-radius: 5px;
}

.marqa__loader-container {
    padding-top: 10px;
    padding-bottom: 10px;
    width:100%;
    display: flex;
    justify-content: center;
}

.marqa__loader {
    width: 48px;
    height: 48px;
    border: 5px solid #DD6577;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.numberInput {
    border-radius: 5px;
    width: 90%;
    padding: 5px;
}