.addccm {

    text-align: center;
    padding: 3% 0;
    position: relative;
}

@media (max-width: 960px) {
	.addccm {
	 
	  padding: 6% 0;
	  
	}
}

.addccm__title h5 {
  color: #000000;
  font-size: 2.1vw;
  
  text-transform: none;
  display: block;
  text-align: center;
}

@media (max-width: 960px) {
  .addccm__title h5 {
    font-size: 22px;
  }
}

.addccm__title h6 {
  margin-top: 2%;
  color: #000000;
  font-size: 2.1vw;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  
}

@media (max-width: 960px) {
  .addccm__title h6 {
    font-size: 22px;
  }
}

.addccm__fristchoose {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.addccm__fristchoose-item {
  width: 20%;
  background: -moz-linear-gradient(45deg, #ff2e2e 0%, #4b1543 100%);
  background: linear-gradient(45deg, #ff2e2e 0%, #4b1543 100%);
  -moz-background-size: 200% 200%;
       background-size: 200% 200%;
  background-position: right top;
  margin: 0 20px;
  border: 2px solid #ffffff81;
  overflow: hidden;
  position: relative;
  padding-bottom: 20%;
  cursor: pointer;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
  -moz-border-radius: 15px;
       border-radius: 15px;
}

@media (max-width: 960px) {
  .addccm__fristchoose-item {
    width: 40%;
    padding-bottom: 40%;
    margin: 0 5px;
  }
}

.addccm__fristchoose-item--active {
  border: 2px solid #fff;
  background-position: left bottom;
}

.addccm__fristchoose-item:hover {
  background-position: left top;
}

.addccm__fristchoose-item:hover img {
  -webkit-transform: scale(1.2);
     -moz-transform: scale(1.2);
          transform: scale(1.2);
}

.addccm__fristchoose-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}

.addccm__fristchoose-item p {
  font-size: 1.5vw;
  
  position: absolute;
  bottom: 2%;
  left: 0;
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 5px;
}

@media (max-width: 960px) {
  .addccm__fristchoose-item p {
    font-size: 20px;
  }
}

.addccm__combobox {
  background: #00000077;
  width: 100%;
  margin-top: 40px;
  -moz-border-radius: 15px;
       border-radius: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.addccm__combobox-left {
  width: 30%;
  position: relative;
}

@media (max-width: 960px) {
  .addccm__combobox-left {
    width: 100%;
  }
}

.addccm__combobox-left p {
  position: absolute;
  top: 15%;
  left: 0;
  color: #ffffff;
}

.addccm__combobox-textbox {
  color: #fff;
  font-size: 2.1vw;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1;
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: 100%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 960px) {
  .addccm__combobox-textbox {
    font-size: 20px;
  }
}

.addccm__combobox-textbox span {
  padding-bottom: 0.12vw;
}

@media (max-width: 960px) {
  .addccm__combobox-textbox span {
    padding-bottom: 3px;
  }
}

.addccm__combobox-textbox h5 {
  font-size: 4vw;
  line-height: 1;
}

@media (max-width: 960px) {
  .addccm__combobox-textbox h5 {
    font-size: 32px;
  }
}

.addccm__combobox-right {
  width: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 960px) {
  .addccm__combobox-right {
    width: 100%;
  }
}

.addccm__combobox-right select {
  padding: 10px 0;
  margin: 5px;
}

.addccm__reset {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 960px) {
  .addccm__reset {
    margin-top: 40px;
  }
}

.addccm__reset-btn {
  color: #fff;
  font-size: 1vw;
  background: #f00;
  display: inline-block;
  padding: 10px 40px;
  font-weight: bold;
  cursor: pointer;
  background: -moz-linear-gradient(45deg, #ff2e2e 0%, #4b1543 100%);
  background: linear-gradient(45deg, #ff2e2e 0%, #4b1543 100%);
  -moz-border-radius: 5px;
       border-radius: 5px;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (max-width: 960px) {
  .addccm__reset-btn {
    font-size: 20px;
  }
}

.addccm__reset-btn:hover {
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 2px 2px 10px #b30000;
  -moz-box-shadow: 2px 2px 10px #b30000;
       box-shadow: 2px 2px 10px #b30000;
}

.item-select--unselect {
  background: #979797;
  pointer-events: none;
}
/*# sourceMappingURL=addmd.css.map */