.pet-calc {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    align-items: center;
    border: 2px solid #98BFB3;
    border-radius: 30px;
    padding: 0;
}
.pet-calc:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 54px;
    background-color: #127767;
    z-index: -1;
}
.pcc-calc-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}
.pet-calc > div {
    width: 100%;
}
.pet-calc div:not(.pcc-calc-wrap) h3 {
    color: #fff;
    background-color: #127767;
    text-align: center;
    padding: 15px 5px;
    margin-bottom: 15px;
    width: 100%;
}
.pet-calc div.pcc-product-quantity h3 {
    width: auto;
    border-radius: 30px;
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1em;
}
.pet-calc h3 {
    color: #fff;
}
.pet-calc form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    margin-top: 20px;
}
.pet-select {
    /*width: 35%;*/
    text-align: right;
}
.pet-calc form select {
    padding: 11px 15px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #c7c7c7;
    box-sizing: border-box;
    box-shadow: 0 4px 0 rgb(0 0 0 / 16%);
    margin-bottom: 15px;
    margin-right: 6px;
    margin-left: 6px;
    -webkit-appearance: none;
    line-height: 1.2;
    height: 42px;
}
.pcc-line-beaker {
    flex-basis: 100%;
    height: 0;
}
.pet-radio {
    display: flex;
    justify-content: space-between;
    width: 33.333%;
    margin-bottom: 15px;
}
.pet-radio label {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;

}
.pet-radio input {
    display: block;
	width: 0;
	height: 0;
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.pet-radio .checkbox-switch {
    position: relative;
	display: inline-block;
	box-sizing: border-box;
	width: 56px;
	height: 28px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 25%/50%;
	vertical-align: top;
	background: #eee;
	transition: .2s;
}
.pet-radio .checkbox-switch:before {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: white;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	transition: .15s;
}
.pet-radio label input:checked ~ .checkbox-label {
    color: #197667;
    font-weight: bolder;
}
.pet-radio label input:not(:disabled):active + .checkbox-switch:before {
	box-shadow: inset 0 0 2px rgba(0, 0, 0, .3);
}
.pet-radio label input:checked + .checkbox-switch {
	background: #197667;
}
.pet-radio label input:checked + .checkbox-switch:before {
	transform:translateX(28px);
}
/* Hover */
.pet-radio label input:not(:disabled) + .checkbox-switch {
	cursor: pointer;
	border-color: rgba(0, 0, 0, .3);
}
/* Disabled */
.pet-radio label input:disabled + .checkbox-switch {
	filter: grayscale(70%);
	border-color: rgba(0, 0, 0, .1);
}
.pet-radio label input:disabled + .checkbox-switch:before {
	background: #eee;
}
/* Focus */
.pet-radio label.focused .checkbox-switch:before {
	box-shadow: inset 0px 0px 4px #ff5623;
}

/* Double Radio */
.pet-double-radio.flex-end {
    justify-content: flex-end;
}
.pet-double-radio label input:checked + .checkbox-switch:before {
    transform: translateX(1px);
}
.pet-double-radio label input:not(:checked) + .checkbox-switch:before {
    transform: translateX(28px);
}
.pet-double-radio label input:not(:disabled) + .checkbox-switch {
    background: #197667;
}
.pet-double-radio label input:checked ~ .checkbox-labels span:nth-child(1) {
    color: #197667;
    font-weight: bolder;
}
.pet-double-radio label input:not(:checked) ~ .checkbox-labels span:nth-child(2) {
    color: #197667;
    font-weight: bolder;
}
.pet-double-radio .checkbox-labels span {
    font-size: 0.9em;
    transition: 0.5s ease all;
}

.pet-range {
    width: 100%;
    margin-bottom: 15px;
}
.pet-range .range-title, .pet-calc-sub-title {
    margin-bottom: 9px;
    text-align: center;
    font-weight: bolder;
}
.pet-range input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
    --range-color-1: #E6BC40;
    --range-color-2: #E8C252;
    --range-color-3: #DEC477;
    --range-color-4: #A2C1BC;
    --range-color-5: #86C5AC;
    --range-color-6: #62AF91;
}
.pet-range input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    border-radius:10px;
    box-shadow:0px 0px 5px 5px gainsboro;
    height: 7.5px;
    background: #4776e6; /* fallback for old browsers */
    background: -webkit-linear-gradient(
        to right,
        var(--range-color-1),
        var(--range-color-2),
        var(--range-color-3),
        var(--range-color-4),
        var(--range-color-5),
        var(--range-color-6)
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
        to right,
        var(--range-color-1),
        var(--range-color-2),
        var(--range-color-3),
        var(--range-color-4),
        var(--range-color-5),
        var(--range-color-6)
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.pet-range input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    border-radius:10px;
    height: 7.5px;
    background: rgba(59, 173, 227, 1);
    background: -moz-linear-gradient(
        45deg,
        var(--range-color-1) 0%,
        var(--range-color-2) 33%,
        var(--range-color-3) 50%,
        var(--range-color-4) 66%,
        var(--range-color-5) 83%,
        var(--range-color-6) 100%
    );
    background: -webkit-gradient(
        left bottom,
        right top,
        color-stop(0%, var(--range-color-1)),
        color-stop(33%, var(--range-color-2)),
        color-stop(50%, var(--range-color-3)),
        color-stop(66%, var(--range-color-4)),
        color-stop(83%, var(--range-color-5)),
        color-stop(100%, var(--range-color-6))
    );
    background: -webkit-linear-gradient(
        45deg,
        var(--range-color-1) 0%,
        var(--range-color-2) 33%,
        var(--range-color-3) 50%,
        var(--range-color-4) 66%,
        var(--range-color-5) 83%,
        var(--range-color-6) 100%
    );
    background: -o-linear-gradient(
        45deg,
        var(--range-color-1) 0%,
        var(--range-color-2) 33%,
        var(--range-color-3) 50%,
        var(--range-color-4) 66%,
        var(--range-color-5) 83%,
        var(--range-color-6) 100%
    );
    background: -ms-linear-gradient(
        45deg,
        var(--range-color-1) 0%,
        var(--range-color-2) 33%,
        var(--range-color-3) 50%,
        var(--range-color-4) 66%,
        var(--range-color-5) 83%,
        var(--range-color-6) 100%
    );
    background: linear-gradient(
        45deg,
        var(--range-color-1) 0%,
        var(--range-color-2) 33%,
        var(--range-color-3) 50%,
        var(--range-color-4) 66%,
        var(--range-color-5) 83%,
        var(--range-color-6) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3bade3 ', endColorstr='#ff357f ', GradientType=1 );
    height: 2px;
}
.pet-range input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    box-shadow: none;
    cursor: -webkit-grab;
    -webkit-transition: border 1000ms ease;
    transition: border 1000ms ease;
}
.pet-range input[type="range"]::-moz-range-thumb {
    -moz-appearance: none;
    border: none;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
    cursor: -moz-grab;
    -moz-transition: border 1000ms ease;
    transition: border 1000ms ease;
}
.pet-range-nums {
    display: flex;
    justify-content: space-between;
}
.pet-range-nums > span {
    text-align: center;
    font-size: 0.8em;
    width: 100%;
}
.pet-range-nums > span:before {
    content: "";
    display: block;
    margin: auto;
    width: 1px;
    height: 4px;
    background-color: #17AA74;
}
.pet-range-nums .pet-label {
    background: #ebf5f3;
    padding: 3px 4px;
    border-radius: 5px;
    font-size: 0.8em;
    display: inline-block;
    line-height: 1;
}
.pet-input input {
    width: calc(100% - 44px);
    max-width: 118px;
    margin-left: 10px;
    height: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.pet-input.pet-lb:after {
    content: "lbs";
}
.pet-submit {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}
.pet-submit button {
    padding-right: 5px;
}
.pet-submit button[disabled] {
    color: #b9b9b9;
    border-color: #b9b9b9!important;
    background: #f2f2f2;
    box-shadow: #b9b9b9 0 3px 0 0!important;
    cursor: not-allowed;
}
.pet-submit button[disabled]:hover {
    transform: none;
    color: #b9b9b9;
    border-color: #b9b9b9!important;
    background: #f2f2f2;
    box-shadow: #b9b9b9 0 3px 0 0!important;
}
.pet-submit button svg {
    width: 20px;
    margin-left: 5px;
    opacity: 0;
}
.pet-submit button.loading svg {
    opacity: 1;
}

.cal-output {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.cal-output .pcc-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.cal-output .pcc-container div {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #98BFB3;
    border-radius: 30px;
    padding: 5px 10px;
    margin: 5px;
}
.cal-output > div span {
    width: 100%;
    text-align: center;
}
.cal-output .sub-title {
    font-weight: bolder;
    font-size: .9em;
}
.pcc-product {
    position: relative;
    overflow: hidden;
}
.pcc-product h4 {
    text-align: center;
}
.pcc-product-img {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}
.pcc-product-img .button {
    margin-top: 15px;
}
.pcc-product-img .pcc-abs-link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.pcc-product-img img {
    max-height: 150px;
    max-width: 150px;
    height: auto;
    width: auto;
    margin: auto;
}
.pcc-product-quantity {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 15px
}
.pcc-product-quantity .pcc-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.pcc-product-quantity .pcc-container div {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #98BFB3;
    border-radius: 30px;
    padding: 5px 10px;
    margin: 5px;
}
.pcc-product-quantity .pcc-container span {
    width: 100%;
    text-align: center;
}
.pcc-product-quantity .sub-title {
    font-weight: bolder;
    font-size: .9em;
}

.pcc-yellow-button {
    color: #382b01;
    border: 1px solid #af8a1c!important;
    box-shadow: #b98c08 0 3px 0 0!important;
    background: #f9c427;
    padding: 9px 30px;
    text-decoration: none;
}
.pcc-yellow-button:hover {
    box-shadow: #b98c08 0 5px 0 0!important;
    transform: translateY(-2px);
    background: #f9c427;
    color: #382b01;
}

@media screen and (max-width: 380px) {
    .pet-double-radio .checkbox-labels span {
        font-size: 0.8em;
    }
}

@media screen and (min-width: 450px) {
    .pet-range input[type="range"] {
        margin: 10px auto;
        display: block;
        width: calc(100% - 34px);
    }
}

.pcc-w-auto {
    width: auto;
}