

.notely-icon {
	background: #ddd url("../images/notely-icon.svg") no-repeat center;
	background-size: 55% !important;
	border-radius: 3px;
	display: block;
	width: 20px;
	height: 20px;
	text-indent: -9999em;
	cursor: pointer;

	&.note-icon-default {
		background: #ddd url("../images/notely-icon.svg") no-repeat center;
	}
	&.note-icon-red {
		background: #d35459 url("../images/notely-icon.svg") no-repeat center;
	}
	&.note-icon-blue {
		background: #43bce9 url("../images/notely-icon.svg") no-repeat center;
	}
	&.note-icon-yellow {
		background: #ffe207 url("../images/notely-icon.svg") no-repeat center;
	}
	&.note-icon-green {
		background: #16ce69 url("../images/notely-icon.svg") no-repeat center;
	}
}

.notely-preserve {
	display: none;
	font-family: "Open Sans",sans-serif;
	
	white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
	margin: 5px 0;
	padding: 10px;
	border-radius: 2px;

	&.default {
		background: rgba(#ddd, .4);
	}
	&.red {
		background: rgba(#d35459, .1);
	}
	&.blue {
		background: rgba(#43bce9, .1);
	}
	&.yellow {
		background: rgba(#ffe207, .1);
	}
	&.green {
		background: rgba(#16ce69, .1);
	}
}

.notely-preserve-shown {
	display: block;
	margin: 0;
}

.notely-form-table {
    max-width: 55%;

    @media only screen and (max-width: 1800px) {
        max-width: 65%;
    }

    @media only screen and (max-width: 1550px) {
        max-width: 75%;
    }

    @media only screen and (max-width: 1350px) {
        max-width: 100%;
    }

    @media only screen and (max-width: 1200px) {
        max-width: 100%;
    }

    @media only screen and (max-width: 800px) {
        .promo,
        .border {
            display: none;
        }
    }

	td {
        vertical-align: top;
        padding: 20px;
        background: #fff;
        border-bottom: solid 2px #f1f1f1;
        position: relative;
    }

    input {
        margin-top: -4px !important;
    }
    
    .border {
        border-left: solid 2px #f1f1f1;
        width: 300px;
    }

	p {
        margin: 0 !important;
        line-height: 1.6em !important;
    }
    
    .promo {
        width: 100%;
        background: #fff;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        padding: 25px;
        box-sizing: border-box;
    }
    .promo p {
        margin: 20px 0 !important;
    }
    .promo .ra-logo {
        display: block;
        width: 100px;
        height: auto;
        margin: 0 auto 25px auto;
    }
    .promo .ra-description {
        font-size: 16px !important;
    }
    .promo .ra-product-list {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: center;
        margin: 0;
    }
    .promo .ra-product-list li {
        display: block;
        margin: 5px;
    }
    .promo .ra-product-list li a {
        display: inline-block;
        padding: 7px 10px;
        border: solid 1px #eee;
        background: #f1f1f1;
        display: inline-block;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        text-decoration: none;
    }
    .promo .ra-cta {
        display: block;
        padding: 15px;
        text-align: center;
        color: #fff;
        background: #ff9800;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.2);
        text-decoration: none;
        margin: 25px auto;
        font-weight: bold;
        max-width: 220px;
    }
    .promo .ra-cta:hover {
        color: #fff;
    }
}