custom_popup.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .custom--pop--wrapper{
  2. position: fixed;
  3. top:0px;
  4. left:0px;
  5. width:100%;
  6. height:100%;
  7. background: rgba(0,0,0,.3);
  8. z-index: 10;
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .custom--pop--wrapper .custom--pop--wrapper--inner{
  14. display: flex;
  15. flex-direction: column;
  16. background: #fff;
  17. position: relative;
  18. z-index: 1;
  19. padding:27px 20px 25px 20px;
  20. }
  21. .custom--pop--wrapper .custom--pop--wrapper--inner .close--btn{
  22. width:30px;
  23. height:30px;
  24. background: url(/manage/img/x.svg) no-repeat center;
  25. position: absolute;
  26. top:13px;
  27. right:13px;
  28. z-index: 9;
  29. border:0px;
  30. }
  31. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content{
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. flex-direction: column;
  36. margin-bottom:25px;
  37. }
  38. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content > h2{
  39. font-weight: 700;
  40. font-size: 18px;
  41. line-height: 100%;
  42. text-align: center;
  43. letter-spacing: -0.03em;
  44. color: #000000;
  45. margin-top:30px;
  46. }
  47. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content > p{
  48. font-weight: 400;
  49. font-size: 16px;
  50. line-height: 30px;
  51. text-align: center;
  52. letter-spacing: -0.03em;
  53. color: #666666;
  54. margin-top:10px;
  55. }
  56. .custom--pop--wrapper .custom--pop--wrapper--inner .btn--wrap{
  57. width:100%;
  58. display: flex;
  59. }
  60. .custom--pop--wrapper .custom--pop--wrapper--inner .btn--wrap button{
  61. width:100%;
  62. height: 42px;
  63. background: #0D6FFC;
  64. font-weight: 700;
  65. font-size: 15px;
  66. line-height: 100%;
  67. text-align: center;
  68. letter-spacing: -0.03em;
  69. color: #FFFFFF;
  70. border:0px;
  71. }
  72. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content.price--contents > p,
  73. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content.price--contents > h2{
  74. text-align: left!important;
  75. width:100%;
  76. justify-content:flex-start;
  77. }
  78. .custom--pop--wrapper .custom--pop--wrapper--inner .price--btn--wrap button:nth-of-type(1){background: #CBD8E0;}
  79. .custom--pop--wrapper .custom--pop--wrapper--inner .price--btn--wrap button:nth-of-type(2){
  80. margin-left:15px;
  81. }
  82. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap{
  83. width:100%;
  84. height:48px;
  85. border:1px solid #EDEDED;
  86. border-radius:3px;
  87. display:flex;
  88. align-items: center;
  89. justify-content:flex-start;
  90. overflow:hidden;
  91. margin-top:40px;
  92. }
  93. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap input{
  94. border:0px;
  95. height:48px;
  96. width:100%;
  97. text-align:right;
  98. font-family: 'Roboto';
  99. font-style: normal;
  100. font-weight: 400;
  101. font-size: 16px;
  102. line-height: 100%;
  103. color: #5D676F;
  104. }
  105. .custom--pop--wrapper .custom--pop--wrapper--inner .pop--content .price--wrap label{
  106. white-space:nowrap;
  107. padding-right:20px;
  108. padding-left:6px;
  109. font-weight: 400;
  110. font-size: 13px;
  111. line-height: 100%;
  112. text-align: right;
  113. color: #5D676F;
  114. }