.selectbox{
    -webkit-appearance: none; /* 네이티브 외형 감추기 */
    -moz-appearance: none;
    appearance: none;
    width: 100%;/* 너비설정 */
    border: 1px solid #999; /* 테두리 설정 */
    margin-bottom: 10px;
    padding: 1em;
    background: url(../img/triangle.svg) no-repeat 98% 50%; /* 화살표 모양의 이미지 */
    background-color: none;
    color: #3d3d3d;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
}

/* IE 10, 11의 네이티브 화살표 숨기기 */
select::-ms-expand { display: none; }

.selectbox.color {
    background: url(../img/triangle-wh.svg) no-repeat 89% 50%;
    background-color: #748A9D;
    color: #fff;
    width: 25%;
    cursor: pointer;
}

#a-side{
    width: 50% !important;
}

#b-side{
    width: 50% !important;
}

/* 라디오버튼 버튼으로 만들기 */
.food-select input[type="radio"] {
    display: none;
}

.food-select input[type="radio"] + span {
    display: block;
    padding: 12px;
    border: 1px solid #999;
    color: #3d3d3d;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    margin-top: 12px;
}

.food-select input[type="radio"]:checked + span {
    background-color: #748A9D;
    color: #ffffff;
    border: 1px solid #748A9D;
}
.calc-wrap{
    margin-bottom: 50px;
}
.calc-wrap h4 {
    width: 100%;
    margin-bottom: 10px;
}
.calc-wrap p {
    width: 100%;
    margin-bottom: 10px;
}

.flex.space-around{
    justify-content: space-between;
}
label.food-select {
    width: calc(50% - 5px);
}

a.calc-btn{
    display: block;
    margin: 0 auto;
    margin-top: 50px;
    padding: 18px;
    color: #fff;
    text-align: center;
    background-color: #7BED8D;
    border: 1px solid #7BED8D;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(123, 237, 140, 0.5);
    font-size: 18px;

}

a.calc-btn:hover{
    background-color: #55CE68;
    border: 1px solid #55CE68;
    transition: 0.5s;
}

h5.calc-txt{
    position: relative;
    font-size: 18px;
    margin-top: 20px;
    width: calc(50% - 10px);
}

h5.calc-txt.width100 {
    width: 100%;
}
h5.calc-txt span {
    display: block;
    width: 100%;
}

h5.calc-txt span.mg::after{
    content: '기준량 : 100 g';
    position: absolute;
    font-size: 14px;
    font-weight: 400;
    right: 0;
    top: 2px;
}

input[type="text"] {
    width: 100%;
    padding: 1em;
    font-size: 15px;
    font-weight: 400;
    margin-top: 11px;
    border-radius: 0;
    border: 1px solid #999;
}

input[type="text"]::placeholder {
    color: #B7B7B7;
  }


  input[type="text"].half {
    width: 71%;
}
.ml::after{
    content: 'ml';
    position: absolute;
    right: 10px;
    top: 54px;
    font-weight: 400;
    font-size: 15px;
}

.ea::after{
    content: 'ea';
    position: absolute;
    right: 10px;
    top: 54px;
    font-weight: 400;
    font-size: 15px;
}

.calc_disc{
    margin-top: 300px;
    text-align: center;
}

.calc_disc h4{
    color: #A6BCD0;
}

.calc-table{
    text-align: center;
}

.info-disc{
    font-size: 16px;
}

.calc-table table{
    margin-top: 33px;
    text-align: center;
    width: 100%;
}

.calc-table table tr{
    border-bottom: 1px solid #748A9D;
}
.calc-table table tr td{
    padding: 1em;
}

.calc-tb{
    width: 100%;
}

.bold-txt{
    font-weight: 700;
}

.calc-table table tr:first-child, .calc-table table tr:nth-child(2){
    background-color: #748A9D;
    color: #fff;
    font-weight: 700;
}
.calc-table table tr:first-child{
    border-bottom: 1px solid #fff;
}

.table-disc{
    margin-top: 20px;
}

a.save-btn{
    display: inline-block;
    margin: 0 auto;
    margin-top: 50px;
    padding: 18px 104px;
    color: #7BED8D;
    text-align: center;
    background-color: #fff;
    border: 1px solid #7BED8D;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.09);
    font-size: 18px;

}

a.save-btn:hover{
    background-color: #7BED8D;
    border: 1px solid #7BED8D;
    color: #fff;
    transition: 0.5s;
}


@media (max-width : 1112px) and (orientation: portrait){
    #a-side, #b-side{
        width: 100% !important;
    }
    .calc-wrap p {
        letter-spacing: -0.5px;
    }
    h5.calc-txt{
        width: 100%;
    }
    a.save-btn{
        width: 100%;
        padding: 1em;
        margin-bottom: 100px;
    }
    a.calc-btn{
        width: 100%;
    }
    .calc_disc{
        display: none;
    }
}