#emvModal .modal-card-head {
    align-items: flex-start;
}

.modal-card-head--inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-card-head--inner div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#emvModal .modal-card-title {
    flex-shrink: 1;
}

.emv__hex__field {
    margin-top: 10px;
}

#emvModal .modal-content,
#emvModal .modal-card {
    width: 700px;
}

.emv__field {
    position: relative;
}

.emv__field input,
.emv__field input:focus {
    padding-right: 40px;
}

.emvModal__button {
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 0 5px 5px 0;
    right: 1px;
    top: 1px;
    transition: background-color .3s, color .3s;
    font: normal 400 22px/20px 'Roboto', sans-serif;
    color: black;
    cursor: pointer;
}


.emv-icon,
.description-icon {
    position: inherit;
    width: auto;
    display: inline-block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.emv-icon:before {
    font-family: FontAwesome;
    content: "\f1de";
}


.description-icon:before {
    font-family: FontAwesome;
    content: "\f022";
}

input:focus + .emvModal__button {
    top: 2px;
    right: 2px;
    height: 33px;
}

.emvModal__button:hover,
.bit__table--cell__list .active,
.bit__table--cell:hover,
.descriptionButton:hover,
.descriptionButton.active {
    color: white;
}

.byte__header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    align-items: flex-start;
}

.byte__header--title {
    padding-top: 7px;
}

.bit__table--cell__list,
.bit__table--description__list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bit__table--description {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
}

.bit__table--cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: background-color .3s, color .3s;
    border-right: none !important;
    cursor: pointer;
}

.bit__table--cell:first-of-type {
    border-radius: 3px 0 0 3px;
}

.bit__table--cell:last-of-type {
    border-radius: 0 3px 3px 0;
}

.descriptionButton {
    height: 30px;
    width: 30px;
    border-radius: 3px;
    transition: background-color .3s, color .3s;
    font: normal 400 20px/20px 'Roboto', sans-serif;
    cursor: pointer;
    position: relative;
}

.description__list {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.byte__inner:last-of-type .description__list {
    border: none;
    margin: 0;
}

.description__item {
    cursor: pointer;
    opacity: .7;
    transition: height .3s, opacity .3s, color .3s;
    height: 0;
    overflow: hidden;
    white-space: nowrap;
}

.description__list--show .description__item {
    height: 20px;
}

.isChoose {
    opacity: 1;
    height: 20px;
    color: black;
}

.isRequired {
    color: black;
    opacity: 1;
    height: 20px;
}



