﻿.panel {
    text-align: center;
    margin-bottom: 20px;
}

.panel:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4),
        0 1px 5px rgba(130, 130, 130, 0.35);
}

.panel-primary {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.panel-heading {
    color: #fff;
    background-color: #cf5f3c;
    border-color: #cf5f3c;
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    box-sizing: border-box;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
}

.panel-body {
    padding: 0px;
    text-align: center;
}

.the-price {
    background-color: rgba(220, 220, 220, 0.17);
    box-shadow: 0 1px 0 #dcdcdc, inset 0 1px 0 #fff;
    margin: 0;
}

.the-price h1 {
    line-height: 1em;
    padding: 0;
    margin: 0;
}

.subscript {
    font-size: 25px;
}

/* CSS-only ribbon styles    */
.cnrflash {
    /*Position correctly within container*/
    position: absolute;
    top: -9px;
    right: 4px;
    z-index: 1; /*Set overflow to hidden, to mask inner square*/
    overflow: hidden; /*Set size and add subtle rounding  		to soften edges*/
    width: 100px;
    height: 100px;
    border-radius: 3px 5px 3px 0;
}

.cnrflash-inner {
    /*Set position, make larger then 			container and rotate 45 degrees*/
    position: absolute;
    bottom: 0;
    right: 0;
    width: 145px;
    height: 145px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -o-transform: rotate(45deg); /* Opera */
    -moz-transform: rotate(45deg); /* Firefox */
    -webkit-transform: rotate(45deg); /* Safari and Chrome */
    -webkit-transform-origin: 100% 100%; /*Purely decorative effects to add texture and stuff*/ /* Safari and Chrome */
    -ms-transform-origin: 100% 100%; /* IE 9 */
    -o-transform-origin: 100% 100%; /* Opera */
    -moz-transform-origin: 100% 100%; /* Firefox */
    background-image: linear-gradient(
            90deg,
            transparent 50%,
            rgba(255, 255, 255, 0.1) 50%
        ),
        linear-gradient(0deg, transparent 0%, rgba(1, 1, 1, 0.2) 50%);
    background-size: 4px, auto, auto, auto;
    background-color: #aa0101;
    box-shadow: 0 3px 3px 0 rgba(1, 1, 1, 0.5), 0 1px 0 0 rgba(1, 1, 1, 0.5),
        inset 0 -1px 8px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.2);
}

.cnrflash-inner:before,
.cnrflash-inner:after {
    /*Use the border triangle trick to make  				it look like the ribbon wraps round it's 				container*/
    content: ' ';
    display: block;
    position: absolute;
    bottom: -16px;
    width: 0;
    height: 0;
    border: 8px solid #800000;
}

.cnrflash-inner:before {
    left: 1px;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.cnrflash-inner:after {
    right: 0;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.cnrflash-label {
    /*Make the label look nice*/
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    padding-bottom: 5px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(1, 1, 1, 0.8);
    font-size: 0.95em;
    font-weight: bold;
    text-align: center;
}

div.plan-item {
    cursor: pointer;
}

div.plan-item.selected div.panel.panel-primary {
    border-color: green;
    border: 5px solid;
    border-radius: 15px;
}

div.plan-item.selected div.panel.panel-primary div.plan-form div.panel-heading {
    background-color: green;
}

body .ow-pt-column {
    padding: 5px;
}

body .ow-pt-title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: 700;
    font-size: 24px;
}

body .ow-pt-subtitle {
    font-weight: 400 !important;
    font-size: 15px;
    opacity: 0.6;
    color: #f0f0f0;
}

body .ow-pt-price {
    line-height: 1em !important;
    color: #ffffff;
    font-size: 2.5em;
    line-height: 1.25em;
    font-weight: 300;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

body .ow-pt-per {
    font-size: 0.8em;
    line-height: 1.4em !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

body .ow-pt-features {
    background: #eee !important;
    font-size: 0.925em;
    color: #5f6062;
}

body .ow-pt-feature {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: end;
    background: #eee !important;
    padding: 5px 0 !important;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    text-align: left;
    margin: 0 30px;
}

.ow-pt-feature:first-child {
    padding-top: 20px !important;
}

.ow-pt-feature:last-child {
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.ow-pt-columns-atom .ow-pt-feature:last-child {
    padding-bottom: 20px !important;
}

.ow-pt-feature p {
    padding: 0;
    margin: 0;
}

.ow-pt-title {
    background: #5e5e5e;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, #454545),
        color-stop(1, #5e5e5e)
    );
    background: -ms-linear-gradient(bottom, #454545, #5e5e5e);
    background: -moz-linear-gradient(center bottom, #454545 0%, #5e5e5e 100%);
    background: -o-linear-gradient(#5e5e5e, #454545);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5e5e5e', endColorstr='#454545', GradientType=0);
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
    border: 1px solid #2b2b2b;
    border-bottom: 0;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 5px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    font-size: 1.1em;
    font-weight: 700;
}

.ow-pt-details {
    background: #6b6b6b;
    background: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0, #616161),
        color-stop(1, #6b6b6b)
    );
    background: -ms-linear-gradient(bottom, #616161, #6b6b6b);
    background: -moz-linear-gradient(center bottom, #616161 0%, #6b6b6b 100%);
    background: -o-linear-gradient(#6b6b6b, #616161);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b6b6b', endColorstr='#616161', GradientType=0);
    position: relative;
    padding: 15px 25px;
    border-width: 1px;
    border-style: solid;
    border-color: #595959;
    border-top-color: #2b2b2b;
    border-right-width: 0;
    -webkit-box-shadow: inset 0px -15px 25px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0px -15px 25px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0px -15px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.sow-feature-icon {
    display: table-cell;
    vertical-align: bottom;
    padding-right: 10px;
}

.sow-feature-text {
    /* display: table-cell;
    vertical-align: bottom;
    margin-top: auto*/
}

.select-plan-wrapper {
    width: 1200px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding: 70px;
    box-sizing: border-box;
    background-color: white;
}
