.box1 {
    position: relative;
    margin: 2em 0;
    padding: 1em 1em;
    border: solid 3px #62c1ce;
}

.box2 {
    position: relative;
    margin-top: 3.5em;
    margin-right: 0em;
    margin-bottom: 2em;
    margin-left: 0em;
    padding: 1em 1em;
    border: solid 3px #62c1ce;
}

.box1 .box-title span{
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}

.box2 .box-title span{
    position: absolute;
    display: inline-block;
    top: -50px;
    left: -3px;
    padding: 0 9px;
    height: 50px;
    line-height: 25px;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}

p {
    margin: 0; 
    padding: 0;
}

.select_label {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin: 10px 0px;
}

.select_label::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.select_label select {
    appearance: none;
    height: 40px;
    width: 120px;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}

#result {
  padding: 5px 0px;
}